From 9261a091585d42822349d1995ce0d729708433ab Mon Sep 17 00:00:00 2001 From: Tony Nicholson Date: Thu, 28 Feb 2019 18:59:47 +1100 Subject: [PATCH] makefile: Fix case-sensitive pathname for cygwin 3.0.x with Windows 10 WSL enabled Windows 10 1803 or later NTFS filenames are set to be case-sensitive if the Windows Subsystem for Linux (WSL) feature is turned-on. This was causing a build under cygwin 3.0.1 to fail detecting the libpcap header and library locations in the ../windows-build/libpcap directory. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 6cf875b6..974b9dec 100644 --- a/makefile +++ b/makefile @@ -338,8 +338,8 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin) else ifeq (cygwin,$(OSTYPE)) # use 0readme_ethernet.txt documented Windows pcap build components - INCPATH += ../windows-build/winpcap/WpdPack/include - LIBPATH += ../windows-build/winpcap/WpdPack/lib + INCPATH += ../windows-build/winpcap/WpdPack/Include + LIBPATH += ../windows-build/winpcap/WpdPack/Lib PCAPLIB = wpcap LIBEXT = a else