Changeset 299
- Timestamp:
- Nov 6, 2010, 8:19:54 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r295 r299 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 2.8. 0)14 AM_INIT_AUTOMAKE(samhain, 2.8.1) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST -
trunk/docs/Changelog
r295 r299 1 2.8.1: 2 * fix compile error on AIX 5.3 with --enable-login-watch, 3 reported by M. El Nahass (time.h missing in src/sh_login_track.c) 4 1 5 2.8.0: 2 6 * Support IPv6 -
trunk/src/sh_login_track.c
r295 r299 55 55 #define SH_UTMP_S utmp 56 56 57 #endif 58 59 60 #if TIME_WITH_SYS_TIME 61 #include <sys/time.h> 62 #include <time.h> 63 #else 64 #if HAVE_SYS_TIME_H 65 #include <sys/time.h> 66 #else 67 #include <time.h> 68 #endif 57 69 #endif 58 70
Note:
See TracChangeset
for help on using the changeset viewer.