# HG changeset patch # User John W. Eaton # Date 1252013046 14400 # Node ID bb36a5730ecc57532ba4e13ded666149306ace41 # Parent 599e92aaa4c083108968862ac12ab94838098cf0 configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB diff -r 599e92aaa4c0 -r bb36a5730ecc ChangeLog --- a/ChangeLog Thu Sep 03 16:19:08 2009 +0200 +++ b/ChangeLog Thu Sep 03 17:24:06 2009 -0400 @@ -1,3 +1,7 @@ +2009-09-03 John W. Eaton + + * configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB. + 2009-09-03 Jaroslav Hajek * NEWS: Update. diff -r 599e92aaa4c0 -r bb36a5730ecc configure.in --- a/configure.in Thu Sep 03 16:19:08 2009 +0200 +++ b/configure.in Thu Sep 03 17:24:06 2009 -0400 @@ -2028,6 +2028,11 @@ #define HAVE_FFTW #endif +// Backward compatibility. +#if defined (HAVE_Z) +#define HAVE_ZLIB +#endif + #include "oct-dlldefs.h" #include "oct-types.h" ])