Skip to content

Commit 107a812

Browse files
committed
Mac OSX build procedure is now better about locating the SDK.
modified: Makefile.macosx new file: search_sdks.sh
1 parent 4406c1a commit 107a812

File tree

4 files changed

+179
-39
lines changed

4 files changed

+179
-39
lines changed

Makefile.macosx

+58-36
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Makefile for Macintosh 10.8+ version of Dire Wolf.
2+
# Makefile for Macintosh 10.6+ version of Dire Wolf.
33
#
44

55
# TODO: This is a modified version of Makefile.linux and it
@@ -9,41 +9,54 @@
99
# Maybe the most of the differences could go in to platform specific include
1010
# files rather than cluttering it up with too many if blocks.
1111

12+
# Changes:
13+
#
14+
# 16 Dec 2015
15+
# 1. Added condition check for gps/gpsd code. Commented out due to 32/64 bit
16+
# library issues. Macports gpsd build problem.
17+
# 2. SDK version checks are now performed by a bash script 'search_sdks.sh'.
18+
# This should resolve the varied locations Apple stored the SDKs on the different
19+
# Xcode/OS versions. Executing 'make' on the first pass asks the operator
20+
# which SDK he/she wishes to use. Executing 'make clean' resets the SDK
21+
# selection and operator intervention is once again required. Selected SDK
22+
# information resides in a file named './use_this_sdk' in the current working
23+
# directory.
24+
# 3. Removed fsk_fast_filter.h from atest receipe, clang compiler was having
25+
# a hissy fit. Not check with GCC.
1226

1327
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc direwolf.conf
1428
@echo " "
1529
@echo "Next step install with: "
1630
@echo " "
1731
@echo " sudo make install"
1832
@echo " "
19-
@echo "System SDK's (10.8 - 10.10) must be located here to make use of them. "
20-
@echo " /Developer/SDKs "
2133
@echo " "
2234

2335
SYS_LIBS :=
2436
SYS_MIN :=
25-
SDK := $(shell find /Developer -maxdepth 1 -type d -name "SDKs")
37+
#SDK := $(shell find /Developer -maxdepth 1 -type d -name "SDKs")
2638
#$(info $$SDK = ${SDK})
27-
ifeq (${SDK},/Developer/SDKs)
28-
SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.8.sdk")
29-
ifeq (${SDK},/Developer/SDKs/MacOSX10.8.sdk)
30-
SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.8.sdk
31-
SYS_MIN := -mmacosx-version-min=10.8
32-
else
33-
SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.9.sdk")
34-
ifeq (${SDK},/Developer/SDKs/MacOSX10.9.sdk)
35-
SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.9.sdk
36-
SYS_MIN := -mmacosx-version-min=10.9
37-
else
38-
SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.10.sdk")
39-
ifeq (${SDK},/Developer/SDKs/MacOSX10.10.sdk)
40-
SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.10.sdk
41-
SYS_MIN := -mmacosx-version-min=10.10
42-
endif
43-
endif
44-
endif
45-
endif
46-
39+
#ifeq (${SDK},/Developer/SDKs)
40+
# SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.8.sdk")
41+
# ifeq (${SDK},/Developer/SDKs/MacOSX10.8.sdk)
42+
# SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.8.sdk
43+
# SYS_MIN := -mmacosx-version-min=10.8
44+
# else
45+
# SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.9.sdk")
46+
# ifeq (${SDK},/Developer/SDKs/MacOSX10.9.sdk)
47+
# SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.9.sdk
48+
# SYS_MIN := -mmacosx-version-min=10.9
49+
# else
50+
# SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.10.sdk")
51+
# ifeq (${SDK},/Developer/SDKs/MacOSX10.10.sdk)
52+
# SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.10.sdk
53+
# SYS_MIN := -mmacosx-version-min=10.10
54+
# endif
55+
# endif
56+
# endif
57+
#endif
58+
59+
SYS_LIBS := $(shell ./search_sdks.sh)
4760
EXTRA_CFLAGS :=
4861
DARWIN_CC := $(shell which clang)
4962
ifeq (${DARWIN_CC},)
@@ -184,11 +197,20 @@ LDLIBS += -framework Foundation -framework CoreServices
184197
CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
185198

186199
# Uncomment following lines to enable GPS interface & tracker function.
187-
# Not available for MacOSX.
188-
# Although MacPorts has gpsd, wonder if it's the same thing.
189-
200+
# Not available for MacOSX (as far as I know).
201+
# Although MacPorts has gpsd, wonder if it's the same thing. Add the check
202+
# just in case it works.
203+
# Well never mind, issue with Macports with 64bit libs ;-( leave the check in
204+
# until (if ever) Macports fixes the issue.
205+
206+
#GPS_HEADER := $(shell find /opt/local/include -maxdepth 1 -type f -name "gps.h")
207+
#ifeq (${GPS_HEADER},)
208+
#GPS_OBJS :=
209+
#else
190210
#CFLAGS += -DENABLE_GPSD
191-
#LDLIBS += -lgps
211+
#LDLIBS += -L/opt/local/lib -lgps -lgpsd
212+
#GPS_OBJS := dwgps.o dwgpsnmea.o dwgpsd.o
213+
#endif
192214

193215
# Name of current directory.
194216
# Used to generate zip file name for distribution.
@@ -206,7 +228,7 @@ direwolf : direwolf.o aprs_tt.o audio_portaudio.o audio_stats.o ax25_pad.o beaco
206228
kiss.o kissnet.o latlong.o latlong.o log.o morse.o multi_modem.o \
207229
nmea.o serial_port.o pfilter.o ptt.o rdq.o recv.o redecode.o rrbb.o server.o \
208230
symbols.o telemetry.o textcolor.o tq.o tt_text.o tt_user.o xmit.o \
209-
dwgps.o dwgpsnmea.o dwgpsd.o
231+
dwgps.o dwgpsnmea.o
210232
$(CC) $(CFLAGS) -o $@ $^ -lpthread $(LDLIBS) -lm
211233

212234

@@ -221,8 +243,6 @@ fsk_fast_filter.h : demod_afsk.c
221243
$(CC) $(CFLAGS) -o gen_fff -DGEN_FFF demod_afsk.c dsp.c textcolor.c -lm
222244
./gen_fff > fsk_fast_filter.h
223245

224-
225-
226246
# UTM, USNG, MGRS conversions.
227247

228248
geotranz.a : error_string.o mgrs.o polarst.o tranmerc.o ups.o usng.o utm.o
@@ -423,17 +443,19 @@ demod_afsk.o : tune.h
423443
demod_9600.o : tune.h
424444

425445
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
426-
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c
446+
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c
427447
$(CC) $(CFLAGS) -o atest $^ -lm
428448
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
429449

430450

431451
# Unit test for AFSK demodulator
432452

433-
434-
atest : atest.c fsk_fast_filter.h demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
435-
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
453+
atest : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
454+
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
436455
$(CC) $(CFLAGS) -o $@ $^ -lm
456+
#atest : atest.c fsk_fast_filter.h demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
457+
# fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
458+
# $(CC) $(CFLAGS) -o $@ $^ -lm
437459

438460
# Unit test for inner digipeater algorithm
439461

@@ -492,7 +514,7 @@ depend : $(wildcard *.c)
492514
.PHONY: clean
493515
clean :
494516
rm -f direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc \
495-
fsk_fast_filter.h *.o *.a
517+
fsk_fast_filter.h *.o *.a use_this_sdk
496518
echo " " > tune.h
497519

498520

dwgpsd.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ static struct gps_data_t gpsdata;
116116
* actually need the data and we don't have a lot of extra unnecessary
117117
* busy work going on.
118118
*
119-
* The current version of gpsd, supplied with Raspian, is 3.6 from back in
119+
* The current version of gpsd, supplied with Raspian (Wheezy), is 3.6 from back in
120120
* May 2012, is missing support for the shared memory interface.
121121
*
122122
* I tried to download a newer source and build with shared memory support
@@ -132,6 +132,11 @@ static struct gps_data_t gpsdata;
132132
* sudo scons udev-install
133133
*
134134
* For now, we will use the socket interface. Maybe get back to this again someday.
135+
*
136+
* Update: January 2016.
137+
*
138+
* I'm told that it might work in Raspian, Jessie version.
139+
* Haven't tried it yet.
135140
*/
136141

