mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-23 11:36:09 +00:00
fix openbsd sofia build
This commit is contained in:
parent
b45a11770a
commit
957d92c430
@ -100,13 +100,16 @@ if test "x${ax_cv_c_compiler_vendor}" = "xsun" ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
SOFIA_PLAT_CFLAGS=
|
||||||
# openbsd seems to not define NULL as a void pointer, I blame standards by committee for this.
|
# openbsd seems to not define NULL as a void pointer, I blame standards by committee for this.
|
||||||
# This is a dirty hack, but shuts up all the warnings
|
# This is a dirty hack, but shuts up all the warnings
|
||||||
case "$host" in
|
case "$host" in
|
||||||
*-openbsd*) SOFIA_CFLAGS="$SOFIA_CFLAGS -DNULL='(void *) 0L'";;
|
*-openbsd*) SOFIA_PLAT_CFLAGS="-DNULL='(void *) 0L'";;
|
||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
AC_SUBST(SOFIA_PLAT_CFLAGS, $SOFIA_PLAT_CFLAGS)
|
||||||
|
|
||||||
|
|
||||||
### checks for header files
|
### checks for header files
|
||||||
### -----------------------
|
### -----------------------
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# common Makefile targets for libsofia-sip-ua modules
|
# common Makefile targets for libsofia-sip-ua modules
|
||||||
# ---------------------------------------------------
|
# ---------------------------------------------------
|
||||||
|
|
||||||
AM_CFLAGS = $(CWFLAG) $(SOFIA_CFLAGS) $(SOFIA_COVERAGE)
|
AM_CFLAGS = $(CWFLAG) $(SOFIA_CFLAGS) $(SOFIA_COVERAGE) $(SOFIA_PLAT_CFLAGS)
|
||||||
|
|
||||||
# Use with --enable-ndebug
|
# Use with --enable-ndebug
|
||||||
if NDEBUG
|
if NDEBUG
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
sofiasrcdir = ${top_srcdir}/libsofia-sip-ua
|
sofiasrcdir = ${top_srcdir}/libsofia-sip-ua
|
||||||
sofiabuilddir = ${top_builddir}/libsofia-sip-ua
|
sofiabuilddir = ${top_builddir}/libsofia-sip-ua
|
||||||
|
|
||||||
AM_CFLAGS = $(CWFLAG) $(SOFIA_COVERAGE) $(SOFIA_CFLAGS) $(openssl_CFLAGS)
|
AM_CFLAGS = $(CWFLAG) $(SOFIA_COVERAGE) $(SOFIA_CFLAGS) $(openssl_CFLAGS) $(SOFIA_PLAT_CFLAGS)
|
||||||
|
|
||||||
SOFIA_COVERAGE = $(COVERAGE_FLAGS)
|
SOFIA_COVERAGE = $(COVERAGE_FLAGS)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user