1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-08 16:26:04 +02:00

25950: need configure x$dynamic trick in two more places

This commit is contained in:
Peter Stephenson 2008-10-30 09:59:46 +00:00
parent db68b7270f
commit 5c0b3ddc42
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2008-10-30 Peter Stephenson <pws@csr.com>
* 25950: configure.ac: need "x$dynamic" trick in two
more places.
* users/13418: Src/Modules/termcap.c: protect against
HAVE_STRCODES lying.

View File

@ -2919,13 +2919,13 @@ source code location : ${srcdir}
compiler : ${CC}
preprocessor flags : ${CPPFLAGS}
executable compiler flags : ${CFLAGS}"
if test "$dynamic" = yes; then
if test "x$dynamic" = yes; then
echo "\
module compiler flags : ${CFLAGS} ${DLCFLAGS}"
fi
echo "\
executable linker flags : ${LDFLAGS} ${EXELDFLAGS} ${EXTRA_LDFLAGS}"
if test "$dynamic" = yes; then
if test "x$dynamic" = yes; then
echo "\
module linker flags : ${LDFLAGS} ${LIBLDFLAGS} ${DLLDFLAGS}"
fi