fix some #define bugs

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@218 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1997-12-01 06:04:20 +00:00
parent 984c80bf51
commit 3d62f5db4f
2 changed files with 34 additions and 0 deletions

View File

@ -59,4 +59,21 @@
#define USE_XMHTML 0
#endif
/* try to keep if-def-based configs from breaking */
#if 0==HAVE_Z
#define HAVE_Z 1
#endif
#if 0==HAVE_PNG
#define HAVE_PNG 1
#endif
#if 0==HAVE_JPEG
#define HAVE_JPEG 1
#endif
#if 0==HAVE_XPM
#define HAVE_XPM 1
#endif
#endif

View File

@ -58,4 +58,21 @@
#define USE_XMHTML 0
#endif
/* try to keep if-def-based configs from breaking */
#if 0==HAVE_Z
#undef HAVE_Z
#endif
#if 0==HAVE_PNG
#undef HAVE_PNG
#endif
#if 0==HAVE_JPEG
#undef HAVE_JPEG
#endif
#if 0==HAVE_XPM
#undef HAVE_XPM
#endif
#endif