Changeset 168
- Timestamp:
- Mar 15, 2008, 10:02:21 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r167 r168 1698 1698 sh_portcheck.o: $(srcsrc)/sh_portcheck.c Makefile config_xor.h $(srcinc)/samhain.h $(srcinc)/sh_error.h $(srcinc)/sh_mem.h $(srcinc)/sh_calls.h $(srcinc)/sh_utils.h $(srcinc)/sh_modules.h $(srcinc)/sh_static.h $(srcinc)/sh_pthread.h $(srcinc)/CuTest.h 1699 1699 sh_pthread.o: $(srcsrc)/sh_pthread.c Makefile config_xor.h $(srcinc)/sh_pthread.h $(srcinc)/sh_calls.h $(srcinc)/sh_modules.h 1700 sh_string.o: $(srcsrc)/sh_string.c Makefile $(srcinc)/sh_string.h $(srcinc)/sh_mem.h 1700 sh_string.o: $(srcsrc)/sh_string.c Makefile $(srcinc)/sh_string.h $(srcinc)/sh_mem.h $(srcinc)/CuTest.h -
trunk/aclocal.m4
r156 r168 1860 1860 ])dnl ACX_PTHREAD 1861 1861 1862 1863 1864 1865 dnl Copyright © 2004 Loic Dachary <loic@senga.org> 1866 dnl 1867 dnl This program is free software; you can redistribute it and/or modify 1868 dnl it under the terms of the GNU General Public License as published by 1869 dnl the Free Software Foundation; either version 2 of the License, or (at 1870 dnl your option) any later version. 1871 dnl 1872 dnl Use ZLIB_HOME instead of option 1873 1874 AC_DEFUN([CHECK_ZLIB],[ 1875 1876 if test "x${ZLIB_HOME}" = "x"; then 1877 ZLIB_HOME=/usr/local 1878 if test ! -f "${ZLIB_HOME}/include/zlib.h" 1879 then 1880 ZLIB_HOME=/usr 1881 fi 1882 fi 1883 1884 zlib_found=no 1885 1886 ZLIB_OLD_LDFLAGS=$LDFLAGS 1887 ZLIB_OLD_CPPFLAGS=$LDFLAGS 1888 if test "x${ZLIB_HOME}" = "x/usr"; then 1889 : 1890 else 1891 LDFLAGS="$LDFLAGS -L${ZLIB_HOME}/lib" 1892 CPPFLAGS="$CPPFLAGS -I${ZLIB_HOME}/include" 1893 fi 1894 AC_LANG_SAVE 1895 AC_LANG_C 1896 AC_CHECK_LIB(z, inflateEnd, [zlib_cv_libz=yes], [zlib_cv_libz=no]) 1897 AC_CHECK_HEADER(zlib.h, [zlib_cv_zlib_h=yes], [zlib_cv_zlib_h=no]) 1898 AC_LANG_RESTORE 1899 if test "$zlib_cv_libz" = "yes" -a "$zlib_cv_zlib_h" = "yes" 1900 then 1901 # 1902 # If both library and header were found, use them 1903 # 1904 AC_CHECK_LIB(z, inflateEnd) 1905 AC_MSG_CHECKING([zlib in ${ZLIB_HOME}]) 1906 AC_MSG_RESULT(ok) 1907 zlib_found=yes 1908 else 1909 # 1910 # If either header or library was not found, revert and bomb 1911 # 1912 AC_MSG_CHECKING(zlib in ${ZLIB_HOME}) 1913 LDFLAGS="$ZLIB_OLD_LDFLAGS" 1914 CPPFLAGS="$ZLIB_OLD_CPPFLAGS" 1915 AC_MSG_RESULT(failed) 1916 AC_MSG_ERROR([zlib not found in ZLIB_HOME, /usr/local, or /usr]) 1917 fi 1918 1919 ]) 1920 1921 1862 1922 dnl *-*wedit:notab*-* Please keep this as the last line. 1863 1923 -
trunk/configure.ac
r162 r168 875 875 if test x"${mytclient}" = x-DSH_STANDALONE -o x"${mytclient}" = x-DSH_WITH_CLIENT; 876 876 then 877 dnl For threaded modules 877 878 ACX_PTHREAD 878 879 CFLAGS="$CFLAGS $PTHREAD_CFLAGS" … … 880 881 LDFLAGS="$PTHREAD_CFLAGS $LDFLAGS" 881 882 CC="$PTHREAD_CC" 883 dnl For MODI_TXT 884 CHECK_ZLIB() 882 885 fi 883 886 … … 969 972 fi 970 973 if test "x${withval}" = "xmysql"; then 974 if test "x$zlib_found" = "x" 975 then 976 CHECK_ZLIB() 977 fi 971 978 AC_CHECK_PROG(HAVE_MYSQL_CONFIG, mysql_config, yes, no) 972 979 if test "$HAVE_MYSQL_CONFIG" = "yes"; then 973 # echo "mysql_config found"974 980 sh_mysql_libs="`mysql_config --libs`" 975 # echo ${sh_mysql_libs}976 981 sh_mysql_libs="`eval echo ${sh_mysql_libs}`" 977 # echo $mysql_libs978 # save_libs="$LIBS"979 # LIBS="$LIBS `mysql_config --libs`"980 # echo $LIBS981 982 LIBS="$LIBS ${sh_mysql_libs}" 982 # echo $LIBS983 983 sh_mysql_cflags="`mysql_config --cflags`" 984 984 sh_mysql_cflags="`eval echo ${sh_mysql_cflags}`" 985 # CFLAGS="$CFLAGS `mysql_config --cflags`"986 # CFLAGS="$CFLAGS ${sh_mysql_cflags}"987 985 CPPFLAGS="$CPPFLAGS ${sh_mysql_cflags}" 988 986 else 989 AC_MSG_CHECKING( for MySQL in /usr /usr/local /usr/local/mysql MYSQL_HOME)987 AC_MSG_CHECKING([for MySQL in /usr /usr/local /usr/local/mysql MYSQL_HOME]) 990 988 mysql_directory="/usr /usr/local /usr/local/mysql ${MYSQL_HOME}" 991 989 … … 1053 1051 AC_DEFINE(WITH_MYSQL) 1054 1052 AC_DEFINE(WITH_DATABASE) 1055 AC_CHECK_LIB(z, inflateEnd, [zlib_cv_libz=yes], [zlib_cv_libz=no]) 1056 AC_MSG_CHECKING(for zlib) 1057 if test "$zlib_cv_libz" = "yes" 1053 if test "x$zlib_found" = "xyes" 1058 1054 then 1059 1055 LIBS="$LIBS -lz -lm" 1060 AC_MSG_RESULT(ok)1061 1056 else 1062 AC_MSG_RESULT(failed)1063 1057 echo 1064 echo " Either the mysql or the zlib library was not found" 1065 echo " or was unusable. Possible reasons include:" 1058 1059 echo " Mysql library was not found or not useable." 1060 echo " Possible reasons include:" 1066 1061 echo " - an old, incompatible version compiled from source" 1067 1062 echo " - on Solaris, libmysql is compiled with the Solaris" … … 1072 1067 echo " message from the compiler." 1073 1068 echo 1074 echo " If your mysql and zliblibraries are installed in an"1069 echo " If your mysql libraries are installed in an" 1075 1070 echo " unusual place, use --with-libs=-L/path/to/libdirectory" 1076 echo " where libdirectory is the directory holding libmysql" 1077 echo " or libz." 1071 echo " where libdirectory is the directory holding libmysql." 1078 1072 if test x"$enable_static" = xyes; then 1079 1073 echo " Note that for compiling a static binary, you need" … … 1081 1075 fi 1082 1076 echo 1083 AC_MSG_ERROR([libmysql or zlibnot found or unuseable])1077 AC_MSG_ERROR([libmysql not found or unuseable]) 1084 1078 fi 1085 1079 AC_CHECK_HEADERS(mysql/mysql.h) -
trunk/depend.dep
r167 r168 63 63 sh_pthread.o: $(srcsrc)/sh_pthread.c Makefile config_xor.h $(srcinc)/sh_pthread.h $(srcinc)/sh_calls.h $(srcinc)/sh_modules.h 64 64 kern_head.o: $(srcsrc)/kern_head.c Makefile config.h $(srcinc)/kern_head.h $(srcinc)/kern_head.h 65 sh_string.o: $(srcsrc)/sh_string.c Makefile $(srcinc)/sh_string.h $(srcinc)/sh_mem.h 65 sh_string.o: $(srcsrc)/sh_string.c Makefile $(srcinc)/sh_string.h $(srcinc)/sh_mem.h $(srcinc)/CuTest.h -
trunk/depend.sum
r167 r168 1 3237390887 1 2783424603
Note:
See TracChangeset
for help on using the changeset viewer.