mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-12 10:45:13 +01:00
reflect renaming of g_string_sprintfa to g_string_printfa
2001-05-24 Hans Breuer <hans@breuer.org> * grel.c : reflect renaming of g_string_sprintfa to g_string_printfa * makefile.msc.in : create an additional static lib to be used from (at least) glib-genmarshal
This commit is contained in:
parent
81cd6c9f6c
commit
cd759bbd6e
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -1,3 +1,10 @@
|
||||
2001-05-24 Hans Breuer <hans@breuer.org>
|
||||
|
||||
* grel.c : reflect renaming of g_string_sprintfa to g_string_printfa
|
||||
|
||||
* makefile.msc.in : create an additional static lib to be used from
|
||||
(at least) glib-genmarshal
|
||||
|
||||
2001-05-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* garray.c (g_array_remove_index_fast): Tiny speed improvement
|
||||
|
@ -406,7 +406,7 @@ g_relation_print_one (gpointer tuple_key,
|
||||
|
||||
for (i = 0; i < rel->fields; i += 1)
|
||||
{
|
||||
g_string_sprintfa (gstring, "%p", tuples[i]);
|
||||
g_string_printfa (gstring, "%p", tuples[i]);
|
||||
|
||||
if (i < (rel->fields - 1))
|
||||
g_string_append (gstring, ",");
|
||||
|
@ -25,6 +25,7 @@ DLLS_TO_BUILD = \
|
||||
all : \
|
||||
config.h \
|
||||
glibconfig.h \
|
||||
glib-$(GLIB_VER)s.lib \
|
||||
$(DLLS_TO_BUILD) \
|
||||
gspawn-win32-helper.exe \
|
||||
testglib.exe \
|
||||
@ -87,8 +88,14 @@ makefile.msc: makefile.msc.in
|
||||
|
||||
################ glib
|
||||
|
||||
# create a static libary
|
||||
glib-$(GLIB_VER)s.lib : $(glib_OBJECTS)
|
||||
lib /out:glib-$(GLIB_VER)s.lib $(glib_OBJECTS)
|
||||
|
||||
# $(LIBICONV_LIBS) is a runtime dependency now
|
||||
|
||||
glib-$(GLIB_VER).dll : $(glib_OBJECTS) glib.def
|
||||
$(CC) $(CFLAGS) -LD -Feglib-$(GLIB_VER).dll $(glib_OBJECTS) $(INTL_LIBS) $(LIBICONV_LIBS) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:glib.def
|
||||
$(CC) $(CFLAGS) -LD -Feglib-$(GLIB_VER).dll $(glib_OBJECTS) $(INTL_LIBS) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:glib.def
|
||||
|
||||
gspawn-win32-helper.exe : gspawn-win32-helper.c glib-$(GLIB_VER).dll
|
||||
$(CC) $(CFLAGS) -Fe$@ -DG_LOG_DOMAIN=\"gspawn-win32-helper\" gspawn-win32-helper.c glib-$(GLIB_VER).lib $(LDFLAGS) /subsystem:windows user32.lib
|
||||
|
2
grel.c
2
grel.c
@ -406,7 +406,7 @@ g_relation_print_one (gpointer tuple_key,
|
||||
|
||||
for (i = 0; i < rel->fields; i += 1)
|
||||
{
|
||||
g_string_sprintfa (gstring, "%p", tuples[i]);
|
||||
g_string_printfa (gstring, "%p", tuples[i]);
|
||||
|
||||
if (i < (rel->fields - 1))
|
||||
g_string_append (gstring, ",");
|
||||
|
@ -25,6 +25,7 @@ DLLS_TO_BUILD = \
|
||||
all : \
|
||||
config.h \
|
||||
glibconfig.h \
|
||||
glib-$(GLIB_VER)s.lib \
|
||||
$(DLLS_TO_BUILD) \
|
||||
gspawn-win32-helper.exe \
|
||||
testglib.exe \
|
||||
@ -87,8 +88,14 @@ makefile.msc: makefile.msc.in
|
||||
|
||||
################ glib
|
||||
|
||||
# create a static libary
|
||||
glib-$(GLIB_VER)s.lib : $(glib_OBJECTS)
|
||||
lib /out:glib-$(GLIB_VER)s.lib $(glib_OBJECTS)
|
||||
|
||||
# $(LIBICONV_LIBS) is a runtime dependency now
|
||||
|
||||
glib-$(GLIB_VER).dll : $(glib_OBJECTS) glib.def
|
||||
$(CC) $(CFLAGS) -LD -Feglib-$(GLIB_VER).dll $(glib_OBJECTS) $(INTL_LIBS) $(LIBICONV_LIBS) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:glib.def
|
||||
$(CC) $(CFLAGS) -LD -Feglib-$(GLIB_VER).dll $(glib_OBJECTS) $(INTL_LIBS) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:glib.def
|
||||
|
||||
gspawn-win32-helper.exe : gspawn-win32-helper.c glib-$(GLIB_VER).dll
|
||||
$(CC) $(CFLAGS) -Fe$@ -DG_LOG_DOMAIN=\"gspawn-win32-helper\" gspawn-win32-helper.c glib-$(GLIB_VER).lib $(LDFLAGS) /subsystem:windows user32.lib
|
||||
|
Loading…
x
Reference in New Issue
Block a user