diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-16 19:19:39 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-16 19:19:39 -0800 |
commit | e1843320680f13de5571d9f704ce2161c224a23e (patch) | |
tree | b73b2d3f857127914d143755f4dd26815819a9e4 /src | |
parent | ba551e9b92e2d11547abbf23f1d799749f4b2d04 (diff) |
src/Makefile.am: Remove hardcoded -D_BSD_SOURCE
Not needed now that AC_USE_SYSTEM_EXTENSIONS is in configure.ac
Avoids compiler warning of:
/usr/include/features.h:194:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
194 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
| ^~~~~~~
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index b0652f7..5b7791e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ BITMAP_DEFINES = -DBITMAPDIR=\"$(includedir)/X11/bitmaps\" AM_CPPFLAGS = \ -I${top_srcdir}/include \ -I${top_srcdir}/include/X11/Xmu \ - $(BITMAP_DEFINES) -D_CONST_X_STRING -D_BSD_SOURCE + $(BITMAP_DEFINES) -D_CONST_X_STRING AM_CFLAGS = $(CWARNFLAGS) $(XMU_CFLAGS) |