mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Cygwin support contributed by Stefan Ondrejicka <ondrej@idata.sk>.
2001-02-21 Tor Lillqvist <tml@iki.fi> Cygwin support contributed by Stefan Ondrejicka <ondrej@idata.sk>. Hopefully I got it all in while simultaneously adding support for auto*/libtool for mingw. * Makefile.am: Changes for auto* support on Cygwin and Win32. Do still distribute the hand-written makefiles and *.win32.in files, though. Use GIO, GSPAWN and PLATFORMDEP macros set by configure. Use -no-undefined. Pass -export-symbols glib.def to libtool. * configure.in: Define G_PLATFORM_WIN32 on both pure Win32 (mingw) and Cygwin. Add AC_CYGWIN, AC_EXEEXT and AC_LIBTOOL_WIN32_DLL calls for Cygwin and mingw support. Check for %I64u guint64 format (in MS C library). Set G_MODULE_IMPL on mingw and Cygwin. Use ac_object and ac_exeext. Set GIO, GSPAWN, PLATFORMDEP and G_LIBS_EXTRA. Compile timeloop only on Unix. Define OS_WIN32 automake conditional on Win32. * glib.h: Include gwin32.h also on Cygwin. * gfileutils.c (get_contents_posix): Use O_BINARY (defined as 0 on Unix) for Cygwin's sake. * gtimer.c (GETTIME): Reduce #ifdefs, use a macro GETTIME(). * gconvert.c * gthread.c * gutf8.c * gutils.c: For code needed both on Cygwin and native Win32, test for G_PLATFORM_WIN32. * gmarkup.h: Use G_BEGIN_DECLS and G_END_DECLS. * gtypes.h: Refine GLIB_VAR definition. Also check for DLL_EXPORT in case compiling a static library on Win32 or Cygwin. * gwin32.c: No <direct.h> on Cygwin. No need for ftruncate() or dirent emulation on Cygwin. (get_package_directory_from_module) Convert return value from GetModuleFileName() to POSIX path on Cygwin. * tests/Makefile.am (progs_LDADD): Link with libglib, libgthread and libgmodule as appropriate. Use -no-undefined. * gbacktrace.c: Move #ifdefs around a bit on Win32. * gshell.c (unquote_string_inplace): Make static.
This commit is contained in:
parent
5c00c34972
commit
31c5b1899d
1
glib.def
1
glib.def
@ -233,6 +233,7 @@ EXPORTS
|
||||
g_locale_to_utf8
|
||||
g_log
|
||||
g_log_default_handler
|
||||
g_log_domain_glib
|
||||
g_log_remove_handler
|
||||
g_log_set_always_fatal
|
||||
g_log_set_fatal_mask
|
||||
|
2
glib.h
2
glib.h
@ -68,7 +68,7 @@
|
||||
#include <gtypes.h>
|
||||
#include <gunicode.h>
|
||||
#include <gutils.h>
|
||||
#ifdef G_OS_WIN32
|
||||
#ifdef G_PLATFORM_WIN32
|
||||
#include <gwin32.h>
|
||||
#endif
|
||||
|
||||
|
@ -233,6 +233,7 @@ EXPORTS
|
||||
g_locale_to_utf8
|
||||
g_log
|
||||
g_log_default_handler
|
||||
g_log_domain_glib
|
||||
g_log_remove_handler
|
||||
g_log_set_always_fatal
|
||||
g_log_set_fatal_mask
|
||||
|
@ -68,7 +68,7 @@
|
||||
#include <gtypes.h>
|
||||
#include <gunicode.h>
|
||||
#include <gutils.h>
|
||||
#ifdef G_OS_WIN32
|
||||
#ifdef G_PLATFORM_WIN32
|
||||
#include <gwin32.h>
|
||||
#endif
|
||||
|
||||
|
@ -23,10 +23,7 @@
|
||||
|
||||
#include <gerror.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef enum
|
||||
{
|
||||
@ -120,10 +117,7 @@ void g_markup_parse_context_get_position (GMarkupParseContext *c
|
||||
gchar* g_markup_escape_text (const gchar *text,
|
||||
gint length);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __G_MARKUP_H__ */
|
||||
|
||||
|
@ -91,6 +91,7 @@ static GPrivate* g_log_depth = NULL;
|
||||
#ifdef G_OS_WIN32
|
||||
# define STRICT
|
||||
# include <windows.h>
|
||||
# undef STRICT
|
||||
# include <process.h> /* For _getpid() */
|
||||
|
||||
static gboolean alloc_console_called = FALSE;
|
||||
|
@ -71,7 +71,7 @@ typedef void (*GLogFunc) (const gchar *log_domain,
|
||||
|
||||
/* Logging mechanism
|
||||
*/
|
||||
extern const gchar *g_log_domain_glib;
|
||||
GLIB_VAR const gchar *g_log_domain_glib;
|
||||
guint g_log_set_handler (const gchar *log_domain,
|
||||
GLogLevelFlags log_levels,
|
||||
GLogFunc log_func,
|
||||
|
@ -46,7 +46,7 @@ g_shell_error_quark (void)
|
||||
* Otherwise double quotes preserve things literally.
|
||||
*/
|
||||
|
||||
gboolean
|
||||
static gboolean
|
||||
unquote_string_inplace (gchar* str, gchar** end, GError** err)
|
||||
{
|
||||
gchar* dest;
|
||||
|
@ -19,6 +19,8 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#undef G_LOG_DOMAIN
|
||||
#include "glib.h"
|
||||
#define GSPAWN_HELPER
|
||||
#include "gspawn-win32.c" /* For shared definitions */
|
||||
|
||||
|
@ -677,11 +677,11 @@ g_strsignal (gint signum)
|
||||
|
||||
#ifdef HAVE_STRSIGNAL
|
||||
#if defined(G_OS_BEOS) || defined(G_WITH_CYGWIN)
|
||||
extern const char * strsignal(int);
|
||||
#else /* !G_OS_BEOS */
|
||||
extern const char *strsignal(int);
|
||||
#else
|
||||
/* this is declared differently (const) in string.h on BeOS */
|
||||
extern char *strsignal (int sig);
|
||||
#endif /* !G_OS_BEOS */
|
||||
#endif /* !G_OS_BEOS && !G_WITH_CYGWIN */
|
||||
return strsignal (signum);
|
||||
#elif NO_SYS_SIGLIST
|
||||
switch (signum)
|
||||
|
@ -111,7 +111,7 @@ static GSystemThread zero_thread; /* This is initialized to all zero */
|
||||
gboolean g_thread_use_default_impl = TRUE;
|
||||
gboolean g_threads_got_initialized = FALSE;
|
||||
|
||||
#if defined(G_OS_WIN32) && defined(__GNUC__)
|
||||
#if defined(G_PLATFORM_WIN32) && defined(__GNUC__)
|
||||
__declspec(dllexport)
|
||||
#endif
|
||||
GThreadFunctions g_thread_functions_for_glib_use = {
|
||||
|
10
gmarkup.h
10
gmarkup.h
@ -23,10 +23,7 @@
|
||||
|
||||
#include <gerror.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef enum
|
||||
{
|
||||
@ -120,10 +117,7 @@ void g_markup_parse_context_get_position (GMarkupParseContext *c
|
||||
gchar* g_markup_escape_text (const gchar *text,
|
||||
gint length);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __G_MARKUP_H__ */
|
||||
|
||||
|
@ -91,6 +91,7 @@ static GPrivate* g_log_depth = NULL;
|
||||
#ifdef G_OS_WIN32
|
||||
# define STRICT
|
||||
# include <windows.h>
|
||||
# undef STRICT
|
||||
# include <process.h> /* For _getpid() */
|
||||
|
||||
static gboolean alloc_console_called = FALSE;
|
||||
|
@ -71,7 +71,7 @@ typedef void (*GLogFunc) (const gchar *log_domain,
|
||||
|
||||
/* Logging mechanism
|
||||
*/
|
||||
extern const gchar *g_log_domain_glib;
|
||||
GLIB_VAR const gchar *g_log_domain_glib;
|
||||
guint g_log_set_handler (const gchar *log_domain,
|
||||
GLogLevelFlags log_levels,
|
||||
GLogFunc log_func,
|
||||
|
2
gshell.c
2
gshell.c
@ -46,7 +46,7 @@ g_shell_error_quark (void)
|
||||
* Otherwise double quotes preserve things literally.
|
||||
*/
|
||||
|
||||
gboolean
|
||||
static gboolean
|
||||
unquote_string_inplace (gchar* str, gchar** end, GError** err)
|
||||
{
|
||||
gchar* dest;
|
||||
|
@ -19,6 +19,8 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#undef G_LOG_DOMAIN
|
||||
#include "glib.h"
|
||||
#define GSPAWN_HELPER
|
||||
#include "gspawn-win32.c" /* For shared definitions */
|
||||
|
||||
|
@ -677,11 +677,11 @@ g_strsignal (gint signum)
|
||||
|
||||
#ifdef HAVE_STRSIGNAL
|
||||
#if defined(G_OS_BEOS) || defined(G_WITH_CYGWIN)
|
||||
extern const char * strsignal(int);
|
||||
#else /* !G_OS_BEOS */
|
||||
extern const char *strsignal(int);
|
||||
#else
|
||||
/* this is declared differently (const) in string.h on BeOS */
|
||||
extern char *strsignal (int sig);
|
||||
#endif /* !G_OS_BEOS */
|
||||
#endif /* !G_OS_BEOS && !G_WITH_CYGWIN */
|
||||
return strsignal (signum);
|
||||
#elif NO_SYS_SIGLIST
|
||||
switch (signum)
|
||||
|
@ -111,7 +111,7 @@ static GSystemThread zero_thread; /* This is initialized to all zero */
|
||||
gboolean g_thread_use_default_impl = TRUE;
|
||||
gboolean g_threads_got_initialized = FALSE;
|
||||
|
||||
#if defined(G_OS_WIN32) && defined(__GNUC__)
|
||||
#if defined(G_PLATFORM_WIN32) && defined(__GNUC__)
|
||||
__declspec(dllexport)
|
||||
#endif
|
||||
GThreadFunctions g_thread_functions_for_glib_use = {
|
||||
|
Loading…
Reference in New Issue
Block a user