changeset 9610:bb36a5730ecc

configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
author John W. Eaton <jwe@octave.org>
date Thu, 03 Sep 2009 17:24:06 -0400
parents 599e92aaa4c0
children 6f42ea240b3a
files ChangeLog configure.in
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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  <jwe@octave.org>
+
+	* configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB.
+
 2009-09-03  Jaroslav Hajek  <highegg@gmail.com>
 
 	* NEWS: Update.
--- 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"
 ])