summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-03-06 11:53:42 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-03-06 11:53:42 +0100
commit567c6028c6cceb81efc592e63122a495ea5aa0cf (patch)
tree1d8a0ce0a4208e59e3c6d67633bb6169879fc1ce
parent9ad1315c7f1454f727d3398602b27882a5a1b716 (diff)
downloaddabmux-567c6028c6cceb81efc592e63122a495ea5aa0cf.tar.gz
dabmux-567c6028c6cceb81efc592e63122a495ea5aa0cf.tar.bz2
dabmux-567c6028c6cceb81efc592e63122a495ea5aa0cf.zip
Remove useless include in dabOutputUdp.cpp
-rw-r--r--INSTALL.md15
-rw-r--r--src/dabOutput/dabOutputUdp.cpp1
2 files changed, 12 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index d4cc548..409363c 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -49,15 +49,24 @@ that did not yet make its way into a release, you can clone the
* Bootstrap autotools: <pre>% ./bootstrap.sh</pre>
* Then use ./configure as above
-Develop on OSX
-==============
+Develop on OSX and FreeBSD
+==========================
If you want to develop on OSX platform install the necessary build tools
with brew
brew install automake boost
-raw, edi and udp output are not available.
+On FreeBSD, pkg installs all dependencies to /usr/local, but the build
+tools will not search there by default. Set the following environment variables
+before calling ./configure
+
+ LDFLAGS="-L/usr/local/lib"
+ CFLAGS="-I/usr/local/include"
+ CXXFLAGS="-I/usr/local/include"
+
+
+In both cases, raw output is not available.
Advanced install procedure:
===========================
diff --git a/src/dabOutput/dabOutputUdp.cpp b/src/dabOutput/dabOutputUdp.cpp
index 3338ea6..82abdea 100644
--- a/src/dabOutput/dabOutputUdp.cpp
+++ b/src/dabOutput/dabOutputUdp.cpp
@@ -43,7 +43,6 @@
# include <sys/types.h>
# include <sys/socket.h>
# include <sys/ioctl.h>
-# include <net/if_packet.h>
# include <net/if_arp.h>
#endif