webmcp

view Makefile.options @ 66:afed1ab1477f

Bugfix regarding compatibility with Lua 5.2:
#if instead of #ifdef in webmcp_accelerator.c
author jbe
date Tue Apr 17 15:38:05 2012 +0200 (2012-04-17)
parents 5ce77ccdd550
children f59adf9a6968
line source
1 # C compiler command
2 CC = cc
4 # linker command
5 LD = ld
7 # filename extension for shared libraries
8 SLIB_EXT = so
10 # C compiler flags
11 # TODO: check alternatives to -D_GNU_SOURCE -fPIC
12 # using libtool?
13 CFLAGS = -O2 -D_GNU_SOURCE -fPIC -Wall -I /usr/include -I /usr/local/include -I /home/flocke/opt/lua52/include
15 # additional C compiler flags for parts which depend on PostgreSQL
16 CFLAGS_PGSQL = -I /usr/include/postgresql -I /usr/include/postgresql/server -I /usr/local/include/postgresql -I /usr/local/include/postgresql/server
18 # linker flags
19 LDFLAGS = -shared -L /usr/lib -L /usr/local/lib -L /home/flocke/opt/lua52/lib
21 # additional linker flags for parts which depend on PostgreSQL
22 LDFLAGS_PGSQL =

Impressum / About Us