Commit 3383e8b8 authored by Marc G. Fournier's avatar Marc G. Fournier

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

Don't do anything with them at this time, but am working on that ...
parent 5160a5db
This diff is collapsed.
...@@ -668,6 +668,7 @@ if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha" ...@@ -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 ...@@ -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.
......
...@@ -8,7 +8,7 @@ ...@@ -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 @@ ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment