diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2006-07-14 12:56:10 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2006-07-14 12:56:10 +0000 |
commit | ded1e0f3393bc9a55e2c81418c76b391752efc1d (patch) | |
tree | 76f3ff0739e3fe7dd46d1e854eb24a287544e3d1 | |
parent | bdd74c60b70f1175b869b53880145139b22a7bb4 (diff) | |
download | newlib-ded1e0f3393bc9a55e2c81418c76b391752efc1d.zip newlib-ded1e0f3393bc9a55e2c81418c76b391752efc1d.tar.gz newlib-ded1e0f3393bc9a55e2c81418c76b391752efc1d.tar.bz2 |
* Makefile.in (LIBS): Link against msvcrt.dll, too.
-rw-r--r-- | winsup/subauth/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/subauth/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/subauth/ChangeLog b/winsup/subauth/ChangeLog index 9518489..899a3b4 100644 --- a/winsup/subauth/ChangeLog +++ b/winsup/subauth/ChangeLog @@ -1,3 +1,7 @@ +2006-07-14 Corinna Vinschen <corinna@vinschen.de> + + * Makefile.in (LIBS): Link against msvcrt.dll, too. + 2006-05-24 Christopher Faylor <cgf@timesys.com> * configure.in: Update to newer autoconf. diff --git a/winsup/subauth/Makefile.in b/winsup/subauth/Makefile.in index ae64de4..15a8eb9 100644 --- a/winsup/subauth/Makefile.in +++ b/winsup/subauth/Makefile.in @@ -41,7 +41,7 @@ WIN32_CFLAGS := $(CFLAGS) $(WIN32_COMMON) $(WIN32_INCLUDES) WIN32_LDFLAGS := $(CFLAGS) $(WIN32_COMMON) -L$(mingw_build) -nostdlib -Wl,-shared STARTFILE := $(mingw_build)/dllcrt2.o -LIBS := -lmingw32 -lkernel32 +LIBS := -lmingw32 -lmsvcrt -lkernel32 DLL := cygsuba.dll DEF_FILE:= cygsuba.def |