From: <s-v...@us...> - 2016-01-27 17:39:21
|
Revision: 248 http://sourceforge.net/p/turnserver/code/248 Author: s-vincent Date: 2016-01-27 17:39:19 +0000 (Wed, 27 Jan 2016) Log Message: ----------- Use _DEFAULT_SOURCE instead of _SVID_SOURCE (which is deprecated). Modified Paths: -------------- trunk/src/Makefile.am Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2015-01-02 08:20:27 UTC (rev 247) +++ trunk/src/Makefile.am 2016-01-27 17:39:19 UTC (rev 248) @@ -1,4 +1,4 @@ -AM_CFLAGS = -std=c99 -Wall -Wextra -Werror -Wstrict-prototypes -Wredundant-decls -Wshadow -pedantic -fno-strict-aliasing -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600 -D_SVID_SOURCE -O2 +AM_CFLAGS = -std=c99 -Wall -Wextra -Werror -Wstrict-prototypes -Wredundant-decls -Wshadow -pedantic -fno-strict-aliasing -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE -O2 if ENABLE_DEBUG_BUILD AM_CFLAGS += -g This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |