* Makefile.in (cygpath.exe): Link against cygwin.a before linking
against ntdll.dll to avoid linking symbols defined in both DLLs from ntdll. (ps.exe): Ditto.
This commit is contained in:
parent
de8a5b7810
commit
48829c1d86
|
@ -1,3 +1,10 @@
|
||||||
|
2009-05-16 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* Makefile.in (cygpath.exe): Link against cygwin.a before linking
|
||||||
|
against ntdll.dll to avoid linking symbols defined in both DLLs
|
||||||
|
from ntdll.
|
||||||
|
(ps.exe): Ditto.
|
||||||
|
|
||||||
2009-05-15 Corinna Vinschen <corinna@vinschen.de>
|
2009-05-15 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygpath.cc (main): Only setlocale for LC_CTYPE category. Fallback
|
* cygpath.cc (main): Only setlocale for LC_CTYPE category. Fallback
|
||||||
|
|
|
@ -71,8 +71,8 @@ cygcheck.exe: bloda.o path.o dump_setup.o
|
||||||
|
|
||||||
# Provide any necessary per-target variable overrides.
|
# Provide any necessary per-target variable overrides.
|
||||||
cygcheck.exe: MINGW_LDFLAGS += -lntdll
|
cygcheck.exe: MINGW_LDFLAGS += -lntdll
|
||||||
cygpath.exe: ALL_LDFLAGS += -lntdll
|
cygpath.exe: ALL_LDFLAGS += -lcygwin -lntdll
|
||||||
ps.exe: ALL_LDFLAGS += -lntdll
|
ps.exe: ALL_LDFLAGS += -lcygwin -lntdll
|
||||||
|
|
||||||
ldd.exe: ALL_LDFLAGS += -lpsapi
|
ldd.exe: ALL_LDFLAGS += -lpsapi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue