mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
984c80bf51
commit
3d62f5db4f
17
config.h
17
config.h
@ -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
|
||||
|
17
config.h.in
17
config.h.in
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user