diff options
author | Christopher Faylor <me@cgf.cx> | 2008-07-30 06:07:42 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-07-30 06:07:42 +0000 |
commit | e3e942ac0038ab67b1e2b67a7c7dcd200438f70a (patch) | |
tree | 6ca047c99bd9ee7792d53f4abc649c4fd023cf1f /winsup/utils/Makefile.in | |
parent | a010e6abed2c84e302823c4403ef3782b34bb6f1 (diff) | |
download | cygnal-e3e942ac0038ab67b1e2b67a7c7dcd200438f70a.tar.gz cygnal-e3e942ac0038ab67b1e2b67a7c7dcd200438f70a.tar.bz2 cygnal-e3e942ac0038ab67b1e2b67a7c7dcd200438f70a.zip |
* Makefile.in: Link cygcheck with -lntdll even without mingw-zlib.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r-- | winsup/utils/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index c4ec9e0c4..c8dd4c39d 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -71,6 +71,7 @@ strace.exe: path.o cygcheck.exe: bloda.o path.o dump_setup.o # Provide any necessary per-target variable overrides. +cygcheck.exe: MINGW_LDFLAGS += -lntdll cygpath.exe: ALL_LDFLAGS += -lntdll # Check for dumper's requirements and enable it if found. @@ -94,7 +95,7 @@ ifdef libz zlib_h := -include ${patsubst %/lib/mingw/libz.a,%/include/zlib.h,${patsubst %/lib/libz.a,%/include/zlib.h,$(libz)}} zconf_h := ${patsubst %/zlib.h,%/zconf.h,$(zlib_h)} dump_setup.o: MINGW_CXXFLAGS += $(zconf_h) $(zlib_h) -cygcheck.exe: MINGW_LDFLAGS += $(libz) -lntdll +cygcheck.exe: MINGW_LDFLAGS += $(libz) else all: warn_cygcheck_zlib endif @@ -172,7 +173,7 @@ warn_dumper: @echo '*** Not building dumper.exe since some required libraries are' @echo '*** missing: libbfd.a and libintl.a.' @echo '*** If you need this program, check out the naked-bfd and naked-intl' - @echo '*** sources from sources.redhat.com. Then, configure and build these' + @echo '*** sources from sourceware.org. Then, configure and build these' @echo '*** libraries. Otherwise, you can safely ignore this warning.' warn_cygcheck_zlib: |