Make sure to properly define _GNU_SOURCE in sub-config files.

The build was broken without this.



git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14030 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2006-05-12 15:35:07 +00:00
parent 542a5511a2
commit 528ceb0ad4
3 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2006-05-12 Derek Atkins <derek@ihtfp.com>
* goffice-config.h.in:
* gsf-config.h.in:
Make sure to properly define _GNU_SOURCE in sub-config files.
The build was broken without this.
2006-05-12 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/gnc-plugin-hbci.c: Add the Tools->HBCI

View File

@ -218,3 +218,8 @@
/* Don't include goffice-features.h, it's a subset of goffice-config.h. */
#define GOFFICE_FEATURES_H
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif

View File

@ -122,3 +122,8 @@
/* Define to `int' if <sys/types.h> does not define. */
#undef mode_t
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif