mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#5033: Do not make depend if configure does not figure out how
This commit is contained in:
parent
ba88d443e9
commit
5514698883
2 changed files with 6 additions and 1 deletions
|
|
@ -91,6 +91,7 @@ EOF
|
||||||
done
|
done
|
||||||
rm -f conftest*
|
rm -f conftest*
|
||||||
])
|
])
|
||||||
|
test "$ol_cv_mkdep" = no && OL_MKDEP=":"
|
||||||
else
|
else
|
||||||
cc_cv_mkdep=yes
|
cc_cv_mkdep=yes
|
||||||
OL_MKDEP_FLAGS="${MKDEP_FLAGS}"
|
OL_MKDEP_FLAGS="${MKDEP_FLAGS}"
|
||||||
|
|
|
||||||
|
|
@ -3102,7 +3102,11 @@ fi
|
||||||
/* end of generated file */
|
/* end of generated file */
|
||||||
ENDX
|
ENDX
|
||||||
|
|
||||||
echo Please run \"make depend\" to build dependencies
|
if test "${ol_cv_mkdep}" = no; then
|
||||||
|
echo '(Do not "make depend"; we do not know how to build dependencies)'
|
||||||
|
else
|
||||||
|
echo 'Please run "make depend" to build dependencies'
|
||||||
|
fi
|
||||||
]],[[
|
]],[[
|
||||||
STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS"
|
STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS"
|
||||||
STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS"
|
STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue