Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
c3dea377
Commit
c3dea377
authored
Jul 10, 2002
by
Kurt Zeilenga
Browse files
Hide back-sql
Import gcc missing check
parent
cae9ec7a
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
configure
View file @
c3dea377
This diff is collapsed.
Click to expand it.
configure.in
View file @
c3dea377
...
...
@@ -216,9 +216,10 @@ OL_ARG_WITH(perl_module,[ --with-perl-module module type static|dynamic], s
OL_ARG_ENABLE(shell,[ --enable-shell enable shell backend], no)dnl
OL_ARG_WITH(shell_module,[ --with-shell-module module type static|dynamic], static,
[static dynamic])
OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend], no)dnl
OL_ARG_WITH(sql_module,[ --with-sql-module module type static|dynamic], static,
[static dynamic])
dnl OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend], no)dnl
dnl OL_ARG_WITH(sql_module,[ --with-sql-module module type static|dynamic], static, [static dynamic])
ol_enable_sql=${ol_enable_sql-no}
ol_with_sql_module=${ol_enable_sql-static}
dnl ----------------------------------------------------------------
dnl SLURPD OPTIONS
...
...
@@ -608,18 +609,18 @@ if test $ol_aix_threads = yes ; then
fi
if test -z "${CC}"; then
AC_CHECK_PROGS(CC,cc)
fi
AC_CHECK_PROGS(CC,cc gcc,missing)
dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
dnl (for now, let autoconf sort this out)
dnl CFLAGS=${CFLAGS-""}
if test "${CC}" = "missing" ; then
AC_MSG_ERROR([Unable to locate cc(1) or suitable replacement. Check PATH or set CC.])
fi
fi
if test -z "${AR}"; then
AC_CHECK_PROGS(AR,ar gar,missing)
if test "${AR}" = "missing" ; then
AC_MSG_ERROR([Unable to locate ar(1). Check PATH or set AR.])
AC_MSG_ERROR([Unable to locate ar(1)
or suitable replacement
. Check PATH or set AR.])
fi
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment