Skip to content

Commit 3717947

Browse files
committed
Mac OS X patches.
1 parent 50c5542 commit 3717947

7 files changed

+69
-119
lines changed

Makefile.macosx

+24-106
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# 3. Removed fsk_fast_filter.h from atest receipe, clang compiler was having
2525
# a hissy fit. Not check with GCC.
2626

27-
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc
27+
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
2828

2929
all : $(APPS) direwolf.conf
3030
@echo " "
@@ -86,86 +86,14 @@ CFLAGS += -D_BSD_SOURCE
8686

8787
# $(info $$CC is [${CC}])
8888

89-
#
90-
# The DSP filters spend a lot of time spinning around in little
91-
# loops multiplying and adding arrays of numbers. The Intel "SSE"
92-
# instructions, introduced in 1999 with the Pentium III series,
93-
# can speed this up considerably.
94-
#
95-
# SSE2 instructions, added in 2000, don't seem to offer any advantage.
96-
#
97-
#
98-
# Let's take a look at the effect of the compile options.
99-
#
100-
#
101-
# Times are elapsed time to process Track 2 of the TNC test CD.
102-
#
103-
# i.e. "./atest 02_Track_2.wav"
104-
# Default demodulator type is new "E" added for version 1.2.
105-
#
10689

107-
#
108-
# ---------- x86 (32 bit) ----------
109-
#
110-
111-
#
112-
# gcc 4.6.3 running on Ubuntu 12.04.05.
113-
# Intel(R) Celeron(R) CPU 2.53GHz. Appears to have only 32 bit instructions.
114-
# Probably from around 2004 or 2005.
115-
#
116-
# When gcc is generating code for a 32 bit x86 target, it assumes the ancient
117-
# i386 processor. This is good for portability but bad for performance.
118-
#
119-
# The code can run considerably faster by taking advantage of the SSE instructions
120-
# available in the Pentium 3 or later.
121-
#
122-
# seconds options comments
123-
# ------ ------- --------
124-
# 524
125-
# 183 -O2
126-
# 182 -O3
127-
# 183 -O3 -ffast-math (should be same as -Ofast)
128-
# 184 -Ofast
129-
# 189 -O3 -ffast-math -march=pentium
130-
# 122 -O3 -ffast-math -msse
131-
# 122 -O3 -ffast-math -march=pentium -msse
132-
# 121 -O3 -ffast-math -march=pentium3 (this implies -msse)
133-
# 120 -O3 -ffast-math -march=native
134-
#
135-
# Note that "-march=native" is essentially the same as "-march=pentium3."
136-
#
137-
138-
# If the compiler is generating code for the i386 target, we can
139-
# get much better results by telling it we have at least a Pentium 3.
90+
# If the compiler is generating code for a 32 bit target (-m32), we can
91+
# get much better results by telling it we have at least a Pentium 3
92+
# which hass the SSE instructions.
14093

14194
CFLAGS += -march=core2 -msse4.1 -std=gnu99
14295
#CFLAGS += -march=pentium3 -sse
14396

144-
#
145-
# gcc 4.8.2 running on Ubuntu 14.04.1.
146-
# Intel Core 2 Duo from around 2007 or 2008.
147-
#
148-
# 64 bit target implies that we have SSE and probably even better vector instructions.
149-
#
150-
# seconds options comments
151-
# ------ ------- --------
152-
# 245
153-
# 75 -01
154-
# 72 -02
155-
# 71 -03
156-
# 73 -O3 -march=native
157-
# 42 -O3 -ffast-math
158-
# 42 -Ofast (note below)
159-
# 40 -O3 -ffast-math -march=native
160-
#
161-
#
162-
# Note that "-Ofast" is a newer option roughly equivalent to "-O3 -ffast-math".
163-
# I use the longer form because it is compatible with older compilers.
164-
#
165-
# Why don't I don't have "-march=native?"
166-
# Older compilers don't recognize "native" as one of the valid options.
167-
# One article said it was added with gcc 4.2 but I haven't verified that.
168-
#
16997

17098
# Add -ffastmath in only if compiler version recognizes it.
17199

@@ -174,22 +102,6 @@ ifneq ($(useffast),)
174102
CFLAGS += -ffast-math
175103
endif
176104

177-
#
178-
# You would expect "-march=native" to produce the fastest code.
179-
# Why don't I use it here?
180-
#
181-
# 1. In my benchmarks, above, it has a negligible impact if any at all.
182-
# 2. Some older versions of gcc don't recognize "native" as a valid choice.
183-
# 3. Results are less portable. Not a consideration if you are
184-
# building only for your own use but very important for anyone
185-
# redistributing a "binary" version.
186-
#
187-
# If you are planning to distribute the binary version to other
188-
# people (in some ham radio software collection, RPM, or DEB package),
189-
# avoid # fine tuning it for your particular computer. It could
190-
# cause compatibility issues for those with older computers.
191-
#
192-
193105
#CFLAGS += -D_FORTIFY_SOURCE
194106

