Fixed a bug in how zlib.h was included.

This commit is contained in:
curt 2001-01-19 21:55:49 +00:00
parent b0e175ad3d
commit 7a97c7575d
2 changed files with 6 additions and 2 deletions

View File

@ -29,7 +29,12 @@
#include <stdio.h>
#include <zlib.h>
#ifdef HAVE_ZLIB
# include <zlib.h>
#else
# include <simgear/zlib/zlib.h>
#endif
#include <plib/sg.h>

View File

@ -30,7 +30,6 @@
#include <stdio.h>
#include <time.h>
#include <zlib.h>
#include <vector>
#include STL_STRING