File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -12067,7 +12067,7 @@ esac
12067
12067
12068
12068
fi
12069
12069
12070
- # Win32 support
12070
+ # Win32 (really MinGW) support
12071
12071
if test " $PORTNAME " = " win32" ; then
12072
12072
ac_fn_c_check_func " $LINENO " " gettimeofday" " ac_cv_func_gettimeofday"
12073
12073
if test " x$ac_cv_func_gettimeofday " = xyes; then :
@@ -12154,6 +12154,16 @@ else
12154
12154
12155
12155
fi
12156
12156
12157
+ # Cygwin needs only a bit of that
12158
+ if test " $PORTNAME " = " cygwin" ; then
12159
+ case " $LIBOBJS " in
12160
+ * " dirmod.$ac_objext " * ) ;;
12161
+ * ) LIBOBJS=" $LIBOBJS dirmod.$ac_objext "
12162
+ ;;
12163
+ esac
12164
+
12165
+ fi
12166
+
12157
12167
{ $as_echo " $as_me :${as_lineno-$LINENO } : checking for sigsetjmp" >&5
12158
12168
$as_echo_n " checking for sigsetjmp... " >&6 ; }
12159
12169
if ${pgac_cv_func_sigsetjmp+: } false ; then :
Original file line number Diff line number Diff line change @@ -1436,7 +1436,7 @@ if test "$PORTNAME" = "win32"; then
1436
1436
AC_LIBOBJ(getopt_long)
1437
1437
fi
1438
1438
1439
- # Win32 support
1439
+ # Win32 (really MinGW) support
1440
1440
if test "$PORTNAME" = "win32"; then
1441
1441
AC_REPLACE_FUNCS(gettimeofday)
1442
1442
AC_LIBOBJ(dirmod)
@@ -1460,6 +1460,11 @@ else
1460
1460
AC_SUBST(have_win32_dbghelp,no)
1461
1461
fi
1462
1462
1463
+ # Cygwin needs only a bit of that
1464
+ if test "$PORTNAME" = "cygwin"; then
1465
+ AC_LIBOBJ(dirmod)
1466
+ fi
1467
+
1463
1468
dnl Cannot use AC_CHECK_FUNC because sigsetjmp may be a macro
1464
1469
dnl (especially on GNU libc)
1465
1470
dnl See also comments in c.h.
You can’t perform that action at this time.
0 commit comments