File tree Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Expand file tree Collapse file tree 4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change @@ -7943,7 +7943,8 @@ done
7943
7943
7944
7944
7945
7945
7946
- for ac_header in crypt.h dld.h fp_class.h getopt.h ieeefp.h langinfo.h poll.h pwd.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/socket.h sys/shm.h sys/time.h sys/un.h termios.h utime.h wchar.h wctype.h kernel/OS.h kernel/image.h SupportDefs.h
7946
+
7947
+ for ac_header in crypt.h dld.h fp_class.h getopt.h ieeefp.h langinfo.h poll.h pwd.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/socket.h sys/shm.h sys/tas.h sys/time.h sys/un.h termios.h utime.h wchar.h wctype.h kernel/OS.h kernel/image.h SupportDefs.h
7947
7948
do
7948
7949
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7949
7950
if eval "test \"\${$as_ac_Header+set}\" = set"; then
Original file line number Diff line number Diff line change 1
1
dnl Process this file with autoconf to produce a configure script.
2
- dnl $PostgreSQL: pgsql/configure.in,v 1.513 2007/04/21 18:26:44 petere Exp $
2
+ dnl $PostgreSQL: pgsql/configure.in,v 1.514 2007/05/04 15:20:52 tgl Exp $
3
3
dnl
4
4
dnl Developers, please strive to achieve this order:
5
5
dnl
794
794
##
795
795
796
796
dnl sys/socket.h is required by AC_FUNC_ACCEPT_ARGTYPES
797
- AC_CHECK_HEADERS([crypt.h dld.h fp_class.h getopt.h ieeefp.h langinfo.h poll.h pwd.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/socket.h sys/shm.h sys/time.h sys/un.h termios.h utime.h wchar.h wctype.h kernel/OS.h kernel/image.h SupportDefs.h])
797
+ AC_CHECK_HEADERS([crypt.h dld.h fp_class.h getopt.h ieeefp.h langinfo.h poll.h pwd.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/socket.h sys/shm.h sys/tas.h sys/ time.h sys/un.h termios.h utime.h wchar.h wctype.h kernel/OS.h kernel/image.h SupportDefs.h])
798
798
799
799
# At least on IRIX, cpp test for netinet/tcp.h will fail unless
800
800
# netinet/in.h is included first.
Original file line number Diff line number Diff line change 495
495
/* Define to 1 if you have the <sys/stat.h> header file. */
496
496
#undef HAVE_SYS_STAT_H
497
497
498
+ /* Define to 1 if you have the <sys/tas.h> header file. */
499
+ #undef HAVE_SYS_TAS_H
500
+
498
501
/* Define to 1 if you have the <sys/time.h> header file. */
499
502
#undef HAVE_SYS_TIME_H
500
503
644
647
/* Define to 1 to build with XML support. (--with-libxml) */
645
648
#undef USE_LIBXML
646
649
650
+ /* Define to 1 to build with XSLT support. (--with-libxslt) */
651
+ #undef USE_LIBXSLT
652
+
647
653
/* Define to select named POSIX semaphores. */
648
654
#undef USE_NAMED_POSIX_SEMAPHORES
649
655
Original file line number Diff line number Diff line change 66
66
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
67
67
* Portions Copyright (c) 1994, Regents of the University of California
68
68
*
69
- * $PostgreSQL: pgsql/src/include/storage/s_lock.h,v 1.158 2007/01/05 22:19:58 momjian Exp $
69
+ * $PostgreSQL: pgsql/src/include/storage/s_lock.h,v 1.159 2007/05/04 15:20:52 tgl Exp $
70
70
*
71
71
*-------------------------------------------------------------------------
72
72
*/
@@ -556,6 +556,18 @@ do \
556
556
#endif /* __mips__ && !__sgi */
557
557
558
558
559
+ #if defined(__m32r__ ) && defined(HAVE_SYS_TAS_H ) /* Renesas' M32R */
560
+ #define HAS_TEST_AND_SET
561
+
562
+ #include <sys/tas.h>
563
+
564
+ typedef int slock_t ;
565
+
566
+ #define TAS (lock ) tas(lock)
567
+
568
+ #endif /* __m32r__ */
569
+
570
+
559
571
/* These live in s_lock.c, but only for gcc */
560
572
561
573
You can’t perform that action at this time.
0 commit comments