FT-599 switched from _SVID_SOURCE to _DEFAULT_SOURCE

Newer libc doesn't like _SVID_SOURCE:
https://sourceware.org/ml/libc-alpha/2013-12/msg00652.html
This commit is contained in:
Leif Walsh 2014-10-03 11:39:23 -04:00
parent 23fa603320
commit 4a8b0cb082

View file

@ -17,7 +17,7 @@ add_c_defines(
if (NOT CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
## on FreeBSD these types of macros actually remove functionality
add_c_defines(
_SVID_SOURCE
_DEFAULT_SOURCE
_XOPEN_SOURCE=600
)
endif ()