Changeset 202
- Timestamp:
- Dec 3, 2008, 9:52:23 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/aclocal.m4
r201 r202 1202 1202 ]) 1203 1203 1204 AC_DEFUN([GCC_WEMPTY_BODY],[ 1205 AC_LANG_ASSERT(C) 1206 if test "X$CC" != "X"; then 1207 AC_CACHE_CHECK([whether ${CC} accepts -Wno-empty-body], 1208 empty_body, 1209 [empty_body_cflags="$CFLAGS" 1210 CFLAGS="$CFLAGS -Wno-empty-body" 1211 AC_TRY_COMPILE(,, empty_body=yes, empty_body=no) 1212 CFLAGS="$empty_body_cflags" 1213 ]) 1214 if test $empty_body = yes; then 1215 CFLAGS="$CFLAGS -Wno-empty-body" 1216 fi 1217 fi 1218 ]) 1219 1204 1220 AC_DEFUN([SAMHAIN_POSIX],[ 1205 1221 AC_MSG_CHECKING([whether _POSIX_SOURCE is necessary]) -
trunk/configure.ac
r196 r202 194 194 AC_SUBST(selectconfig) 195 195 AC_DEFINE_UNQUOTED(UID_CAST, ${uid_cast}) 196 197 dnl Test whether gcc supports -Wno-empty-body 198 dnl Suppresses warnings from glibc pthread_cleanup_pop 199 dnl 200 GCC_WEMPTY_BODY 196 201 197 202 -
trunk/docs/Changelog
r200 r202 1 1 2.5.1: 2 * use -Wno-empty-body if supported to suppress warnings about 3 glibc pthread_cleanup_pop implementation 4 * fix text relocations for i386 in src/sh_tiger1.s 2 5 * implement server->client SCAN command to initiate file check 3 6 * implement @if / @else conditionals with more tests in config file -
trunk/test/testext.sh
r164 r202 93 93 echo "SetType=log" >> testrc_1ext 94 94 echo "SetChecksum=$CHKSUM" >> testrc_1ext 95 echo "SetEnviron=TZ=Europe/Berlin" >> testrc_1ext 95 96 echo "SetFilterOr=ALERT" >> testrc_1ext 96 97 echo "CloseCommand" >> testrc_1ext
Note:
See TracChangeset
for help on using the changeset viewer.