Skip to content
Snippets Groups Projects
Commit 475515ef authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix stupid bug

parent 5f8855fc
No related branches found
No related tags found
No related merge requests found
...@@ -22588,7 +22588,7 @@ EOF ...@@ -22588,7 +22588,7 @@ EOF
fi fi
   
if test "$ol_enable_shell" != no ; then if test "$ol_enable_shell" != no ; then
if( "$ol_link_thread" != no ; then if test "$ol_link_thread" != no ; then
echo "configure: warning: Use of --without-threads is recommended with back-shell" 1>&2 echo "configure: warning: Use of --without-threads is recommended with back-shell" 1>&2
fi fi
cat >> confdefs.h <<\EOF cat >> confdefs.h <<\EOF
......
...@@ -2707,7 +2707,7 @@ if test "$ol_link_perl" != no ; then ...@@ -2707,7 +2707,7 @@ if test "$ol_link_perl" != no ; then
fi fi
if test "$ol_enable_shell" != no ; then if test "$ol_enable_shell" != no ; then
if( "$ol_link_thread" != no ; then if test "$ol_link_thread" != no ; then
AC_MSG_WARN([Use of --without-threads is recommended with back-shell]) AC_MSG_WARN([Use of --without-threads is recommended with back-shell])
fi fi
AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend]) AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])
......
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