Skip to content

Commit 7247099

Browse files
committed
Mac OSX compile fixes.
1 parent 3a496aa commit 7247099

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

Makefile.macosx

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626

2727
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc
2828

29-
all : $(APPS) direwolf.desktop direwolf.conf @echo " "
29+
all : $(APPS) direwolf.conf
30+
@echo " "
3031
@echo "Next step install with: "
3132
@echo " "
3233
@echo " sudo make install"
@@ -315,7 +316,7 @@ INSTALLDIR := /usr/local
315316
INSTALL=ginstall
316317

317318
.PHONY: install
318-
install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png direwolf.desktop
319+
install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png
319320
#
320321
# Applications, not installed with package manager, normally go in /usr/local/bin.
321322
# /usr/bin is used instead when installing from .DEB or .RPM package.
@@ -350,7 +351,6 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
350351
$(INSTALL) -D --mode=644 symbols-new.txt /usr/share/direwolf/symbols-new.txt
351352
$(INSTALL) -D --mode=644 symbolsX.txt /usr/share/direwolf/symbolsX.txt
352353
$(INSTALL) -D --mode=644 dw-icon.png /usr/share/direwolf/dw-icon.png
353-
$(INSTALL) -D --mode=644 direwolf.desktop /usr/share/applications/direwolf.desktop
354354
#
355355
# Documentation. Various plain text files and PDF.
356356
#
@@ -485,7 +485,7 @@ testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o
485485
# Unit test for demodulators
486486

487487
atest : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
488-
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c dtest_now.o latlong.c symbols.c textcolor.c tt_text.c
488+
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c dtime_now.o latlong.c symbols.c textcolor.c tt_text.c
489489
$(CC) $(CFLAGS) -o $@ $^ -lm
490490
#atest : atest.c fsk_fast_filter.h demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
491491
# 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

direwolf.h

+11
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,17 @@
3232
#endif
3333

3434

35+
#ifdef __APPLE__
36+
37+
// https://groups.yahoo.com/neo/groups/direwolf_packet/conversations/messages/2072
38+
39+
// I think we should put it here, so it will apply to all files,
40+
// rather than only in ptt.c.
41+
42+
#define __DARWIN_C_LEVEL __DARWIN_C_FULL
43+
44+
#endif
45+
3546

3647
/*
3748
* Previously, we could handle only a single audio device.

serial_port.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,12 @@ MYFDTYPE serial_port_open (char *devicename, int baud)
237237
case 9600: cfsetispeed (&ts, B9600); cfsetospeed (&ts, B9600); break;
238238
case 19200: cfsetispeed (&ts, B19200); cfsetospeed (&ts, B19200); break;
239239
case 38400: cfsetispeed (&ts, B38400); cfsetospeed (&ts, B38400); break;
240+
#ifndef __APPLE__
241+
// Not defined for Mac OSX.
242+
// https://groups.yahoo.com/neo/groups/direwolf_packet/conversations/messages/2072
240243
case 57600: cfsetispeed (&ts, B57600); cfsetospeed (&ts, B57600); break;
241244
case 115200: cfsetispeed (&ts, B115200); cfsetospeed (&ts, B115200); break;
242-
245+
#endif
243246
default: text_color_set(DW_COLOR_ERROR);
244247
dw_printf ("serial_port_open: Unsupported speed %d. Using 4800.\n", baud);
245248
cfsetispeed (&ts, B4800); cfsetospeed (&ts, B4800);

0 commit comments

Comments
 (0)