Skip to content
Snippets Groups Projects
Commit 31a885da authored by Christian Engwer's avatar Christian Engwer
Browse files

add REQUIRES substitution to dependencies.m4

[[Imported from SVN: r5369]]
parent 3202686d
No related branches found
No related tags found
No related merge requests found
......@@ -581,6 +581,19 @@ while test $# -gt 0; do
if test "x$version" = "x"; then version="0.0"; fi
echo "writing $fname"
echo " for $name $version $maintainer"
eval deps=\$DEPS_$module
while test -n "$deps"; do
PATTERN=$PARSE_SUGDEP_PATTERN
name=`echo $deps | sed -e "s/$PATTERN/\1/"`
depver=`echo $deps | sed -e "s/$PATTERN/\2/" -e 's/[()]//g'`
xdeps=`echo $deps | sed -e "s/$PATTERN/\3/"`
if test "$deps" = "$xdeps"; then
echo "ERROR: parsing dependencies for $modname" >&2
exit 1
fi
deps="$xdeps"
done
echo " requires $requires"
cat > $fname <<EOF
m4_define([DUNE_AC_INIT],[
AC_INIT([$name], [$version], [$maintainer])
......@@ -593,6 +606,9 @@ m4_define([DUNE_AC_INIT],[
[LT_INIT],
[AC_DEFUN([LT_OUTPUT])])
AC_DISABLE_SHARED
REQUIRES="$requires"
AC_SUBST(REQUIRES, [$REQUIRES])
])
AC_DEFUN([DUNE_CHECK_MOD_DEPENDENCIES], [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment