Skip to content

Commit 03939d2

Browse files
committed
Fix CentOS 6 build.
1 parent 6e92a4f commit 03939d2

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

CMakeLists.txt

+24-4
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,35 @@ endif()
151151

152152
if (C_CLANG OR C_GCC)
153153
# _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
154+
#
155+
# That works find for more modern compilers but we have issues with:
156+
# Centos 7, gcc 4.8.5, glibc 2.17
157+
# Centos 6, gcc 4.4.7, glibc 2.12
158+
#
159+
# CentOS 6 & 7: Without -D_BSD_SOURCE, we get Warning: Implicit declaration of
156160
# functions alloca, cfmakeraw, scandir, setlinebuf, strcasecmp, strncasecmp, and strsep.
157161
# When a function (like strsep) returns a pointer, the compiler instead assumes a 32 bit
158162
# int and sign extends it out to be a 64 bit pointer. Use the pointer and Kaboom!
159163
#
160-
### Wextra spews out so much noise a serious problem was not noticed.
164+
# CentOS 6: We have additional problem. Without -D_POSIX_C_SOURCE=199309L, we get
165+
# implicit declaration of function clock_gettime and the linker can't find it.
166+
#
167+
# It turns out that -D_GNU_SOURCE can be used instead of both of those. For more information,
168+
# see https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html
169+
#
170+
# Why was this not an issue before? If gcc is used without the -std=c99 option,
171+
# it is perfectly happy with clock_gettime, strsep, etc. but with the c99 option, it no longer
172+
# recognizes a bunch of commonly used functions. Using _GNU_SOURCE, rather than _DEFAULT_SOURCE
173+
# solves the problem for CentOS 6 & 7. This also makes -D_XOPEN_SOURCE= unnecessary.
174+
# I hope it doesn't break with newer versions of glibc.
175+
#
176+
# I also took out -Wextra because it spews out so much noise a serious problem was not noticed.
177+
# It might go back in someday when I have more patience to clean up all the warnings.
178+
#
161179
###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}")
180+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wvla -ffast-math -ftree-vectorize -D_GNU_SOURCE ${EXTRA_FLAGS}")
181+
#
182+
#
163183
# for math.h
164184
link_libraries("-lm")
165185
elseif (C_MSVC)

src/ax25_pad2.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ int main ()
796796

797797
for (pf = 0; pf <= 1; pf++) {
798798

799-
int cmin, cmax;
799+
int cmin = 0, cmax = 1;
800800

801801
switch (ftype) {
802802
// 0 = response, 1 = command
@@ -867,7 +867,7 @@ int main ()
867867

868868
/* SREJ is only S frame which can have information part. */
869869

870-
static char srej_info[] = { 1<<1, 2<<1, 3<<1, 4<<1 };
870+
static unsigned char srej_info[] = { 1<<1, 2<<1, 3<<1, 4<<1 };
871871

872872
ftype = frame_type_S_SREJ;
873873
for (pf = 0; pf <= 1; pf++) {

0 commit comments

Comments
 (0)