about summary refs log tree commit diff
path: root/generator
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2016-11-16 22:33:34 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2016-11-16 22:33:34 +0000
commit75bc35899c2b97e2b8f7704247a81cb6c21998f5 (patch)
tree61ec931cd20b52a634ac22b689d829d9edf9a761 /generator
parent2935036dd0ac4e298a0ae88451c2e9aa8d1eb8e9 (diff)
downloadnetpbm-mirror-75bc35899c2b97e2b8f7704247a81cb6c21998f5.tar.gz
netpbm-mirror-75bc35899c2b97e2b8f7704247a81cb6c21998f5.tar.xz
netpbm-mirror-75bc35899c2b97e2b8f7704247a81cb6c21998f5.zip
Add poorly-named _DEFAULT_SOURCE to all files that had _BSD_SOURCE or _SVID_SOURCE, because for some reason GNU C library is replacing the latter with the former. This eliminates compiler warnings about _BSD_SOURCE/_SVID_SOURCE being deprecated
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2836 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'generator')
-rw-r--r--generator/pbmtext.c1
-rw-r--r--generator/pbmtextps.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/generator/pbmtext.c b/generator/pbmtext.c
index cfb858a6..357f0429 100644
--- a/generator/pbmtext.c
+++ b/generator/pbmtext.c
@@ -10,6 +10,7 @@
 ** implied warranty.
 */
 
+#define _DEFAULT_SOURCE 1  /* New name for SVID & BSD source defines */
 #define _BSD_SOURCE 1      /* Make sure strdup() is in string.h */
 #define _XOPEN_SOURCE 500  /* Make sure strdup() is in string.h */
 
diff --git a/generator/pbmtextps.c b/generator/pbmtextps.c
index fb55fa0a..68df2b15 100644
--- a/generator/pbmtextps.c
+++ b/generator/pbmtextps.c
@@ -25,6 +25,7 @@
  * http://partners.adobe.com/public/developer/ps/index_specs.html
  */
 
+#define _DEFAULT_SOURCE /* New name for SVID & BSD source defines */
 #define _XOPEN_SOURCE   /* Make sure popen() is in stdio.h */
 #define _BSD_SOURCE     /* Make sure stdrup() is in string.h */
 #include <unistd.h>