Update a few comments

This commit is contained in:
Kurt Zeilenga 1999-08-29 20:11:23 +00:00
parent 74543e6c68
commit ae28af1383
2 changed files with 636 additions and 641 deletions

1264
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -1,12 +1,11 @@
dnl $Id$ dnl $Id: configure.in,v 1.248 1999/08/28 04:00:47 kdz Exp $
dnl
dnl Copyright 1998,1999 The OpenLDAP Foundation. All Rights Reserved. dnl Copyright 1998,1999 The OpenLDAP Foundation. All Rights Reserved.
dnl dnl
dnl Redistribution and use in source and binary forms are permitted only dnl Redistribution and use in source and binary forms are permitted only
dnl as authorized by the OpenLDAP Public License. A copy of this dnl as authorized by the OpenLDAP Public License. A copy of this
dnl license is available at http://www.OpenLDAP.org/license.html or dnl license is available at http://www.OpenLDAP.org/license.html or
dnl in file LICENSE in the top-level directory of the distribution. dnl in file LICENSE in the top-level directory of the distribution.
dnl
dnl Disable config.cache! dnl Disable config.cache!
define([AC_CACHE_LOAD], )dnl define([AC_CACHE_LOAD], )dnl
@ -145,7 +144,7 @@ OL_ARG_WITH(tcl_module,[ --with-tcl-module module type], static,
[static dynamic]) [static dynamic])
dnl SLURPD OPTIONS dnl SLURPD OPTIONS
AC_ARG_WITH(xxslurpdoptions,[SLURPD Options:]) AC_ARG_WITH(xxslurpdoptions,[SLURPD (Replication Daemon) Options:])
OL_ARG_ENABLE(slurpd,[ --enable-slurpd enable building slurpd], auto)dnl OL_ARG_ENABLE(slurpd,[ --enable-slurpd enable building slurpd], auto)dnl
AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options]) AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options])
@ -404,7 +403,6 @@ dnl AC_PROG_INSTALL
AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion]) AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion])
dnl dnl
dnl Determine which C translator to use dnl Determine which C translator to use
dnl dnl
@ -629,9 +627,7 @@ dnl -lsocket [ -lnsl_s | -lnsl ]
dnl -linet dnl -linet
AC_CHECK_FUNC(socket, :, [ AC_CHECK_FUNC(socket, :, [
dnl
dnl hopefully we won't include too many libraries dnl hopefully we won't include too many libraries
dnl
AC_CHECK_LIB(socket, main) AC_CHECK_LIB(socket, main)
AC_CHECK_LIB(net, main) AC_CHECK_LIB(net, main)
AC_CHECK_LIB(net, socket) AC_CHECK_LIB(net, socket)
@ -641,6 +637,7 @@ dnl
AC_CHECK_LIB(gen, main) AC_CHECK_LIB(gen, main)
]) ])
dnl require select
AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.])) AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
dnl Select arg types dnl Select arg types
@ -649,6 +646,7 @@ dnl should be done before the yielding select test)
AC_FUNC_SELECT_ARGTYPES AC_FUNC_SELECT_ARGTYPES
dnl require POSIX regex
AC_CHECK_HEADERS( regex.h ) AC_CHECK_HEADERS( regex.h )
if test "$ac_cv_header_regex_h" != yes ; then if test "$ac_cv_header_regex_h" != yes ; then
AC_MSG_ERROR([POSIX regex.h required.]) AC_MSG_ERROR([POSIX regex.h required.])
@ -660,7 +658,6 @@ if test "$ol_cv_c_posix_regex" = no ; then
AC_MSG_ERROR([broken POSIX regex!]) AC_MSG_ERROR([broken POSIX regex!])
fi fi
dnl HP-UX requires -lV3 dnl HP-UX requires -lV3
AC_CHECK_LIB(V3, sigset) AC_CHECK_LIB(V3, sigset)