|
From: <s-v...@us...> - 2013-05-29 16:39:47
|
Revision: 235
http://sourceforge.net/p/turnserver/code/235
Author: s-vincent
Date: 2013-05-29 16:39:45 +0000 (Wed, 29 May 2013)
Log Message:
-----------
Adds _SVID_SOURCE compilation flag as a temporary workaround for broken IN6_IS_ADDR* macro (with strict C99/POSIX compilation) in glibc >= 2.15.
Modified Paths:
--------------
trunk/src/Makefile.am
Modified: trunk/src/Makefile.am
===================================================================
--- trunk/src/Makefile.am 2013-03-26 17:06:14 UTC (rev 234)
+++ trunk/src/Makefile.am 2013-05-29 16:39:45 UTC (rev 235)
@@ -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 -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 -O2 -D_SVID_SOURCE
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.
|