summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/ChangeLog7
-rw-r--r--winsup/cygwin/Makefile.in2
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9e9422e9a..8c8dc9047 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 9 18:59:41 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * Makefile.in: Use appropriate VARIABLE to refer to cygwin.def in load
+ line.
+
Thu May 9 23:53:00 2000 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::puts_readahead): Change
@@ -7,7 +12,7 @@ Thu May 9 15:24:00 2000 Corinna Vinschen <corinna@vinschen.de>
Patch suggested by <lha@stacken.kth.se>
* window.cc (setitimer): Check for overflow condition
- in tv_sec.
+ in tv_sec.
Thu May 9 0:47:00 2000 Corinna Vinschen <corinna@vinschen.de>
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 609c119c5..70c336f0e 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -180,7 +180,7 @@ new-$(LIB_NAME): $(DEF_FILE) $(LIBCOS)
# Rule to build cygwin.dll
new-$(DLL_NAME): $(DLL_OFILES) $(DEF_FILE) $(DLL_IMPORTS) $(LIBC) $(LIBM) Makefile winver_stamp
- $(LD) -shared -o $@ -e $(DLL_ENTRY) cygwin.def $(DLL_OFILES) version.o \
+ $(LD) -shared -o $@ -e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o \
winver.o $(DLL_IMPORTS) $(LIBM) $(LIBGCC) $(MALLOC_OBJ) $(LIBC) $(LIBGCC)
dll_ofiles: $(DLL_OFILES)