summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorHans Breuer <hans@breuer.org>2004-10-29 20:58:04 +0000
committerHans Breuer <hans@src.gnome.org>2004-10-29 20:58:04 +0000
commitaa410edee6042a526559f0c534072013252cce52 (patch)
treec27d0131e9bfa62fcde8ec68a8e1049b82871cb9 /gmodule
parentdd028d11f6ab98cd41045957160d5ee4e6f74047 (diff)
downloadglib-aa410edee6042a526559f0c534072013252cce52.tar.gz
updated [and finally fixed my script to produce ready to go de-in(ed)
2004-10-29 Hans Breuer <hans@breuer.org> * glibconfig.h */makefile.msc.in : updated [and finally fixed my script to produce ready to go de-in(ed) files, w/o autotools] * */*.rc.in : updated copyrights to 2004 * glib/gutils.c : some CSIDL_* defines lacking from older SDK; use the same fallback mecahnism as on *NIX where ever applicable
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/gmodule.rc.in2
-rw-r--r--gmodule/makefile.msc.in7
2 files changed, 6 insertions, 3 deletions
diff --git a/gmodule/gmodule.rc.in b/gmodule/gmodule.rc.in
index 757ce5204..0a3ae0a83 100644
--- a/gmodule/gmodule.rc.in
+++ b/gmodule/gmodule.rc.in
@@ -17,7 +17,7 @@ VS_VERSION_INFO VERSIONINFO
VALUE "FileDescription", "GModule"
VALUE "FileVersion", "@GLIB_VERSION@.BUILDNUMBER"
VALUE "InternalName", "libgmodule-2.0-@LT_CURRENT_MINUS_AGE@"
- VALUE "LegalCopyright", "Copyright © 1998-2000 Tim Janik. Modified by the GLib Team and others 1998-2000."
+ VALUE "LegalCopyright", "Copyright © 1998-2000 Tim Janik. Modified by the GLib Team and others 1998-2004."
VALUE "OriginalFilename", "libgmodule-2.0-@LT_CURRENT_MINUS_AGE@.dll"
VALUE "ProductName", "GLib"
VALUE "ProductVersion", "@GLIB_VERSION@"
diff --git a/gmodule/makefile.msc.in b/gmodule/makefile.msc.in
index a81916974..da365116b 100644
--- a/gmodule/makefile.msc.in
+++ b/gmodule/makefile.msc.in
@@ -20,8 +20,11 @@ gmodule_OBJECTS = \
gmoduleconf.h: gmoduleconf.h.win32
copy gmoduleconf.h.win32 gmoduleconf.h
-libgmodule-2.0-@LT_CURRENT_MINUS_AGE@.dll : $(gmodule_OBJECTS) gmodule.def
- $(CC) $(CFLAGS) -LD -Fe$@ $(gmodule_OBJECTS) \
+gmodule.res : gmodule.rc
+ rc -DBUILDNUMBER=0 -r -fo gmodule.res gmodule.rc
+
+libgmodule-2.0-@LT_CURRENT_MINUS_AGE@.dll : $(gmodule_OBJECTS) gmodule.def gmodule.res
+ $(CC) $(CFLAGS) -LD -Fe$@ $(gmodule_OBJECTS) gmodule.res \
..\glib\glib-2.0.lib $(LDFLAGS) /implib:gmodule-2.0.lib /def:gmodule.def
clean::