diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2020-09-25 20:59:14 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2020-10-14 15:04:17 +0100 |
commit | 08e7ee19122a7d2ce1a5caf5fd065ac1e36a6838 (patch) | |
tree | ddcade86a018a27f1fc8f416c304d80d103cc345 /winsup/cygserver | |
parent | 3fd14da2c36f32a6a8d5b8f2f6ed6fc38b9e90e3 (diff) | |
download | newlib-08e7ee19122a7d2ce1a5caf5fd065ac1e36a6838.zip newlib-08e7ee19122a7d2ce1a5caf5fd065ac1e36a6838.tar.gz newlib-08e7ee19122a7d2ce1a5caf5fd065ac1e36a6838.tar.bz2 |
Cygwin: Drop looking for w32api in winsup/w32api
Stop looking for w32api headers in the (no longer existent)
winsup/w32api directory (removed in commit 61746d6ae850).
Diffstat (limited to 'winsup/cygserver')
-rw-r--r-- | winsup/cygserver/aclocal.m4 | 2 | ||||
-rwxr-xr-x | winsup/cygserver/configure | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygserver/aclocal.m4 b/winsup/cygserver/aclocal.m4 index 5bf14e5..4c04161 100644 --- a/winsup/cygserver/aclocal.m4 +++ b/winsup/cygserver/aclocal.m4 @@ -64,8 +64,6 @@ if test -n "$with_windows_headers"; then else AC_MSG_ERROR([cannot find windef.h in specified --with-windows-headers path: $saw_windows_headers]); fi -elif test -d "$winsup_srcdir/w32api/include/windef.h"; then - windows_headers="$winsup_srcdir/w32api/include" else windows_headers=$(cd $($ac_cv_prog_CC -xc /dev/null -E -include windef.h 2>/dev/null | sed -n 's%^# 1 "\([^"]*\)/windef\.h".*$%\1%p' | head -n1) 2>/dev/null && pwd) if test -z "$windows_headers" -o ! -d "$windows_headers"; then diff --git a/winsup/cygserver/configure b/winsup/cygserver/configure index 71d1592..6de9ed0 100755 --- a/winsup/cygserver/configure +++ b/winsup/cygserver/configure @@ -3431,8 +3431,6 @@ if test -n "$with_windows_headers"; then else as_fn_error $? "cannot find windef.h in specified --with-windows-headers path: $saw_windows_headers" "$LINENO" 5; fi -elif test -d "$winsup_srcdir/w32api/include/windef.h"; then - windows_headers="$winsup_srcdir/w32api/include" else windows_headers=$(cd $($ac_cv_prog_CC -xc /dev/null -E -include windef.h 2>/dev/null | sed -n 's%^# 1 "\([^"]*\)/windef\.h".*$%\1%p' | head -n1) 2>/dev/null && pwd) if test -z "$windows_headers" -o ! -d "$windows_headers"; then |