From 1016213902f566742cc703cf0fc5b3c74db83985 Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Sat, 9 Dec 2000 01:56:59 +0000 Subject: [PATCH] Fix silly errors --- Makefile.conf.in | 4 ++-- configure.in | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.conf.in b/Makefile.conf.in index edfbbbec..bb5f9c9d 100644 --- a/Makefile.conf.in +++ b/Makefile.conf.in @@ -62,8 +62,8 @@ NLS_LIBS = @INTLLIBS@ SSD_LIBS = @SSD_LIBS@ -ZLIB_CFLAGS = @ZLIBCFLAGS@ -ZLIB_LIBS = @ZLIBLIBS@ +ZLIB_CFLAGS = @ZLIB_CFLAGS@ +ZLIB_LIBS = @ZLIB_LIBS@ ALL_CFLAGS = $(CFLAGS) $(DEFS) $(NLS_CFLAGS) $(INCLUDE_CFLAGS) $(ZLIB_CFLAGS) ALL_CXXFLAGS = $(ALL_CFLAGS) $(CXXFLAGS) diff --git a/configure.in b/configure.in index 54d309b2..cf25d2d0 100644 --- a/configure.in +++ b/configure.in @@ -133,13 +133,13 @@ AC_ARG_WITH(zlib, [ --with-zlib use zlib for decompression of some gzip files], [use_zlib=$withval], [uze_zlib=no]) -if [ "$use_zlib" = "no" ] ; then +if test "$use_zlib" = "no" ; then ZLIB_CFLAGS= ZLIB_LIBS= else ZLIB_CFLAGS=-DUSE_ZLIB - if [ "$use_zlib" = "static" ] ; then - ZLIB_LIBS=-Wl,-Bstatic -lz -Wl,-Bdynamic + if test "$use_zlib" = "static" ; then + ZLIB_LIBS="-Wl,-Bstatic -lz -Wl,-Bdynamic" else ZLIB_LIBS=-lz fi -- 2.39.5