• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Windows System Libraries


Commit MetaInfo

修订版f7acd836c7ba906025ccc6860104d77946089336 (tree)
时间2013-09-15 00:42:24
作者Earnie Boyd <earnie@user...>
CommiterEarnie Boyd

Log Message

The DLL name for winspool is actually winspool.drv.

更改概述

差异

--- 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))