Commit a927d6ea authored by Bruce Momjian's avatar Bruce Momjian

configure cleanup

parent d0634aca
...@@ -19,7 +19,7 @@ It can be done by done by typing configure, make and make install. ...@@ -19,7 +19,7 @@ It can be done by done by typing configure, make and make install.
(This may be optional.) (This may be optional.)
1. Download the Cygwin32 IPC Package by Ludovic LANGE 1. Download the Cygwin32 IPC Package by Ludovic LANGE
(http://www.multione.capgemini.fr/tools/pack_ipc/ http://www.multione.capgemini.fr:80/tools/pack_ipc/current.tar.gz
2. Untar the package and follow the readme instructions. 2. Untar the package and follow the readme instructions.
3. I tested 1.03. 3. I tested 1.03.
4. I used the \cygwin-b20\h-i568-cygwin32\i586-cygwin32\lib and 4. I used the \cygwin-b20\h-i568-cygwin32\i586-cygwin32\lib and
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.52 1999/07/17 20:16:50 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.53 1999/07/18 18:03:49 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -510,7 +510,6 @@ AtCommit_Notify() ...@@ -510,7 +510,6 @@ AtCommit_Notify()
* signal first, because the other guy can't read * signal first, because the other guy can't read
* pg_listener until we unlock it. * pg_listener until we unlock it.
*/ */
#ifdef HAVE_KILL
if (kill(listenerPID, SIGUSR2) < 0) if (kill(listenerPID, SIGUSR2) < 0)
{ {
...@@ -526,7 +525,6 @@ AtCommit_Notify() ...@@ -526,7 +525,6 @@ AtCommit_Notify()
heap_delete(lRel, &lTuple->t_self, NULL); heap_delete(lRel, &lTuple->t_self, NULL);
} }
else else
#endif
{ {
d = heap_getattr(lTuple, Anum_pg_listener_notify, d = heap_getattr(lTuple, Anum_pg_listener_notify,
tdesc, &isnull); tdesc, &isnull);
......
...@@ -581,7 +581,6 @@ AC_CHECK_HEADERS(crypt.h) ...@@ -581,7 +581,6 @@ AC_CHECK_HEADERS(crypt.h)
AC_CHECK_HEADERS(dld.h) AC_CHECK_HEADERS(dld.h)
AC_CHECK_HEADERS(endian.h) AC_CHECK_HEADERS(endian.h)
AC_CHECK_HEADERS(float.h) AC_CHECK_HEADERS(float.h)
AC_CHECK_HEADERS(fp_class.h)
AC_CHECK_HEADERS(history.h) AC_CHECK_HEADERS(history.h)
AC_CHECK_HEADERS(ieeefp.h) AC_CHECK_HEADERS(ieeefp.h)
AC_CHECK_HEADERS(limits.h) AC_CHECK_HEADERS(limits.h)
...@@ -664,8 +663,7 @@ dnl Checks for library functions. ...@@ -664,8 +663,7 @@ dnl Checks for library functions.
AC_FUNC_MEMCMP AC_FUNC_MEMCMP
AC_TYPE_SIGNAL AC_TYPE_SIGNAL
AC_FUNC_VPRINTF AC_FUNC_VPRINTF
AC_CHECK_FUNCS(tzset memmove sigsetjmp kill sysconf fpclass) AC_CHECK_FUNCS(memmove sigsetjmp sysconf)
AC_CHECK_FUNCS(fp_class fp_class_d class)
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt) AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt)
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.
...@@ -716,11 +714,6 @@ AC_CHECK_FUNC(inet_aton, ...@@ -716,11 +714,6 @@ AC_CHECK_FUNC(inet_aton,
AC_DEFINE(HAVE_INET_ATON), AC_DEFINE(HAVE_INET_ATON),
INET_ATON='inet_aton.o') INET_ATON='inet_aton.o')
AC_SUBST(INET_ATON) AC_SUBST(INET_ATON)
AC_CHECK_FUNC(strerror,
AC_DEFINE(HAVE_STRERROR),
[STRERROR='strerror.o' STRERROR2='../../backend/port/strerror.o'])
AC_SUBST(STRERROR)
AC_SUBST(STRERROR2)
AC_CHECK_FUNC(strdup, AC_CHECK_FUNC(strdup,
AC_DEFINE(HAVE_STRDUP), AC_DEFINE(HAVE_STRDUP),
STRDUP='../../utils/strdup.o') STRDUP='../../utils/strdup.o')
......
This diff is collapsed.
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