Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdc7aa36

Browse files
committed
Force use of our erand48 on Cygwin
1 parent0d6909e commitdc7aa36

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

‎configure

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19085,6 +19085,16 @@ esac
1908519085

1908619086
fi
1908719087

19088+
# Cygwin's erand48 sometimes hangs, so force use of ours
19089+
if test "$PORTNAME" = "cygwin"; then
19090+
case " $LIBOBJS " in
19091+
*" erand48.$ac_objext "* ) ;;
19092+
*) LIBOBJS="$LIBOBJS erand48.$ac_objext"
19093+
;;
19094+
esac
19095+
19096+
fi
19097+
1908819098
# Win32 support
1908919099
if test "$PORTNAME" = "win32"; then
1909019100

‎configure.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.605 2009/07/16 17:43:52 tgl Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.606 2009/07/23 23:50:29 adunstan Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -1289,6 +1289,11 @@ if test "$PORTNAME" = "solaris"; then
12891289
AC_LIBOBJ(getopt)
12901290
fi
12911291

1292+
# Cygwin's erand48 sometimes hangs, so force use of ours
1293+
if test "$PORTNAME" = "cygwin"; then
1294+
AC_LIBOBJ(erand48)
1295+
fi
1296+
12921297
# Win32 support
12931298
if test "$PORTNAME" = "win32"; then
12941299
AC_REPLACE_FUNCS(gettimeofday)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp