about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-08-24 03:10:57 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-08-24 03:10:57 +0000
commit4202f1180bb6951338e094912586c9780ec8b044 (patch)
treef95e66fe88343ff49822dc5ccb2da19fde86a828 /other
parent1758db773edd8b472ca4927930e148a92bbfaca1 (diff)
downloadnetpbm-mirror-4202f1180bb6951338e094912586c9780ec8b044.tar.gz
netpbm-mirror-4202f1180bb6951338e094912586c9780ec8b044.tar.xz
netpbm-mirror-4202f1180bb6951338e094912586c9780ec8b044.zip
Declare _XOPEN_SOURCE >= 500 to make strdup defined
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2257 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'other')
-rw-r--r--other/pamx/pamx.c1
-rw-r--r--other/pamx/window.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/other/pamx/pamx.c b/other/pamx/pamx.c
index dbb8b62a..e22693ea 100644
--- a/other/pamx/pamx.c
+++ b/other/pamx/pamx.c
@@ -3,6 +3,7 @@
    Copyright information is in the file COPYRIGHT
 */
 
+#define _XOPEN_SOURCE 500  /* Make sure strdup() is in string.h */
 #define _BSD_SOURCE  /* Make sure strdup() is in <string.h> */
 #include <signal.h>
 #include <unistd.h>
diff --git a/other/pamx/window.c b/other/pamx/window.c
index 3cded1b3..e2de1577 100644
--- a/other/pamx/window.c
+++ b/other/pamx/window.c
@@ -6,6 +6,7 @@
    See COPYRIGHT file for copyright information.
 */
 
+#define _XOPEN_SOURCE 500  /* Make sure strdup() is in string.h */
 #define _BSD_SOURCE    /* Make sure strcaseeq() is in nstring.h */
 
 #include <assert.h>