mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Add new config-parsing framework
This framework adds a way to register the various options in a config file with Asterisk and to handle loading and reloading of that config in a consistent and atomic manner. Review: https://reviewboard.asterisk.org/r/1873/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368181 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
10
configure.ac
10
configure.ac
@@ -980,6 +980,16 @@ else
|
||||
fi
|
||||
AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
|
||||
|
||||
AC_MSG_CHECKING(for -Wtrampolines support)
|
||||
if $(${CC} -Wtrampolines -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
|
||||
AC_MSG_RESULT(yes)
|
||||
AST_TRAMPOLINES=-Wtrampolines
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
AST_TRAMPOLINES=
|
||||
fi
|
||||
AC_SUBST(AST_TRAMPOLINES)
|
||||
|
||||
AC_MSG_CHECKING(for _FORTIFY_SOURCE support)
|
||||
if $(${CC} -D_FORTIFY_SOURCE=2 -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
|
||||
AC_MSG_RESULT(yes)
|
||||
|
Reference in New Issue
Block a user