Skip to content

Commit 6e92a4f

Browse files
committed
Fix build for CentOS.
1 parent 362d19e commit 6e92a4f

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CMakeLists.txt

+10-2
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,16 @@ elseif (WIN32)
150150
endif()
151151

152152
if (C_CLANG OR C_GCC)
153-
# _BSD_SOURCE is deprecated we need to use _DEFAULT_SOURCE
154-
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE ${EXTRA_FLAGS}")
153+
# _BSD_SOURCE is deprecated we need to use _DEFAULT_SOURCE.
154+
# That might be the case for a more modern compiler but it is still needed
155+
# for CentOS 6 & 7. Without -D_BSD_SOURCE, we get Warning: Implicit declaration of
156+
# functions alloca, cfmakeraw, scandir, setlinebuf, strcasecmp, strncasecmp, and strsep.
157+
# When a function (like strsep) returns a pointer, the compiler instead assumes a 32 bit
158+
# int and sign extends it out to be a 64 bit pointer. Use the pointer and Kaboom!
159+
#
160+
### Wextra spews out so much noise a serious problem was not noticed.
161+
###set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE ${EXTRA_FLAGS}")
162+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE -D_BSD_SOURCE ${EXTRA_FLAGS}")
155163
# for math.h
156164
link_libraries("-lm")
157165
elseif (C_MSVC)

src/ptt.c

-5
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,6 @@
156156
#include <unistd.h>
157157
#include <errno.h>
158158
#include <grp.h>
159-
160-
#ifndef __USE_BSD
161-
#define __USE_BSD // Needed for gcc 4.8.5 to find definitions for scandir
162-
// and alphasort. Newer compilers don't have this issue.
163-
#endif
164159
#include <dirent.h>
165160

166161
#ifdef USE_HAMLIB

0 commit comments

Comments
 (0)