mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
handle galiasdef.c (although completely useless for msvc build)
2005-03-18 Hans Breuer <hans@breuer.org> * glib/makefile.msc.in : handle galiasdef.c (although completely useless for msvc build) * glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401 for IsDebuggerPresent() * gobject/makefile.msc.in : handle gobjectaliasdef.c
This commit is contained in:
parent
ae98c7d6c5
commit
6b55164587
@ -1,3 +1,11 @@
|
||||
2005-03-18 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib/makefile.msc.in : handle galiasdef.c (although completely
|
||||
useless for msvc build)
|
||||
|
||||
* glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401
|
||||
for IsDebuggerPresent()
|
||||
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c: Update the documentation, reflecting the
|
||||
|
@ -1,3 +1,11 @@
|
||||
2005-03-18 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib/makefile.msc.in : handle galiasdef.c (although completely
|
||||
useless for msvc build)
|
||||
|
||||
* glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401
|
||||
for IsDebuggerPresent()
|
||||
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c: Update the documentation, reflecting the
|
||||
|
@ -1,3 +1,11 @@
|
||||
2005-03-18 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib/makefile.msc.in : handle galiasdef.c (although completely
|
||||
useless for msvc build)
|
||||
|
||||
* glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401
|
||||
for IsDebuggerPresent()
|
||||
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c: Update the documentation, reflecting the
|
||||
|
@ -1,3 +1,11 @@
|
||||
2005-03-18 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* glib/makefile.msc.in : handle galiasdef.c (although completely
|
||||
useless for msvc build)
|
||||
|
||||
* glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401
|
||||
for IsDebuggerPresent()
|
||||
|
||||
2005-03-17 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c: Update the documentation, reflecting the
|
||||
|
@ -61,6 +61,7 @@
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
# define STRICT /* Strict typing, please */
|
||||
# define _WIN32_WINDOWS 0x0401 /* to get IsDebuggerPresent */
|
||||
# include <windows.h>
|
||||
# undef STRICT
|
||||
#endif
|
||||
|
@ -49,6 +49,10 @@
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <io.h>
|
||||
# define STRICT /* Strict typing, please */
|
||||
# define _WIN32_WINDOWS 0x0401 /* to get IsDebuggerPresent */
|
||||
# include <windows.h>
|
||||
# undef STRICT
|
||||
#endif
|
||||
|
||||
/* --- structures --- */
|
||||
|
@ -15,6 +15,7 @@ all : \
|
||||
..\config.h \
|
||||
..\glibconfig.h \
|
||||
galias.h \
|
||||
galiasdef.c \
|
||||
gnulib\gnulib.lib \
|
||||
libglib-2.0-@LT_CURRENT_MINUS_AGE@.dll \
|
||||
glib-@GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@s.lib \
|
||||
@ -87,12 +88,15 @@ glib_OBJECTS = \
|
||||
galias.h: glib.symbols
|
||||
perl makegalias.pl < glib.symbols > galias.h
|
||||
|
||||
galiasdef.c: glib.symbols
|
||||
perl makegalias.pl -def < glib.symbols > galiasdef.c
|
||||
|
||||
localcharset.c : libcharset/localcharset.c
|
||||
copy libcharset\localcharset.c localcharset.c
|
||||
|
||||
glib.def: glib.symbols
|
||||
echo EXPORTS > glib.def
|
||||
cl /EP -DINCLUDE_VARIABLES -DG_OS_WIN32 -DINCLUDE_INTERNAL_SYMBOLS glib.symbols >> glib.def
|
||||
cl /EP -DINCLUDE_VARIABLES -DG_OS_WIN32 -DINCLUDE_INTERNAL_SYMBOLS -DALL_FILES glib.symbols >> glib.def
|
||||
|
||||
glib.res : glib.rc
|
||||
rc -DBUILDNUMBER=0 -r -fo glib.res glib.rc
|
||||
|
@ -1,3 +1,7 @@
|
||||
2005-03-18 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* makefile.msc.in : handle gobjectaliasdef.c
|
||||
|
||||
2005-03-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Make PLT-reduction work with gcc4, and don't include
|
||||
|
@ -18,6 +18,7 @@ all : \
|
||||
gmarshal.h \
|
||||
gmarshal.c \
|
||||
gobjectalias.h \
|
||||
gobjectaliasdef.c \
|
||||
gmarshal.strings \
|
||||
gobject-query.exe \
|
||||
libgobject-2.0-@LT_CURRENT_MINUS_AGE@.dll \
|
||||
@ -44,9 +45,12 @@ gobject_OBJECTS = \
|
||||
gobjectalias.h: gobject.symbols
|
||||
perl makegobjectalias.pl < gobject.symbols > gobjectalias.h
|
||||
|
||||
gobjectaliasdef.c: gobject.symbols
|
||||
perl makegobjectalias.pl -def < gobject.symbols > gobjectaliasdef.c
|
||||
|
||||
gobject.def: gobject.symbols
|
||||
echo EXPORTS > gobject.def
|
||||
cl /EP -DINCLUDE_VARIABLES -DG_OS_WIN32 gobject.symbols >> gobject.def
|
||||
cl /EP -DINCLUDE_VARIABLES -DG_OS_WIN32 -DALL_FILES gobject.symbols >> gobject.def
|
||||
|
||||
gobject.res : gobject.rc
|
||||
rc -DBUILDNUMBER=0 -r -fo gobject.res gobject.rc
|
||||
|
Loading…
Reference in New Issue
Block a user