webmcp
view Makefile.options @ 59:4f9f7fef80ee
Bugfix in net.send_mail(...) regarding "envelope_from"
| author | jbe | 
|---|---|
| date | Mon Mar 05 18:48:23 2012 +0100 (2012-03-05) | 
| parents | 5ce77ccdd550 | 
| children | afed1ab1477f | 
 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 /usr/local/include/lua51 -I /usr/include/lua5.1
    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 /usr/local/lib/lua51 -L /usr/lib/lua5.1
    21 # additional linker flags for parts which depend on PostgreSQL
    22 LDFLAGS_PGSQL =
