diff options
author | Dan Winship <danw@src.gnome.org> | 2000-09-19 03:55:34 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-09-19 03:55:34 +0800 |
commit | 69f189090877a8a60fd3a0fdbe0416f67346de26 (patch) | |
tree | efd089bc234c4a2eef272159ac969c0f8f4be3b5 /widgets | |
parent | 37d47c916dd0d8d53f277862a297aa23feb8ff13 (diff) | |
download | gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.tar gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.tar.gz gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.tar.bz2 gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.tar.lz gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.tar.xz gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.tar.zst gsoc2013-evolution-69f189090877a8a60fd3a0fdbe0416f67346de26.zip |
set this to 4 to specify how much X/Open we want with that.
* e-dateedit.c (_XOPEN_SOURCE): set this to 4 to specify how much
X/Open we want with that.
svn path=/trunk/; revision=5491
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/misc/e-dateedit.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 319212d135..73fda202d4 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2000-09-18 Dan Winship <danw@helixcode.com> + + * e-dateedit.c (_XOPEN_SOURCE): set this to 4 to specify how much + X/Open we want with that. + 2000-09-18 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added $(EXTRA_GNOME_CFLAGS) and diff --git a/widgets/misc/e-dateedit.c b/widgets/misc/e-dateedit.c index dac3cce0c6..6078066d9f 100644 --- a/widgets/misc/e-dateedit.c +++ b/widgets/misc/e-dateedit.c @@ -31,7 +31,7 @@ */ /* We need this for strptime. */ -#define _XOPEN_SOURCE +#define _XOPEN_SOURCE 4 #include <config.h> #include <ctype.h> |