Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a927d6e

Browse files
committed
configure cleanup
1 parent d0634ac commit a927d6e

File tree

4 files changed

+167
-226
lines changed

4 files changed

+167
-226
lines changed

doc/README.NT

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ It can be done by done by typing configure, make and make install.
1919
(This may be optional.)
2020

2121
1. Download the Cygwin32 IPC Package by Ludovic LANGE
22-
(http://www.multione.capgemini.fr/tools/pack_ipc/
22+
http://www.multione.capgemini.fr:80/tools/pack_ipc/current.tar.gz
2323
2. Untar the package and follow the readme instructions.
2424
3. I tested 1.03.
2525
4. I used the \cygwin-b20\h-i568-cygwin32\i586-cygwin32\lib and

src/backend/commands/async.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
* IDENTIFICATION
9-
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.52 1999/07/17 20:16:50 momjian Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.53 1999/07/18 18:03:49 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -510,7 +510,6 @@ AtCommit_Notify()
510510
* signal first, because the other guy can't read
511511
* pg_listener until we unlock it.
512512
*/
513-
#ifdef HAVE_KILL
514513
if (kill(listenerPID, SIGUSR2) < 0)
515514
{
516515

@@ -526,7 +525,6 @@ AtCommit_Notify()
526525
heap_delete(lRel, &lTuple->t_self, NULL);
527526
}
528527
else
529-
#endif
530528
{
531529
d = heap_getattr(lTuple, Anum_pg_listener_notify,
532530
tdesc, &isnull);

src/configure.in

+1-8
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,6 @@ AC_CHECK_HEADERS(crypt.h)
581581
AC_CHECK_HEADERS(dld.h)
582582
AC_CHECK_HEADERS(endian.h)
583583
AC_CHECK_HEADERS(float.h)
584-
AC_CHECK_HEADERS(fp_class.h)
585584
AC_CHECK_HEADERS(history.h)
586585
AC_CHECK_HEADERS(ieeefp.h)
587586
AC_CHECK_HEADERS(limits.h)
@@ -664,8 +663,7 @@ dnl Checks for library functions.
664663
AC_FUNC_MEMCMP
665664
AC_TYPE_SIGNAL
666665
AC_FUNC_VPRINTF
667-
AC_CHECK_FUNCS(tzset memmove sigsetjmp kill sysconf fpclass)
668-
AC_CHECK_FUNCS(fp_class fp_class_d class)
666+
AC_CHECK_FUNCS(memmove sigsetjmp sysconf)
669667
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt)
670668
dnl We use our snprintf.c emulation if either snprintf() or vsnprintf()
671669
dnl is missing. Yes, there are machines that have only one.
@@ -716,11 +714,6 @@ AC_CHECK_FUNC(inet_aton,
716714
AC_DEFINE(HAVE_INET_ATON),
717715
INET_ATON='inet_aton.o')
718716
AC_SUBST(INET_ATON)
719-
AC_CHECK_FUNC(strerror,
720-
AC_DEFINE(HAVE_STRERROR),
721-
[STRERROR='strerror.o' STRERROR2='../../backend/port/strerror.o'])
722-
AC_SUBST(STRERROR)
723-
AC_SUBST(STRERROR2)
724717
AC_CHECK_FUNC(strdup,
725718
AC_DEFINE(HAVE_STRDUP),
726719
STRDUP='../../utils/strdup.o')

0 commit comments

Comments
 (0)