mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
when we are building modules that other modules depend on, create preprocessor defines (in buildopts.h) marking that those modules were built
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@70794 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -11,6 +11,11 @@ TMP=`grep MENUSELECT_CFLAGS menuselect.makeopts | sed 's/MENUSELECT_CFLAGS\=//g'
|
|||||||
for x in ${TMP}; do
|
for x in ${TMP}; do
|
||||||
echo "#define ${x} 1"
|
echo "#define ${x} 1"
|
||||||
done
|
done
|
||||||
|
TMP=`grep MENUSELECT_BUILD_DEPS menuselect.makeopts | sed 's/MENUSELECT_BUILD_DEPS\=//g'`
|
||||||
|
for x in ${TMP}; do
|
||||||
|
x2=`echo ${x} | tr a-z A-Z`
|
||||||
|
echo "#define AST_MODULE_${x2} 1"
|
||||||
|
done
|
||||||
if grep AST_DEVMODE makeopts | grep -q yes
|
if grep AST_DEVMODE makeopts | grep -q yes
|
||||||
then
|
then
|
||||||
echo "#define AST_DEVMODE 1"
|
echo "#define AST_DEVMODE 1"
|
||||||
|
Reference in New Issue
Block a user