File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -11973,7 +11973,7 @@ esac
11973
11973
11974
11974
fi
11975
11975
11976
- # Win32 support
11976
+ # Win32 (really MinGW) support
11977
11977
if test " $PORTNAME " = " win32" ; then
11978
11978
ac_fn_c_check_func " $LINENO " " gettimeofday" " ac_cv_func_gettimeofday"
11979
11979
if test " x$ac_cv_func_gettimeofday " = xyes; then :
@@ -12060,6 +12060,16 @@ else
12060
12060
12061
12061
fi
12062
12062
12063
+ # Cygwin needs only a bit of that
12064
+ if test " $PORTNAME " = " cygwin" ; then
12065
+ case " $LIBOBJS " in
12066
+ * " dirmod.$ac_objext " * ) ;;
12067
+ * ) LIBOBJS=" $LIBOBJS dirmod.$ac_objext "
12068
+ ;;
12069
+ esac
12070
+
12071
+ fi
12072
+
12063
12073
{ $as_echo " $as_me :${as_lineno-$LINENO } : checking for sigsetjmp" >&5
12064
12074
$as_echo_n " checking for sigsetjmp... " >&6 ; }
12065
12075
if ${pgac_cv_func_sigsetjmp+: } false ; then :
Original file line number Diff line number Diff line change @@ -1451,7 +1451,7 @@ if test "$PORTNAME" = "win32"; then
1451
1451
AC_LIBOBJ(getopt_long)
1452
1452
fi
1453
1453
1454
- # Win32 support
1454
+ # Win32 (really MinGW) support
1455
1455
if test "$PORTNAME" = "win32"; then
1456
1456
AC_REPLACE_FUNCS(gettimeofday)
1457
1457
AC_LIBOBJ(dirmod)
@@ -1475,6 +1475,11 @@ else
1475
1475
AC_SUBST(have_win32_dbghelp,no)
1476
1476
fi
1477
1477
1478
+ # Cygwin needs only a bit of that
1479
+ if test "$PORTNAME" = "cygwin"; then
1480
+ AC_LIBOBJ(dirmod)
1481
+ fi
1482
+
1478
1483
dnl Cannot use AC_CHECK_FUNC because sigsetjmp may be a macro
1479
1484
dnl (especially on GNU libc)
1480
1485
dnl See also comments in c.h.
You can’t perform that action at this time.
0 commit comments