From 146cfddf785a069ba98d82589df04783d47c8e0a Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Wed, 18 Mar 2009 10:54:08 +0000 Subject: [PATCH] Removed useless libisoburn configure options --enable-libacl --enable-xattr --- configure.ac | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/configure.ac b/configure.ac index f99af5a5..e2c53042 100644 --- a/configure.ac +++ b/configure.ac @@ -109,33 +109,6 @@ fi AC_SUBST(READLINE_DEF) -AC_ARG_ENABLE(libacl, -[ --enable-libacl Enable use of libacl by libisofs, default=yes], - , enable_libacl=yes) -if test x$enable_libacl = xyes; then -dnl Check whether there is libacl-devel and libacl-runtime. -dnl If not, erase this macro which would enable use of acl_to_text and others - LIBACL_DEF="-DLibisofs_with_aaip_acL" -dnl The empty yes case obviously causes -lacl to be linked - AC_CHECK_HEADER(sys/acl.h, AC_CHECK_LIB(acl, acl_to_text, , LIBACL_DEF= ), LIBACL_DEF= ) -else - LIBACL_DEF= -fi -AC_SUBST(LIBACL_DEF) - - -AC_ARG_ENABLE(xattr, -[ --enable-xattr Enable use of xattr by libisofs, default=yes], - , enable_xattr=yes) -if test x$enable_xattr = xyes; then -dnl Check whether there is the header for Linux xattr. -dnl If not, erase this macro which would enable use of listxattr and others - XATTR_DEF="-DLibisofs_with_aaip_xattR" - AC_CHECK_HEADER(attr/xattr.h, AC_CHECK_LIB(c, listxattr, X= , XATTR_DEF= ), XATTR_DEF= ) -else - XATTR_DEF= -fi -AC_SUBST(XATTR_DEF) AC_CHECK_HEADER(libburn/libburn.h) AC_CHECK_HEADER(libisofs/libisofs.h)