diff --git a/channels/chan_h323.c b/channels/chan_h323.c index 166d6b2ea58982cb2ea53e872ab0ce96e35d572c..18960dfed759d2469d27320d5026915f955f1f8b 100755 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -54,13 +54,13 @@ #include <fcntl.h> #include <netdb.h> #include <sys/signal.h> -#include <netinet/ip.h> #ifdef __OpenBSD__ #include <netinet/in_systm.h> #ifndef IPTOS_MINCOST #define IPTOS_MINCOST 0x02 #endif #endif +#include <netinet/ip.h> #include "h323/chan_h323.h" diff --git a/channels/h323/Makefile b/channels/h323/Makefile index 7bfd7122ea6aa56c5bacf9c983aba7562de03a51..56cd61974fcf16378eaab65b4a3505ab5efbded5 100755 --- a/channels/h323/Makefile +++ b/channels/h323/Makefile @@ -39,7 +39,10 @@ CFLAGS += -march=$(shell uname -m) -DPBYTE_ORDER=PLITTLE_ENDIAN # Pre Janus release directives CFLAGS += -DNDEBUG -DDO_CRASH -DDEBUG_THREADS CFLAGS += -pipe -Wall -fPIC -Wmissing-prototypes -Wmissing-declarations -CFLAGS += -DP_LINUX -D_REENTRANT -D_GNU_SOURCE +ifeq (${OSARCH},Linux) +CFLAGS += -DP_LINUX +endif +CFLAGS += -D_REENTRANT -D_GNU_SOURCE CFLAGS += -DP_HAS_SEMAPHORES -DP_SSL -DP_PTHREADS CFLAGS += -DPHAS_TEMPLATES -DPTRACING -DP_USE_PRAGMA CFLAGS += -I../../include