diff options
author | Christophe Grenier <[email protected]> | 2024-01-08 07:39:56 +0100 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2024-01-08 07:39:56 +0100 |
commit | 716c6aaf04b29666fe551184a9e67ae3f9b7cff4 (patch) | |
tree | 8fb812cd1ef2e411ba5f8ff89a3c27694ae2de6d | |
parent | 80f6343da1ea69aab9528b2129c2c337d6dab3a7 (diff) |
configure.ac: fix regression introduce by commit 972217f99390b095fe7487441f0b3b325e5e6df2
-rw-r--r-- | configure.ac | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 0605dad1..2f62598c 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_INIT([testdisk],[7.2-WIP],[[email protected]]) AC_LANG(C) sinclude(acx_pthread.m4) sinclude(mkdir.m4) -TESTDISKDATE="August 2023" +TESTDISKDATE="January 2024" AC_SUBST(TESTDISKDATE) AC_DEFINE_UNQUOTED([TESTDISKDATE],"$TESTDISKDATE",[Date of release]) AC_CONFIG_AUX_DIR(config) @@ -571,13 +571,16 @@ fi if test "x$use_ext2fs" != "xno"; then if test "x$with_ext2fs" != "xno"; then + ac_save_LIBS="$LIBS" AC_CHECK_LIB(com_err,com_err,[ AC_DEFINE([HAVE_LIBCOMM_ERR],1,[Define to 1 if you have the com_err library (-lcom_err).]) if test "${com_err_lib_a}" = ""; then + LIBS="-lcom_err $LIBS" photorec_LDADD="-lcom_err $photorec_LDADD" qphotorec_LDADD="-lcom_err $qphotorec_LDADD" testdisk_LDADD="-lcom_err $testdisk_LDADD" else + LIBS="${com_err_lib_a} $LIBS" photorec_LDADD="${com_err_lib_a} $photorec_LDADD" qphotorec_LDADD="${com_err_lib_a} $qphotorec_LDADD" testdisk_LDADD="${com_err_lib_a} $testdisk_LDADD" @@ -588,18 +591,18 @@ if test "x$with_ext2fs" != "xno"; then AC_CHECK_LIB(ext2fs,ext2fs_open,[ AC_DEFINE([HAVE_LIBEXT2FS],1,[Define to 1 if you have the ext2fs library (-lext2fs).]) if test "${ext2fs_lib_a}" = ""; then + LIBS="-lext2fs $LIBS" photorec_LDADD="-lext2fs $photorec_LDADD" qphotorec_LDADD="-lext2fs $qphotorec_LDADD" testdisk_LDADD="-lext2fs $testdisk_LDADD" else + LIBS="${ext2fs_lib_a} $LIBS" photorec_LDADD="${ext2fs_lib_a} $photorec_LDADD" qphotorec_LDADD="${ext2fs_lib_a} $qphotorec_LDADD" testdisk_LDADD="${ext2fs_lib_a} $testdisk_LDADD" fi have_ext2fs=yes ],AC_MSG_WARN(No ext2fs library detected)) - ac_save_LIBS="$LIBS" - LIBS="$LIBS $testdisk_LDADD" AC_CHECK_FUNCS([ext2fs_get_generic_bitmap_start]) LIBS="$ac_save_LIBS" else |