diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-09-17 00:41:39 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-09-17 00:41:39 +0000 |
commit | 020b44f5ac1b27e26bbd6da4a6b4c466d36cad78 (patch) | |
tree | 5865da447ab5dbfe91dcfbaa6c15e93f30506b1d /glib/glib.rc.in | |
parent | 545a6a7616471a11c20d22f2ab1f2f4f621e99d1 (diff) | |
download | glib-020b44f5ac1b27e26bbd6da4a6b4c466d36cad78.tar.gz |
Add variable for LT_CURRENT minus LT_AGE (the suffix used by libtool on
2001-09-17 Tor Lillqvist <tml@iki.fi>
* configure.in: Add variable for LT_CURRENT minus LT_AGE (the
suffix used by libtool on Win32 for DLLs). Set variables for the
compiled resource files on Windows. Handle the native Win32
gthread stuff.
* glib/Makefile.am
* gmodule/Makefile.am
* gobject/Makefile.am: (Win32) Add minor hacks to link in the object
file produced from the resource file. Use the lt-compile-resource
script from the build module. The non-hack way would be to teach
libtool, autoconf and automake about .rc files (which are a kind
of source code, after all, that gets compiled to object
files). But then there would be problems for those who wouldn't have
bleeding edge auto* and libtool.
* glib/glib.def
* gobject/gobject.def: Updates.
* glib/glib.rc.in
* gmodule/gmodule.rc.in
* gobject/gobject.rc.in
* gthread/gthread.rc.in: Update InternalName and OriginalFilename to
match libtool's naming convention for DLLs.
* glib/gutils.c: Ditto when constructing the DLL name in the
definition for GLIB_LOCALE_DIR.
* glib/makefile.mingw.in
* gmodule/makefile.mingw.in
* gobject/makefile.mingw.in
* gthread/makefile.mingw.in: Update import library names.
Diffstat (limited to 'glib/glib.rc.in')
-rw-r--r-- | glib/glib.rc.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/glib.rc.in b/glib/glib.rc.in index 1e778c31c..03d410152 100644 --- a/glib/glib.rc.in +++ b/glib/glib.rc.in @@ -16,9 +16,9 @@ VS_VERSION_INFO VERSIONINFO VALUE "CompanyName", "The GLib developer community" VALUE "FileDescription", "GLib" VALUE "FileVersion", "@GLIB_VERSION@.BUILDNUMBER" - VALUE "InternalName", "glib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@" + VALUE "InternalName", "libglib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@-@LT_CURRENT_MINUS_AGE@" VALUE "LegalCopyright", "Copyright © 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald. Modified by the GLib Team and others 1997-2000." - VALUE "OriginalFilename", "glib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@.dll" + VALUE "OriginalFilename", "libglib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@-@LT_CURRENT_MINUS_AGE@.dll" VALUE "ProductName", "GLib" VALUE "ProductVersion", "@GLIB_VERSION@" END |