mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Use G_OS_WIN32.
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32. * glib.def: Add g_thread_use_default_impl.
This commit is contained in:
parent
374c870b96
commit
1dc5f94cfa
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
@ -12,6 +12,10 @@
|
||||
|
||||
* build-dll: Don't strip.
|
||||
|
||||
* tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
|
||||
|
||||
* glib.def: Add g_thread_use_default_impl.
|
||||
|
||||
Sun Oct 3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
|
||||
|
1
glib.def
1
glib.def
@ -410,6 +410,7 @@ EXPORTS
|
||||
g_thread_join
|
||||
g_thread_self
|
||||
g_thread_set_priority
|
||||
g_thread_use_default_impl
|
||||
g_threads_got_initialized
|
||||
g_timeout_add
|
||||
g_timeout_add_full
|
||||
|
@ -410,6 +410,7 @@ EXPORTS
|
||||
g_thread_join
|
||||
g_thread_self
|
||||
g_thread_set_priority
|
||||
g_thread_use_default_impl
|
||||
g_threads_got_initialized
|
||||
g_timeout_add
|
||||
g_timeout_add_full
|
||||
|
@ -59,7 +59,7 @@ main (int argc,
|
||||
gchar *filename;
|
||||
gchar *dirname;
|
||||
} dirname_checks[] = {
|
||||
#ifndef NATIVE_WIN32
|
||||
#ifndef G_OS_WIN32
|
||||
{ "/", "/" },
|
||||
{ "////", "/" },
|
||||
{ ".////", "." },
|
||||
|
@ -103,7 +103,7 @@ main (int argc,
|
||||
g_assert((strlen("hi pete!") + 10000) == string1->len);
|
||||
g_assert((strlen("hi pete!") + 10000) == strlen(string1->str));
|
||||
|
||||
#ifndef NATIVE_WIN32
|
||||
#ifndef G_OS_WIN32
|
||||
/* MSVC and mingw32 use the same run-time C library, which doesn't like
|
||||
the %10000.10000f format... */
|
||||
g_string_sprintf (string2, "%s|%0100d|%s|%s|%0*d|%*.*f|%10000.10000f",
|
||||
|
Loading…
Reference in New Issue
Block a user