summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-03-15 14:14:24 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2015-03-15 14:14:24 -0400
commit80089597730f67927293c410914f3e6bf11ca447 (patch)
tree0583752f65b29698eb5ec1633792bb1e0a02420d /configure
parentd1e9214e4ff5604357d0155467f105825a9e102c (diff)
downloadpostgresql-80089597730f67927293c410914f3e6bf11ca447.tar.gz
src/port/dirmod.c needs to be built on Cygwin too.
Oversight in my commit 91f4a5a976500517e492320e389342d7436cf9d4. Per buildfarm member brolga.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 11 insertions, 1 deletions
diff --git a/configure b/configure
index ddbda1cddf..379dab16ab 100755
--- a/configure
+++ b/configure
@@ -12067,7 +12067,7 @@ esac
fi
-# Win32 support
+# Win32 (really MinGW) support
if test "$PORTNAME" = "win32"; then
ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday"
if test "x$ac_cv_func_gettimeofday" = xyes; then :
@@ -12154,6 +12154,16 @@ else
fi
+# Cygwin needs only a bit of that
+if test "$PORTNAME" = "cygwin"; then
+ case " $LIBOBJS " in
+ *" dirmod.$ac_objext "* ) ;;
+ *) LIBOBJS="$LIBOBJS dirmod.$ac_objext"
+ ;;
+esac
+
+fi
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigsetjmp" >&5
$as_echo_n "checking for sigsetjmp... " >&6; }
if ${pgac_cv_func_sigsetjmp+:} false; then :