File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -19085,6 +19085,16 @@ esac
19085
19085
19086
19086
fi
19087
19087
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
+
19088
19098
# Win32 support
19089
19099
if test "$PORTNAME" = "win32"; then
19090
19100
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.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 $
3
3
dnl
4
4
dnl Developers, please strive to achieve this order:
5
5
dnl
@@ -1289,6 +1289,11 @@ if test "$PORTNAME" = "solaris"; then
1289
1289
AC_LIBOBJ(getopt)
1290
1290
fi
1291
1291
1292
+ # Cygwin's erand48 sometimes hangs, so force use of ours
1293
+ if test "$PORTNAME" = "cygwin"; then
1294
+ AC_LIBOBJ(erand48)
1295
+ fi
1296
+
1292
1297
# Win32 support
1293
1298
if test "$PORTNAME" = "win32"; then
1294
1299
AC_REPLACE_FUNCS(gettimeofday)
You can’t perform that action at this time.
0 commit comments