Add two checks ... one for setproctitle and one for -lutil ...

Don't do anything with them at this time, but am working on that ...
This commit is contained in:
Marc G. Fournier 2000-05-12 13:58:25 +00:00
parent 5160a5db0a
commit 3383e8b828
3 changed files with 389 additions and 342 deletions

723
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -668,6 +668,7 @@ if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha"
then then
AC_CHECK_LIB(bsd, main) AC_CHECK_LIB(bsd, main)
fi fi
AC_CHECK_LIB(util, main)
AC_CHECK_LIB(m, main) AC_CHECK_LIB(m, main)
AC_CHECK_LIB(dl, main) AC_CHECK_LIB(dl, main)
AC_CHECK_LIB(socket, main) AC_CHECK_LIB(socket, main)
@ -778,7 +779,7 @@ AC_FUNC_MEMCMP
AC_TYPE_SIGNAL AC_TYPE_SIGNAL
AC_FUNC_VPRINTF AC_FUNC_VPRINTF
AC_CHECK_FUNCS(memmove sysconf) AC_CHECK_FUNCS(memmove sysconf)
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt) AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt setproctitle)
AC_CHECK_FUNCS(fpclass fp_class fp_class_d class) AC_CHECK_FUNCS(fpclass fp_class fp_class_d class)
dnl We use our snprintf.c emulation if either snprintf() or vsnprintf() dnl We use our snprintf.c emulation if either snprintf() or vsnprintf()
dnl is missing. Yes, there are machines that have only one. dnl is missing. Yes, there are machines that have only one.

View File

@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your * or in config.h afterwards. Of course, if you edit config.h, then your
* changes will be overwritten the next time you run configure. * changes will be overwritten the next time you run configure.
* *
* $Id: config.h.in,v 1.112 2000/04/14 03:05:35 tgl Exp $ * $Id: config.h.in,v 1.113 2000/05/12 13:58:25 scrappy Exp $
*/ */
#ifndef CONFIG_H #ifndef CONFIG_H
@ -302,6 +302,9 @@
/* default path for the location of the odbcinst.ini file */ /* default path for the location of the odbcinst.ini file */
#undef ODBCINST #undef ODBCINST
/* Define if you have the setproctitle function. */
#undef HAVE_SETPROCTITLE
/* Define if you have the stricmp function. */ /* Define if you have the stricmp function. */
#undef HAVE_STRICMP #undef HAVE_STRICMP