mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 23:58:54 +02:00
Use hardcoded name for DLL, as there is no reliable way to determine it at
2003-09-29 Tor Lillqvist <tml@iki.fi> * tests/testglib.c (main): Use hardcoded name for DLL, as there is no reliable way to determine it at compile or run time anyway.
This commit is contained in:
committed by
Tor Lillqvist
parent
712c9d672e
commit
b514888d16
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-29 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* tests/testglib.c (main): Use hardcoded name for DLL, as there is
|
||||||
|
no reliable way to determine it at compile or run time anyway.
|
||||||
|
|
||||||
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-29 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* tests/testglib.c (main): Use hardcoded name for DLL, as there is
|
||||||
|
no reliable way to determine it at compile or run time anyway.
|
||||||
|
|
||||||
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-29 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* tests/testglib.c (main): Use hardcoded name for DLL, as there is
|
||||||
|
no reliable way to determine it at compile or run time anyway.
|
||||||
|
|
||||||
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-29 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* tests/testglib.c (main): Use hardcoded name for DLL, as there is
|
||||||
|
no reliable way to determine it at compile or run time anyway.
|
||||||
|
|
||||||
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-29 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* tests/testglib.c (main): Use hardcoded name for DLL, as there is
|
||||||
|
no reliable way to determine it at compile or run time anyway.
|
||||||
|
|
||||||
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-29 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* tests/testglib.c (main): Use hardcoded name for DLL, as there is
|
||||||
|
no reliable way to determine it at compile or run time anyway.
|
||||||
|
|
||||||
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
2003-09-29 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
* glib/guniprop.c (g_unichar_get_mirror_char): Add "Since: 2.4"
|
||||||
|
@@ -401,16 +401,11 @@ main (int argc,
|
|||||||
GError *error;
|
GError *error;
|
||||||
char *name_used;
|
char *name_used;
|
||||||
#ifdef G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
gchar *glib_dll = g_strdup_printf ("libglib-%d.%d-%d.dll",
|
/* Can't calculate GLib DLL name at runtime. */
|
||||||
GLIB_MAJOR_VERSION,
|
gchar *glib_dll = "libglib-2.0-0.dll";
|
||||||
GLIB_MINOR_VERSION,
|
|
||||||
GLIB_MICRO_VERSION - GLIB_BINARY_AGE);
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef G_WITH_CYGWIN
|
#ifdef G_WITH_CYGWIN
|
||||||
gchar *glib_dll = g_strdup_printf ("cygglib-%d.%d-%d.dll",
|
gchar *glib_dll = "cygglib-2.0-0.dll";
|
||||||
GLIB_MAJOR_VERSION,
|
|
||||||
GLIB_MINOR_VERSION,
|
|
||||||
GLIB_MICRO_VERSION - GLIB_BINARY_AGE);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
|
g_print ("TestGLib v%u.%u.%u (i:%u b:%u)\n",
|
||||||
|
Reference in New Issue
Block a user