# HG changeset patch # User Markus Mützel # Date 1666441847 -7200 # Node ID 52ccba0f1af9cd779b788cca545895e1592953f3 # Parent 1c4e017664fd6488a265c0652bb3a7fb362807fb build: Use .def file for symbols exported from libexternal also for Cygwin. * configure.ac: Add Cygwin to the platforms that require linking with a .def file containing the symbols exported from the Fortran modules in libexternal. diff -r 1c4e017664fd -r 52ccba0f1af9 configure.ac --- a/configure.ac Sat Oct 22 13:33:54 2022 +0200 +++ b/configure.ac Sat Oct 22 14:30:47 2022 +0200 @@ -630,7 +630,7 @@ XTRA_EXTERNAL_SH_LDFLAGS= case $host_os in - msdosmsvc | mingw*) + msdosmsvc | mingw* | cygwin*) FLIBS="$FLIBS -lkernel32" XTRA_EXTERNAL_SH_LDFLAGS="-Wl,liboctave/external/external.def" ;;