• R/O
  • HTTP
  • SSH
  • HTTPS

mingw-org-wsl: Commit

The MinGW.OSDN Windows System Libraries. Formerly designated as "MinGW.org Windows System Libraries", this encapsulates the "mingwrt" C runtime library extensions, and the "w32api" 32-bit MS-Windows API libraries.

Please note that this project no longer owns the "MinGW.org" domain name; any software which may be distributed from that domain is NOT supported by this project.


Commit MetaInfo

Révisionf7acd836c7ba906025ccc6860104d77946089336 (tree)
l'heure2013-09-15 00:42:24
AuteurEarnie Boyd <earnie@user...>
CommiterEarnie Boyd

Message de Log

The DLL name for winspool is actually winspool.drv.

Change Summary

Modification

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
1+2013-09-14 Earnie Boyd <earnie@users.sourceforge.net>
2+
3+ The winspool DLL name is actually winspool.drv.
4+
5+ * Makefile.in: Conditionalize the DLL name specification for
6+ libwinspool.a.
7+
18 2013-08-01 Earnie Boyd <earnie@users.sourceforge.net>
29
310 Correct typo causing errors under some conditions.
--- a/Makefile.in
+++ b/Makefile.in
@@ -686,7 +686,11 @@ $(moldname_DEF): lib/lib32/moldname.def.in
686686 SRCDIR := lib/lib32
687687 $(notdir $(winapi_lib_LIBRARIES)): $(addprefix lib/lib32/,$(winapi_DEF))
688688 @echo Making library $@ from $(subst lib,,$(@:.a=.def)).
689- $(DLLTOOL) $(DLLTOOL_FLAGS) $(subst lib,,$(@:.a=.dll)) --def $(addprefix $(top_srcdir)/lib/lib32/,$(subst lib,,$(@:.a=.def))) --output-lib $@
689+ if test $@ = libwinspool.a; then \
690+ $(DLLTOOL) $(DLLTOOL_FLAGS) $(subst lib,,$(@:.a=.drv)) --def $(addprefix $(top_srcdir)/lib/lib32/,$(subst lib,,$(@:.a=.def))) --output-lib $@ ; \
691+ else \
692+ $(DLLTOOL) $(DLLTOOL_FLAGS) $(subst lib,,$(@:.a=.dll)) --def $(addprefix $(top_srcdir)/lib/lib32/,$(subst lib,,$(@:.a=.def))) --output-lib $@ ; \
693+ fi
690694 $(RANLIB) $@
691695
692696 $(notdir $(winapi_mri_LIBRARIES)): $(addprefix lib/lib32/,$(winapi_MRI))
Afficher sur ancien navigateur de dépôt.