Changeset: 0b546a669946 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0b546a669946
Modified Files:
        common/stream/stream.c
Branch: Jan2014
Log Message:

Fix too drastic cleanup in changeset a03593478ec0.
With this fix it is again possible to compile when no -lgz or -lbz2 available.


diffs (35 lines):

diff --git a/common/stream/stream.c b/common/stream/stream.c
--- a/common/stream/stream.c
+++ b/common/stream/stream.c
@@ -921,6 +921,7 @@ stream *open_gzrstream(const char *filen
        (void) filename;
        return NULL;
 }
+#define open_gzwstream_(filename, mode)                NULL
 stream *open_gzwstream(const char *filename) {
        (void) filename;
        return NULL;
@@ -929,6 +930,7 @@ stream *open_gzrastream(const char *file
        (void) filename;
        return NULL;
 }
+#define open_gzwastream_(filename, mode)       NULL
 stream *open_gzwastream(const char *filename) {
        (void) filename;
        return NULL;
@@ -1134,6 +1136,7 @@ stream *open_bzrstream(const char *filen
        (void) filename;
        return NULL;
 }
+#define open_bzwstream_(filename, mode)                NULL
 stream *open_bzwstream(const char *filename) {
        (void) filename;
        return NULL;
@@ -1142,6 +1145,7 @@ stream *open_bzrastream(const char *file
        (void) filename;
        return NULL;
 }
+#define open_bzwastream_(filename, mode)       NULL
 stream *open_bzwastream(const char *filename) {
        (void) filename;
        return NULL;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to