mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
under dev mode, AST_DEVMODE will get defined in buildopts.h. Change 1.4 to define it in the same way that trunk does. Also, revert the change that added this define in the Makefile The advantage to doing it this way is that buildopts.h gets installed when you install Asterisk. Then, when building any out of tree modules, or building asterisk-addons, these modules know which options the rest of Asterisk was built with. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@77410 65c4cc65-6c06-0410-ace0-fbb531ad65f3
18 lines
308 B
Bash
Executable File
18 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cat << END
|
|
/*
|
|
* buildopts.h
|
|
* Automatically generated
|
|
*/
|
|
|
|
END
|
|
TMP=`grep MENUSELECT_CFLAGS menuselect.makeopts | sed 's/MENUSELECT_CFLAGS\=//g' | sed 's/-D//g'`
|
|
for x in ${TMP}; do
|
|
echo "#define ${x} 1"
|
|
done
|
|
if grep AST_DEVMODE makeopts | grep -q yes
|
|
then
|
|
echo "#define AST_DEVMODE 1"
|
|
fi
|