137142

man1/gen_packets.1

+6-2
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,14 @@ Both of these are equivalent. "-B 9600" automatically selects scrambled baseban
9898
Both of these generate 200 Hz shift, 300 baud, suitable for HF SSB transceiver.
9999
.RE
100100
.P
101-
.B echo -n "WB2OSZ>WORLD:Hello, world!" | gen_packets -a 25 -o x.wav -
101+
.B echo -n 'WB2OSZ>WORLD:Hello, world!' | gen_packets -a 25 -o x.wav -
102+
.PD 0
103+
.P
104+
.PD
105+
.B atest x.wav
102106
.P
103107
.RS
104-
Read message from stdin and put quarter volume sound into the file x.wav.
108+
Read message from stdin and put quarter volume sound into the file x.wav. Decode the sound file.
105109
.RE
106110
.P
107111

search_sdks.sh

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
#!/bin/bash
2+
#
3+
# This file is part of Dire Wolf, an amateur radio packet TNC.
4+
#
5+
# Bash script to search for SDKs on various MacOSX versions.
6+
#
7+
# Copyright (C) 2015 Robert Stiles
8+
#
9+
# This program is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 2 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# This program is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
21+
#
22+
23+
FILENAME="./use_this_sdk"
24+
selected_sdk=""
25+
valid_flag=0
26+
system_sdk=""
27+
28+
if [ -f $FILENAME ]; then
29+
selected_sdk=`cat $FILENAME`
30+
if [ -d $selected_sdk ]; then
31+
valid_flag=1
32+
fi
33+
fi
34+
35+
if [ $valid_flag -eq "0" ]; then
36+
echo " " >&2
37+
echo " " >&2
38+
echo "Searching for SDKs.... (Wait for results)" >&2
39+
echo " " >&2
40+
echo "Enter the number and press Enter/Return Key" >&2
41+
echo " " >&2
42+
echo " " >&2
43+
44+
prompt="Select SDK to use:"
45+
46+
loc1=( $(find /Applications/XCode.app -type d -name "MacOSX10.*.sdk") )
47+
loc2=( $(find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.*.sdk") )
48+
49+
options=("${loc1[@]}" "${loc2[@]}")
50+
51+
if [ "${#options[@]}" -lt "2" ]; then
52+
echo "$options"
53+
fi
54+
55+
PS3="$prompt "
56+
select opt in "${options[@]}" "Do not use any SDK" ; do
57+
if (( REPLY == 1 + ${#options[@]} )) ; then
58+
echo " "
59+
break
60+
elif (( REPLY > 0 && REPLY <= ${#options[@]} )) ; then
61+
selected_sdk="$opt"
62+
break
63+
fi
64+
done
65+
66+
if [ ! -z "$selected_sdk" ]; then
67+
echo "$selected_sdk" > $FILENAME
68+
else
69+
echo " " > $FILENAME
70+
fi
71+
fi
72+
73+
if [ ! -z "$selected_sdk" ]; then
74+
temp_str="$selected_sdk"
75+
min_str=""
76+
flag=true
77+
78+
# Search for the last MacOSX in the string.
79+
while [ "${#temp_str}" -gt 4 ]; do
80+
temp_str="${temp_str#*MacOSX}"
81+
temp_str="${temp_str%%.sdk}"
82+
min_str="$temp_str"
83+
temp_str="${temp_str:1}"
84+
done
85+
86+
# Remove the "u" if 10.4u Universal SDK is used.
87+
min_str="${min_str%%u}"
88+
89+
system_sdk="-isystem ${selected_sdk} -mmacosx-version-min=${min_str}"
90+
else
91+
system_sdk=" "
92+
fi
93+
94+
echo " " >&2
95+
echo "*******************************************************************" >&2
96+
97+
if [ -z "${system_sdk}" ]; then
98+
echo "SDK Selected: None" >&2
99+
else
100+
echo "SDK Selected: ${system_sdk}" >&2
101+
fi
102+
103+
echo "To change SDK version execute 'make clean' followed by 'make'." >&2
104+
echo "*******************************************************************" >&2
105+
echo " " >&2
106+
107+
echo ${system_sdk}
108+
109+

0 commit comments

Comments
 (0)