Changeset 653
- Timestamp:
- 09/27/06 13:56:21 (2 years ago)
- Files:
-
- nepenthes/trunk/configure.ac (modified) (3 diffs)
- nepenthes/trunk/modules/shellcode-signatures/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nepenthes/trunk/configure.ac
r648 r653 196 196 AC_SUBST([LIB_LIBNET]) 197 197 198 # liby 199 AC_SUBST([LIB_LIBY]) 198 200 199 201 dnl ************************************************** … … 799 801 800 802 fi 801 803 804 dnl ************************************************** 805 dnl * liby existence * 806 dnl ************************************************** 807 808 AC_CHECK_LIB(y, yyerror, 809 [ 810 LIB_LIBY="-ly" 811 enable_liby="yes" 812 ], 813 [ 814 enable_liby="no" 815 ]) 816 817 802 818 803 819 … … 896 912 echo "- Debug Logging : $enable_debug_logging" 897 913 echo "" 914 echo "- link on liby : $enable_liby" 915 echo "" 898 916 echo "- DNS Resolve " 899 917 echo " - Support adns : $enable_dnsresolve_adns" nepenthes/trunk/modules/shellcode-signatures/Makefile.am
r592 r653 8 8 AM_CXXFLAGS = -Wall -Werror 9 9 AM_CFLAGS = -Wall 10 AM_LDFLAGS = $(LIB_PCRE) @LEXLIB@ -ly10 AM_LDFLAGS = $(LIB_PCRE) @LEXLIB@ $(LIB_LIBY) 11 11 12 12 YACC += -d
