projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc41da6
)
when we are building modules that other modules depend on, create preprocessor define...
author
Kevin P. Fleming
<kpfleming@digium.com>
Thu, 21 Jun 2007 19:08:09 +0000
(19:08 +0000)
committer
Kevin P. Fleming
<kpfleming@digium.com>
Thu, 21 Jun 2007 19:08:09 +0000
(19:08 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@70794
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
build_tools/make_buildopts_h
patch
|
blob
|
history
diff --git
a/build_tools/make_buildopts_h
b/build_tools/make_buildopts_h
index
203387e
..
c824955
100755
(executable)
--- a/
build_tools/make_buildopts_h
+++ b/
build_tools/make_buildopts_h
@@
-11,6
+11,11
@@
TMP=`grep MENUSELECT_CFLAGS menuselect.makeopts | sed 's/MENUSELECT_CFLAGS\=//g'
for x in ${TMP}; do
echo "#define ${x} 1"
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
then
echo "#define AST_DEVMODE 1"