mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
* configure.ac: AM_CONDITIONAL must not be used inside an if/then.
This commit is contained in:
parent
abfdbea116
commit
d382fece03
@ -1,3 +1,7 @@
|
|||||||
|
2006-12-07 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* configure.ac: AM_CONDITIONAL must not be used inside an if/then.
|
||||||
|
|
||||||
2006-12-07 Werner Koch <wk@g10code.com>
|
2006-12-07 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* configure.ac: Remove GNUPG_DATADIR for non-W32 systems.
|
* configure.ac: Remove GNUPG_DATADIR for non-W32 systems.
|
||||||
|
@ -1197,13 +1197,12 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$use_local_zlib" = yes ; then
|
if test "$use_local_zlib" = yes ; then
|
||||||
AM_CONDITIONAL(ENABLE_LOCAL_ZLIB, true)
|
|
||||||
AC_CONFIG_LINKS(zlib.h:zlib/zlib.h zconf.h:zlib/zconf.h )
|
AC_CONFIG_LINKS(zlib.h:zlib/zlib.h zconf.h:zlib/zconf.h )
|
||||||
ZLIBS="../zlib/libzlib.a"
|
ZLIBS="../zlib/libzlib.a"
|
||||||
else
|
|
||||||
AM_CONDITIONAL(ENABLE_LOCAL_ZLIB, false)
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AM_CONDITIONAL(ENABLE_LOCAL_ZLIB, test "$use_local_zlib" = yes)
|
||||||
|
|
||||||
if test "$use_bzip2" = yes ; then
|
if test "$use_bzip2" = yes ; then
|
||||||
_cppflags="${CPPFLAGS}"
|
_cppflags="${CPPFLAGS}"
|
||||||
_ldflags="${LDFLAGS}"
|
_ldflags="${LDFLAGS}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user