195107
# Use PortAudio Library
@@ -296,20 +208,15 @@ direwolf.conf : generic.conf
296208

297209

298210
# Where should we install it?
299-
300-
# My understanding, of the convention, is that something you compile
301-
# from source, that is not a standard part of the operating system,
302-
# should go in /usr/local/bin.
303-
304-
# This is a step in the right direction but not sufficient to use /usr instead.
211+
# Macports typically installs in /opt/local so maybe you want to use that instead.
305212

306213
INSTALLDIR := /usr/local
214+
#INSTALLDIR := /opt/local
307215

308216
# TODO: Test this better.
309217

310-
# Optional installation into /usr/local/...
218+
# Optional installation into INSTALLDIR.
311219
# Needs to be run as root or with sudo.
312-
# TODO: Review file locations.
313220

314221
# Command to "install" to system directories. "install" for Linux. "ginstall" for Mac.
315222

@@ -318,8 +225,7 @@ INSTALL=ginstall
318225
.PHONY: install
319226
install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png
320227
#
321-
# Applications, not installed with package manager, normally go in /usr/local/bin.
322-
# /usr/bin is used instead when installing from .DEB or .RPM package.
228+
# Applications.
323229
#
324230
$(INSTALL) direwolf $(INSTALLDIR)/bin
325231
$(INSTALL) decode_aprs $(INSTALLDIR)/bin
@@ -332,6 +238,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
332238
$(INSTALL) gen_packets $(INSTALLDIR)/bin
333239
$(INSTALL) atest $(INSTALLDIR)/bin
334240
$(INSTALL) ttcalc $(INSTALLDIR)/bin
241+
$(INSTALL) kissutil $(INSTALLDIR)/bin
335242
$(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
336243
#
337244
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
@@ -347,10 +254,11 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
347254
#
348255
# Misc. data such as "tocall" to system mapping.
349256
#
350-
$(INSTALL) -D --mode=644 tocalls.txt /usr/share/direwolf/tocalls.txt
351-
$(INSTALL) -D --mode=644 symbols-new.txt /usr/share/direwolf/symbols-new.txt
352-
$(INSTALL) -D --mode=644 symbolsX.txt /usr/share/direwolf/symbolsX.txt
353-
$(INSTALL) -D --mode=644 dw-icon.png /usr/share/direwolf/dw-icon.png
257+
$(INSTALL) -D --mode=644 tocalls.txt $(INSTALLDIR)/share/direwolf/tocalls.txt
258+
$(INSTALL) -D --mode=644 symbols-new.txt $(INSTALLDIR)/share/direwolf/symbols-new.txt
259+
$(INSTALL) -D --mode=644 symbolsX.txt $(INSTALLDIR)/share/direwolf/symbolsX.txt
260+
$(INSTALL) -D --mode=644 dw-icon.png $(INSTALLDIR)/share/direwolf/dw-icon.png
261+
354262
#
355263
# Documentation. Various plain text files and PDF.
356264
#
@@ -535,6 +443,14 @@ aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.c
535443
$(CC) $(CFLAGS) -g -o $@ $^
536444

537445

446+
# Talk to a KISS TNC.
447+
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
448+
449+
kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port.o dtime_now.o sock.o misc.a
450+
$(CC) $(CFLAGS) -g -DKISSUTIL -o $@ $^ $(LDFLAGS)
451+
452+
453+
538454
# Touch Tone to Speech sample application.
539455

540456
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o
@@ -568,6 +484,7 @@ dist-mac: direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
568484
$(INSTALLDIR)/bin/gen_packets \
569485
$(INSTALLDIR)/bin/atest \
570486
$(INSTALLDIR)/bin/ttcalc \
487+
$(INSTALLDIR)/bin/kissutil \
571488
$(INSTALLDIR)/bin/dwespeak.sh \
572489
$(INSTALLDIR)/share/direwolf/tocalls.txt \
573490
$(INSTALLDIR)/share/direwolf/config/direwolf.conf \
@@ -588,6 +505,7 @@ dist-mac: direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
588505
$(INSTALLDIR)/man/man1/decode_aprs.1 \
589506
$(INSTALLDIR)/man/man1/direwolf.1 \
590507
$(INSTALLDIR)/man/man1/gen_packets.1 \
508+
$(INSTALLDIR)/man/man1/kissutil.1 \
591509
$(INSTALLDIR)/man/man1/ll2utm.1 \
592510
$(INSTALLDIR)/man/man1/log2gpx.1 \
593511
$(INSTALLDIR)/man/man1/text2tt.1 \

decode_aprs.c

+16-3
Original file line numberDiff line numberDiff line change
@@ -3706,8 +3706,12 @@ static int data_extension_comment (decode_aprs_t *A, char *pdext)
37063706
*
37073707
* Windows version: File must be in current working directory.
37083708
*
3709-
* Linux version: Search order is current working directory
3710-
* then /usr/share/direwolf directory.
3709+
* Linux version: Search order is current working directory then
3710+
* /usr/local/share/direwolf
3711+
* /usr/share/direwolf/tocalls.txt
3712+
*
3713+
* Mac: Like Linux and then
3714+
* /opt/local/share/direwolf
37113715
*
37123716
*------------------------------------------------------------------*/
37133717

@@ -3730,11 +3734,20 @@ static struct tocalls_s {
37303734
static int num_tocalls = 0;
37313735

37323736
// Make sure the array is null terminated.
3737+
// If search order is changed, do the same in symbols.c
3738+
37333739
static const char *search_locations[] = {
37343740
(const char *) "tocalls.txt",
37353741
#ifndef __WIN32__
3736-
(const char *) "/usr/share/direwolf/tocalls.txt",
37373742
(const char *) "/usr/local/share/direwolf/tocalls.txt",
3743+
(const char *) "/usr/share/direwolf/tocalls.txt",
3744+
#endif
3745+
#if __APPLE__
3746+
// https://groups.yahoo.com/neo/groups/direwolf_packet/conversations/messages/2458
3747+
// Adding the /opt/local tree since macports typically installs there. Users might want their
3748+
// INSTALLDIR (see Makefile.macosx) to mirror that. If so, then we need to search the /opt/local
3749+
// path as well.
3750+
(const char *) "/opt/local/share/direwolf/tocalls.txt",
37383751
#endif
37393752
(const char *) NULL
37403753
};

direwolf.h

+16
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,22 @@
135135
// which breaks things.
136136
// Maybe it should just go in ptt.c as originally suggested.
137137

138+
// #define __DARWIN_C_LEVEL __DARWIN_C_FULL
139+
140+
// There is a more involved patch here:
141+
// https://groups.yahoo.com/neo/groups/direwolf_packet/conversations/messages/2458
142+
143+
#ifndef _DARWIN_C_SOURCE
144+
#define _DARWIN_C_SOURCE
145+
#endif
146+
147+
// Defining _DARWIN_C_SOURCE ensures that the definition for the cfmakeraw function (or similar)
148+
// are pulled in through the include file <sys/termios.h>.
149+
150+
#ifdef __DARWIN_C_LEVEL
151+
#undef __DARWIN_C_LEVEL
152+
#endif
153+
138154
#define __DARWIN_C_LEVEL __DARWIN_C_FULL
139155

140156
#endif

dtime_now.c

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#include <sys/time.h>
2121
#endif
2222

23+
#include <string.h> // needed for Mac.
24+
2325

2426
/*------------------------------------------------------------------
2527
*

kissserial.c

+1-9
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,6 @@
105105
#include "xmit.h"
106106

107107

108-
#if __WIN32__
109-
typedef HANDLE MYFDTYPE;
110-
#define MYFDERROR INVALID_HANDLE_VALUE
111-
#else
112-
typedef int MYFDTYPE;
113-
#define MYFDERROR (-1)
114-
#endif
115-
116-
117108
/*
118109
* Save Configuration for later use.
119110
*/
@@ -129,6 +120,7 @@ static kiss_frame_t kf;
129120

130121
/*
131122
* The serial port device handle.
123+
* MYFD... are defined in kissserial.h
132124
*/
133125

134126
static MYFDTYPE serialport_fd = MYFDERROR;

search_sdks.sh

100644100755
File mode changed.

symbols.c

+10-1
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,20 @@ static const struct {
261261

262262

263263
// Make sure the array is null terminated.
264+
// If search order is changed, do the same in decode_aprs.c
265+
264266
static const char *search_locations[] = {
265267
(const char *) "symbols-new.txt",
266268
#ifndef __WIN32__
267-
(const char *) "/usr/share/direwolf/symbols-new.txt",
268269
(const char *) "/usr/local/share/direwolf/symbols-new.txt",
270+
(const char *) "/usr/share/direwolf/symbols-new.txt",
271+
#endif
272+
#if __APPLE__
273+
// https://groups.yahoo.com/neo/groups/direwolf_packet/conversations/messages/2458
274+
// Adding the /opt/local tree since macports typically installs there. Users might want their
275+
// INSTALLDIR (see Makefile.macosx) to mirror that. If so, then we need to search the /opt/local
276+
// path as well.
277+
(const char *) "/opt/local/share/direwolf/symbols-new.txt",
269278
#endif
270279
(const char *) NULL
271280
};

0 commit comments

Comments
 (0)