Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
f3295709
Commit
f3295709
authored
Feb 22, 2007
by
Pekka Pessi
Browse files
configure.ac, m4/*: cleaned up --help output
darcs-hash:20070222205115-88462-9fe7e3120f1b022abe48e5d462dbdf8222bdebef.gz
parent
a81d1326
Changes
6
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
f3295709
...
...
@@ -78,7 +78,7 @@ AC_DEFINE([HAVE_SOFIA_SRESOLV], 1, [Define to 1 if we use DNS library])
AC_DEFINE([HAVE_SOFIA_SMIME], 0, [Define to 1 if we use S/MIME library])
AC_ARG_ENABLE(stun,
[ --disable-stun
disable stun module (enabled)],
[ --disable-stun disable stun module (enabled)],
, enable_stun=yes)
if test x$enable_stun = xno ; then
...
...
@@ -93,7 +93,7 @@ fi
AM_CONDITIONAL([HAVE_STUN], [test "x$enable_stun" = xyes])
AC_ARG_ENABLE(nth,
[ --disable-nth
disable nth and http modules (enabled)],
[ --disable-nth disable nth and http modules (enabled)],
, enable_nth=yes)
AM_CONDITIONAL([HAVE_NTH], [test "x$enable_nth" = xyes])
if test x$enable_nth = xyes ; then
...
...
@@ -102,7 +102,7 @@ fi
dnl Disable NTLM support by default
AC_ARG_ENABLE(ntlm,
[ --enable-ntlm
enable NTLM support
(
disabled
)
],
[ --enable-ntlm enable NTLM support
[[
disabled
]]
],
, enable_ntlm=no)
if test x$enable_ntlm = xyes ; then
...
...
m4/sac-general.m4
View file @
f3295709
...
...
@@ -127,7 +127,7 @@ AC_ARG_VAR([SOFIA_CFLAGS], [CFLAGS not used during configure])
# GCoverage
#
AC_ARG_ENABLE(coverage,
[ --enable-coverage compile test-coverage
(
disabled
)
],
[ --enable-coverage compile test-coverage
[[
disabled
]]
],
, enable_coverage=no)
if test X$enable_coverage != Xno ; then
...
...
@@ -341,7 +341,7 @@ dnl ======================================================================
AC_DEFUN([SAC_ENABLE_NDEBUG],[
AC_REQUIRE([SAC_TOOL_CC])
AC_ARG_ENABLE(ndebug,
[ --enable-ndebug
compile with NDEBUG
(
disabled
)
],
[ --enable-ndebug compile with NDEBUG
[[
disabled
]]
],
, enable_ndebug=no)
AM_CONDITIONAL(NDEBUG, test x$enable_ndebug = yes)
])
...
...
@@ -351,7 +351,8 @@ dnl SAC_ENABLE_EXPENSIVE_CHECKS
dnl ======================================================================
AC_DEFUN([SAC_ENABLE_EXPENSIVE_CHECKS],[
AC_ARG_ENABLE(expensive-checks,
[ --enable-expensive-checks run also expensive checks (disabled)],
[ --enable-expensive-checks
run also expensive checks [[disabled]]],
, enable_expensive_checks=no)
if test $enable_expensive_checks != no; then
AC_SUBST([TESTS_ENVIRONMENT], [EXPENSIVE_CHECKS=1])
...
...
m4/sac-openssl.m4
View file @
f3295709
...
...
@@ -4,7 +4,7 @@ dnl ======================================================================
AC_DEFUN([SAC_OPENSSL], [
AC_ARG_WITH(openssl,
[ --with-openssl use OpenSSL
(
enabled
)
],, with_openssl=yes)
[ --with-openssl use OpenSSL
[[
enabled
]]
],, with_openssl=yes)
dnl SOSXXX:SAC_ASSERT_DEF([openssl libraries])
...
...
m4/sac-su.m4
View file @
f3295709
...
...
@@ -13,7 +13,7 @@ dnl SAC_WITH_RT - check for POSIX realtime library
dnl ======================================================================
AC_DEFUN([SAC_WITH_RT],[
AC_ARG_WITH(rt,
[ --with-rt use POSIX realtime library
(
used by default
)
])
[ --with-rt use POSIX realtime library
[[
used by default
]]
])
])
dnl ======================================================================
...
...
m4/sac-su2.m4
View file @
f3295709
...
...
@@ -47,7 +47,7 @@ else
fi
AC_ARG_ENABLE(experimental,
[ --enable-experimental
enable experimental features
(
disabled
)
],
[ --enable-experimental enable experimental features
[[
disabled
]]
],
, enable_experimental=no)
if test $enable_experimental = yes ; then
...
...
@@ -89,7 +89,7 @@ case "$ac_cv_c_inline" in
esac
AC_ARG_ENABLE(size-compat,
[ --disable-size-compat
use compatibility size_t types
(
enabled
)
],
[ --disable-size-compat use compatibility size_t types
[[
enabled
]]
],
, enable_size_compat=yes)
if test X$enable_size_compat != Xyes; then
...
...
@@ -113,7 +113,8 @@ dnl ======================================================================
dnl SAC_ENABLE_COREFOUNDATION
dnl ======================================================================
AC_ARG_ENABLE(corefoundation,
[ --enable-corefoundation compile with OSX COREFOUNDATION (disabled)],
[ --enable-corefoundation
compile with OSX COREFOUNDATION [[disabled]]],
, enable_corefoundation=no)
AM_CONDITIONAL(COREFOUNDATION, test $enable_corefoundation = yes)
...
...
@@ -485,9 +486,9 @@ fi
# ===========================================================================
AC_ARG_ENABLE(poll-port,
[ --disable-poll-port
disable su_poll_port
(
enabled
)
Use this option in systems emulating poll
with select],
, enable_poll_port=maybe)
[ --disable-poll-port disable su_poll_port
[[
enabled
]]
Use this option in systems emulating poll
with select],
, enable_poll_port=maybe)
if test $enable_poll_port = maybe ; then
if test $ac_cv_func_poll = yes ; then
...
...
m4/sac-tport.m4
View file @
f3295709
...
...
@@ -4,7 +4,7 @@ dnl ======================================================================
AC_DEFUN([SAC_TPORT], [
AC_ARG_WITH(sigcomp,
[ --with-sigcomp=dir use Sofia SigComp package
(
not used
by default)
],,
[ --with-sigcomp=dir use Sofia SigComp package
[[
not used
]]
],,
with_sigcomp=no)
if test -n "${with_sigcomp}" && test "${with_sigcomp}" != no ; then
...
...
@@ -29,8 +29,8 @@ AC_SYS_IPV6_RECVERR
AC_CHECK_HEADERS(netinet/tcp.h netinet/sctp.h)
AC_ARG_
WITH
(sctp,
[ --enable-sctp use
LK-
SCTP
(not used by default)
],,
AC_ARG_
ENABLE
(sctp,
[ --enable-sctp
use SCTP
[[disabled]]
],,
enable_sigcomp=no)
if test x$enable_sctp = xyes; then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment