File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,18 @@ CC := gcc
26
26
# There are a few source files where it had been necessary to define __USE_XOPEN2KXSI,
27
27
# __USE_XOPEN, or _POSIX_C_SOURCE. Doesn't seem to be needed after adding this.
28
28
29
- CFLAGS := -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall
29
+ # The first assignment to CFLAGS and LDFLAGS uses +=, rather than :=, so
30
+ # we will inherit options already set in build environment.
31
+ # Explanation - https://github.com/wb2osz/direwolf/pull/38
32
+
33
+ CFLAGS += -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall
30
34
31
35
# That was fine for a recent Ubuntu and Raspbian Jessie.
32
36
# However, Raspbian wheezy was then missing declaration for strsep and definition of fd_set.
33
37
34
38
CFLAGS += -D_BSD_SOURCE
35
39
36
- LDFLAGS : = -lm -lpthread -lrt
40
+ LDFLAGS + = -lm -lpthread -lrt
37
41
38
42
39
43
You can’t perform that action at this time.
0 commit comments