From: Paul Eggert Date: Sun, 16 Jun 2013 05:33:12 +0000 (-0700) Subject: * configure.ac: Report ACL usage at the end. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2016^2~89 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a540847b6b3ae41e08214edd3ce2e3841f65262;p=emacs.git * configure.ac: Report ACL usage at the end. Fixes: debbugs:14612 --- diff --git a/ChangeLog b/ChangeLog index bad19f32a91..5fac3ef3d83 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-06-16 Paul Eggert + + * configure.ac: Report ACL usage at the end (Bug#14612). + 2013-06-11 Paul Eggert --without-all should imply --with-file-notification=no. (Bug#14569) diff --git a/configure.ac b/configure.ac index 52cc1651950..e08ffce5e0f 100644 --- a/configure.ac +++ b/configure.ac @@ -4725,6 +4725,12 @@ if test "${HAVE_GTK}" = "yes"; then USE_X_TOOLKIT="$USE_GTK_TOOLKIT" fi +if test $USE_ACL -ne 0; then + acl_summary="yes $LIB_ACL" +else + acl_summary=no +fi + echo " Configured for \`${canonical}'. @@ -4761,6 +4767,7 @@ echo " Does Emacs use -ldbus? ${HAVE_DBUS}" echo " Does Emacs use -lgconf? ${HAVE_GCONF}" echo " Does Emacs use GSettings? ${HAVE_GSETTINGS}" echo " Does Emacs use a file notification library? ${NOTIFY_SUMMARY}" +echo " Does Emacs use access control lists? ${acl_summary}" echo " Does Emacs use -lselinux? ${HAVE_LIBSELINUX}" echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}" echo " Does Emacs use -lxml2? ${HAVE_LIBXML2}"