Changeset 556

Show
Ignore:
Timestamp:
05/31/06 07:04:17 (3 years ago)
Author:
common
Message:

nepenthes
- Makefile cleanup
problem was, every module was linked to any lib we had, this is fixed now
log-prelude will need some further tweaks, but anything else works

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • nepenthes/trunk/configure.ac

    r536 r556  
    164164 
    165165 
     166# libadns  
     167AC_SUBST([LIB_ADNS]) 
     168 
     169# libpcre 
     170AC_SUBST([LIB_PCRE]) 
     171 
     172# libcurl 
     173AC_SUBST([LIB_CURL]) 
     174 
     175# libcapabilities 
     176AC_SUBST([LIB_CAP]) 
     177 
     178# libmagic 
     179AC_SUBST([LIB_MAGIC]) 
     180 
     181# libpq 
     182AC_SUBST([LIB_POSTGRES]) 
     183 
     184# libprelude 
     185AC_SUBST([LIB_PRELUDE]) 
     186AC_SUBST([LDFLAG_PRELUDE]) 
     187AC_SUBST([CPPFLAG_PRELUDE]) 
     188 
     189 
    166190dnl ************************************************** 
    167191dnl * debug logging                                  * 
     
    205229             [AC_DEFINE(HAVE_LIBCURL, 1, 
    206230                       [Define if you want to use libcurl]) 
    207               LIBS="-lcurl $LIBS"], 
     231             LIB_CURL="-lcurl"], 
    208232             [AC_MSG_ERROR([libcurl is missing - install it please]) 
    209233             ]) 
     
    240264             [AC_DEFINE(HAVE_LIBPCRE, 1, 
    241265                        [Define if you want to use libpcre]) 
    242               LIBS="-lpcre $LIBS"], 
     266              LIB_PCRE="-lpcre"], 
    243267             [AC_MSG_ERROR([libpcre is missing - install it please]) 
    244268             ]) 
     
    275299             [AC_DEFINE(HAVE_LIBMAGIC, 1, 
    276300                       [Define if you want to use libmagic]) 
    277               LIBS="-lmagic $LIBS"], 
     301              LIB_MAGIC="-lmagic"], 
    278302             [AC_MSG_ERROR([libmagic is missing - install it please]) 
    279303             ]) 
     
    340364  else 
    341365    AC_DEFINE(HAVE_LIBSSH,1,[Define wether we have libssh]) 
    342     LIBS="-lssh $LIBS
     366    LIB_SSH="-lssh
    343367  fi 
    344368   
     
    406430  else 
    407431    AC_DEFINE(HAVE_MYSQL, 1 , [Define if we have mysql client library]) 
    408     LIBS="-lmysqlclient $LIBS
     432    LIB_MYSQL="-lmysqlclient
    409433  fi 
    410434 
     
    475499  else 
    476500    AC_DEFINE(HAVE_POSTGRES, 1 , [Define if we have postgre client library]) 
    477     LIBS="-lpq $LIBS
     501    LIB_POSTGRES="-lpq
    478502  fi 
    479503 
     
    546570           [AC_DEFINE(HAVE_LIBADNS, 1, 
    547571                      [Define if you want to use adns]) 
    548             LIBS="-ladns $LIBS"], 
     572            LIB_ADNS="-ladns"], 
    549573     enable_dnsresolve_adns=no 
    550574   ) 
     
    611635        PRELUDE_CPPFLAGS=`$LIBPRELUDE_CONFIG --cflags` 
    612636         
    613         LIBS="$PRELUDE_LIBS $LIBS" 
    614         LDFLAGS="$PRELUDE_LDFLAGS $LDFLAGS" 
    615         CPPFLAGS="$PRELUDE_CPPFLAGS $CPPFLAGS" 
     637        LIB_PRELUDE="$PRELUDE_LIBS" 
     638        LDFLAG_PRELUDE="$PRELUDE_LDFLAGS" 
     639        CPPFLAG="$PRELUDE_CPPFLAGS" 
    616640         
    617641    fi 
     
    628652AC_ARG_ENABLE(capabilities, [  --enable-capabilities    Enable capabilities [default=auto]],  
    629653                   [enable_capabilities="$enableval"],  
    630                    [enable_capabilities="no"]) 
     654                   [enable_capabilities="yes"]) 
    631655 
    632656if test x$enable_capabilities = xno ; then 
     
    658682        [ 
    659683              AC_DEFINE(HAVE_LIBCAP, 1,[Define if libcap is available to restrict process capabilities]) 
    660                LIBS="$LIBS -lcap" 
     684               LIB_CAP="-lcap" 
    661685               enable_capabilities="yes" 
    662686        ],  
  • nepenthes/trunk/modules/dnsresolve-adns/Makefile.am

    r332 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -ladns 
     9AM_LDFLAGS = $(LIB_ADNS) 
    1010 
    1111pkglib_LTLIBRARIES = dnsresolveadns.la 
  • nepenthes/trunk/modules/download-creceive/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadcreceive.la 
  • nepenthes/trunk/modules/download-csend/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -module -no-undefined -avoid-version -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadcsend.la 
  • nepenthes/trunk/modules/download-curl/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lcurl 
     9AM_LDFLAGS = $(LIB_CURL) 
    1010 
    1111pkglib_LTLIBRARIES = downloadcurl.la 
  • nepenthes/trunk/modules/download-ftp/Makefile.am

    r343 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadftp.la 
  • nepenthes/trunk/modules/download-http/Makefile.am

    r332 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS =  
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadhttp.la 
  • nepenthes/trunk/modules/download-link/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadlink.la 
  • nepenthes/trunk/modules/download-rcp/Makefile.am

    r341 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -module -no-undefined -avoid-version 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadrcp.la 
  • nepenthes/trunk/modules/download-tftp/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -module -no-undefined -avoid-version -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadtftp.la 
  • nepenthes/trunk/modules/log-download/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = logdownload.la 
  • nepenthes/trunk/modules/log-irc/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = logirc.la 
  • nepenthes/trunk/modules/log-surfnet/Makefile.am

    r332 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -I/usr/include/postgresql -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 #AM_LDFLAGS = -lpq 
     9AM_LDFLAGS = $(LIB_POSTGRES) 
    1010 
    1111pkglib_LTLIBRARIES = logsurfnet.la 
  • nepenthes/trunk/modules/module-bridge/Makefile.am

    r343 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = modulebridge.la 
  • nepenthes/trunk/modules/module-portwatch/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = moduleportwatch.la 
  • nepenthes/trunk/modules/shellcode-generic/Makefile.am

    r372 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9AM_LDFLAGS = $(LIB_PCRE) 
    1010 
    1111pkglib_LTLIBRARIES = shellcodegeneric.la 
  • nepenthes/trunk/modules/shellcode-signatures/Makefile.am

    r529 r556  
    88AM_CXXFLAGS = -Wall -Werror 
    99AM_CFLAGS = -Wall 
    10 AM_LDFLAGS = -lpcre 
     10AM_LDFLAGS = $(LIB_PCRE) 
    1111 
    1212pkglib_LTLIBRARIES = shellcodesignatures.la 
  • nepenthes/trunk/modules/shellemu-winnt/Makefile.am

    r341 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = shellemuwinnt.la 
  • nepenthes/trunk/modules/submit-file/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = submitfile.la 
  • nepenthes/trunk/modules/submit-gotek/Makefile.am

    r370 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = submitgotek.la 
  • nepenthes/trunk/modules/submit-norman/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9AM_LDFLAGS = $(LIB_CURL) 
    1010 
    1111pkglib_LTLIBRARIES = submitnorman.la 
  • nepenthes/trunk/modules/vuln-asn1/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnasn1.la 
  • nepenthes/trunk/modules/vuln-dameware/Makefile.am

    r330 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulndameware.la 
  • nepenthes/trunk/modules/vuln-dcom/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulndcom.la 
  • nepenthes/trunk/modules/vuln-ftpd/Makefile.am

    r345 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnftpd.la 
  • nepenthes/trunk/modules/vuln-iis/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulniis.la 
  • nepenthes/trunk/modules/vuln-kuang2/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnkuang2.la 
  • nepenthes/trunk/modules/vuln-lsass/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnlsass.la 
  • nepenthes/trunk/modules/vuln-msdtc/Makefile.am

    r339 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnmsdtc.la 
  • nepenthes/trunk/modules/vuln-msmq/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnmsmq.la 
  • nepenthes/trunk/modules/vuln-mssql/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
    109 
    1110pkglib_LTLIBRARIES = vulnmssql.la 
  • nepenthes/trunk/modules/vuln-mydoom/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnmydoom.la 
  • nepenthes/trunk/modules/vuln-mydoom/MydoomDialogue.cpp

    r538 r556  
    131131                { 
    132132                        m_Download->getDownloadBuffer()->addData((char *)msg->getMsg(),msg->getSize()); 
    133                         return CL_ASSIGN_AND_DONE
     133                        return CL_ASSIGN
    134134                } 
    135135                break; 
  • nepenthes/trunk/modules/vuln-netbiosname/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnnetbiosname.la 
  • nepenthes/trunk/modules/vuln-netdde/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnnetdde.la 
  • nepenthes/trunk/modules/vuln-optix/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9AM_LDFLAGS = $(LIB_PCRE) 
    1010 
    1111pkglib_LTLIBRARIES = vulnoptix.la 
  • nepenthes/trunk/modules/vuln-pnp/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnpnp.la 
  • nepenthes/trunk/modules/vuln-sasserftpd/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnsasserftpd.la 
  • nepenthes/trunk/modules/vuln-ssh/Makefile.am

    r332 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 #AM_LDFLAGS = -lssh -L/usr/lib/ 
     9AM_LDFLAGS = $(LIB_SSH) 
    1010 
    1111pkglib_LTLIBRARIES = vulnssh.la 
  • nepenthes/trunk/modules/vuln-sub7/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnsub7.la 
  • nepenthes/trunk/modules/vuln-upnp/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnupnp.la 
  • nepenthes/trunk/modules/vuln-veritas/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnveritas.la 
  • nepenthes/trunk/modules/vuln-wins/Makefile.am

    r439 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnwins.la 
  • nepenthes/trunk/modules/x-1/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = x1.la 
  • nepenthes/trunk/modules/x-2/Makefile.am

    r330 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = x2.la 
  • nepenthes/trunk/modules/x-3/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = x3.la 
  • nepenthes/trunk/modules/x-4/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = x4.la 
  • nepenthes/trunk/modules/x-5/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = x5.la 
  • nepenthes/trunk/modules/x-6/Makefile.am

    r321 r556  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = x6.la 
  • nepenthes/trunk/nepenthes-core/src/Makefile.am

    r535 r556  
    66 
    77AM_CPPFLAGS = -I../include -I ../.. -Wall -Werror 
     8AM_LDFLAGS = $(LIB_MAGIC) -ldl 
    89 
    910bin_PROGRAMS = nepenthes