Changeset 499
- Timestamp:
- Dec 20, 2015, 10:12:16 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/aclocal.m4
r481 r499 409 409 x_libraries=NONE 410 410 DESTDIR= 411 SH_ENABLE_OPTS=" asm ssp db-reload xml-log message-queue login-watch process-check port-check mounts-check logfile-monitor userfiles debug ptrace static network udp nocl stealth micro-stealth install-name identity khide suidcheck base largefile mail external-scripts encrypt srp dnmalloc ipv6 shellexpand suid"411 SH_ENABLE_OPTS="selinux posix-acl asm ssp db-reload xml-log message-queue login-watch process-check port-check mounts-check logfile-monitor userfiles debug ptrace static network udp nocl stealth micro-stealth install-name identity khide suidcheck base largefile mail external-scripts encrypt srp dnmalloc ipv6 shellexpand suid" 412 412 SH_WITH_OPTS="prelude libprelude-prefix database libwrap cflags libs console altconsole timeserver alttimeserver rnd egd-socket port logserver altlogserver kcheck gpg keyid checksum fp recipient sender trusted tmp-dir config-file log-file pid-file state-dir data-file html-file" 413 413 … … 1425 1425 [sh_facl=yes],[sh_facl=no]) 1426 1426 LIBS="$OLDLIBS" 1427 1428 if test x"$sh_facl" = xyes; then 1429 AC_DEFINE(USE_ACL, 1, [Define if you want ACL support.]) 1427 fi 1428 1429 if test x"$sh_facl" = xyes; then 1430 AC_DEFINE(USE_ACL, 1, [Define if you want ACL support.]) 1430 1431 LIBS="$LIBS $LIBACL" 1431 fi 1432 else 1433 if test "x$enable_posix_acl" != xcheck; then 1434 AC_MSG_FAILURE([--enable-posix-acl was given, but test for acl support failed]) 1435 fi 1432 1436 fi 1433 1437 ]) … … 1450 1454 [sh_fattr=yes],[sh_fattr=no]) 1451 1455 LIBS="$OLDLIBS" 1452 1453 if test x"$sh_fattr" = xyes; then 1456 fi 1457 1458 if test x"$sh_fattr" = xyes; then 1454 1459 AC_DEFINE(USE_XATTR, 1, [Define if you want extended attributes support.]) 1455 1460 LIBS="$LIBS $LIBATTR" 1456 fi 1461 else 1462 if test "x$enable_selinux" != xcheck; then 1463 AC_MSG_FAILURE([--enable-selinux was given, but test for selinux support failed]) 1464 fi 1457 1465 fi 1458 1466 ]) -
trunk/configure.ac
r491 r499 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 4.1. 1)14 AM_INIT_AUTOMAKE(samhain, 4.1.2) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST … … 519 519 dnl ***************************************** 520 520 521 sh_CHECK_XATTR 522 sh_CHECK_POSIX_ACL 521 AC_ARG_ENABLE([selinux], 522 [AS_HELP_STRING([--enable-selinux], [support checking selinux attributes])], 523 [], 524 [enable_selinux=check]) 525 if test "x$enable_selinux" != xno; then 526 sh_CHECK_XATTR 527 fi 528 529 AC_ARG_ENABLE([posix-acl], 530 [AS_HELP_STRING([--enable-posix-acl], [support checking posix acls])], 531 [], 532 [enable_posix_acl=check]) 533 if test "x$enable_posix_acl" != xno; then 534 sh_CHECK_POSIX_ACL 535 fi 523 536 524 537 dnl ***************************************** -
trunk/docs/Changelog
r495 r499 1 4.2.0: 2 * add options --enable-selinux and --enable-posix-acl for "hard fail" 3 if libraries aren't found (requested feature) 4 * fix wrong policy assignment when inotify is active and change occurs 5 during a reload (reported by Bond) 6 * fix failure to detect open UDP port for some daemons (reported by James) 1 7 * fix broken 'rpm' and 'rpm-light' makefile targets 2 8 (reported by Bond) 9 * fix message for self-check 3 10 4 11 4.1.1:
Note:
See TracChangeset
for help on using the changeset viewer.