diff options
author | Marc G. Fournier <scrappy@hub.org> | 2000-07-05 17:44:29 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 2000-07-05 17:44:29 +0000 |
commit | 8bef689043651ea08f5040d0632091a0e2120e79 (patch) | |
tree | 686fd5f2e75ba1c530ddf1812864fbf4eb81c695 /src | |
parent | 6534444d191a56afba36e0e1b58e9d18fc28a578 (diff) | |
download | postgresql-8bef689043651ea08f5040d0632091a0e2120e79.tar.gz postgresql-8bef689043651ea08f5040d0632091a0e2120e79.zip |
add check for libz compression library for pg_dump
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index c9ec69116d3..2c2f5e4482c 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -8,7 +8,7 @@ * or in config.h afterwards. Of course, if you edit config.h, then your * changes will be overwritten the next time you run configure. * - * $Id: config.h.in,v 1.122 2000/07/02 15:21:18 petere Exp $ + * $Id: config.h.in,v 1.123 2000/07/05 17:44:29 scrappy Exp $ */ #ifndef CONFIG_H @@ -511,6 +511,9 @@ extern long random(void); extern void srandom(unsigned int seed); #endif +/* Set to 1 if you have libz.a */ +#undef HAVE_LIBZ + /* Set to 1 if you have libreadline.a */ #undef HAVE_LIBREADLINE |