X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=configure.in;h=e088ce1f2a9eb9b3e1d518b5e6100243ac192cd0;hb=64ac24d1216f18375bc6b8d12b93619a42df89c6;hp=d89d7b393bd1d60f3133f53cf21c86a95976a457;hpb=ef631d9c5eb019c66d5eb9adf2d46fe231ede67b;p=captive.git diff --git a/configure.in b/configure.in index d89d7b3..e088ce1 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,9 @@ AC_INIT(src/libcaptive/Makefile-libcaptive.am) dnl 2.53 for AM_GLIB_GNU_GETTEXT: AC_PREREQ(2.53) -AM_INIT_AUTOMAKE(captive,1.0.2) +dnl Not yet present in: Red Hat autoconf-2.57-3 +dnl AC_CONFIG_MACRO_DIR(macros) +AM_INIT_AUTOMAKE(captive,1.1.1cvs) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE dnl Call AC_PROG_CC before AC_ISC_POSIX. @@ -309,7 +311,10 @@ AC_SUBST(OPENSSL_LIBS) # AC_ARG_ENABLE(lufs,[--enable-lufs=[no/yes/auto]],,enable_lufs=auto) have_lufs_includes=false -PATH_LUFSMOUNT="" +# Although it would be more appropriate to use lufsmount(1) instead of lufsd(1) +# we use lufsd(1) as lufsmount(1) is just a dumb wrapper and it would cost us +# another big binary file for the static build package version. +PATH_LUFSD="" if test x$enable_lufs != no;then have_lufs_includes=true dnl If ACTION-IF-NOT-FOUND is given, it is executed when one of the header @@ -330,17 +335,17 @@ if test x$enable_lufs != no;then AC_MSG_WARN([Although LUFS include files were found they are too old. df(1) will not show available NTFS disk space.]) fi ],[#include ]) - AC_PATH_PROGS(PATH_LUFSMOUNT,lufsmount) - if test x$PATH_LUFSMOUNT = x;then + AC_PATH_PROGS(PATH_LUFSD,lufsd) + if test x$PATH_LUFSD = x;then if test x$enable_lufs = xyes;then - AC_MSG_ERROR([LUFS client was requested (--enable-lufs) but no lufsmount(1) binary was found. Install 'lufs-*-*captive*' package.]) + AC_MSG_ERROR([LUFS client was requested (--enable-lufs) but no lufsd(1) binary was found. Install 'lufs-*-*captive*' package.]) else - AC_MSG_WARN([LUFS client not being compiled as no lufsmount(1) binary was found. Install 'lufs-*-*captive*' package.]) + AC_MSG_WARN([LUFS client not being compiled as no lufsd(1) binary was found. Install 'lufs-*-*captive*' package.]) fi fi fi -AM_CONDITIONAL(ENABLE_LUFS,[ $have_lufs_includes && test x$PATH_LUFSMOUNT != x -a x$enable_lufs != no ]) -AC_SUBST(PATH_LUFSMOUNT) +AM_CONDITIONAL(ENABLE_LUFS,[ $have_lufs_includes && test x$PATH_LUFSD != x -a x$enable_lufs != no ]) +AC_SUBST(PATH_LUFSD) dnl for $(top_srcdir)/src/libcaptive/client/ dnl Do not use '[client server]' as $4 to prevent: configure: test: too many arguments @@ -383,11 +388,16 @@ GLADE_W_INIT([ have_libntfs_includes=true AC_CHECK_HEADERS # '#include "config.h"' may be required by include files. - test -r config.h || touch config.h + # "config.h" may be already present while not yet being compilable. + rm -f config.h-ntfs_save + mv -f config.h config.h-ntfs_save 2>/dev/null + touch config.h captive_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I." # for "config.h" touched above AC_CHECK_HEADERS(ntfs/types.h ntfs/volume.h,,[ have_libntfs_includes=false ]) CPPFLAGS="$captive_save_CPPFLAGS" + rm -f config.h + mv -f config.h-ntfs_save config.h 2>/dev/null if $have_libntfs_includes;then captive_save_CPPFLAGS="$CPPFLAGS"