[libsoup] Makefile.glib: allow marshallers signatures containing integer (like INT64)



commit b811caef81664713636fb5fca6332dc431ae3780
Author: Lionel Landwerlin <llandwerlin gmail com>
Date:   Wed Aug 8 11:13:19 2012 +0100

    Makefile.glib: allow marshallers signatures containing integer (like INT64)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=681438

 Makefile.glib |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/Makefile.glib b/Makefile.glib
index 78eb07d..8713f9a 100644
--- a/Makefile.glib
+++ b/Makefile.glib
@@ -155,7 +155,7 @@ define _glib_make_genmarshal_rules
 $(if $(_glib_marshal_sources),,$(error Need to define $(_glib_marshal_sources_var) for $(1).[ch]))
 
 $(1).list.stamp: $(_glib_marshal_sources)
-	$$(_GLIB_V_GEN) LC_ALL=C sed -ne 's/.*_$(_glib_marshal_prefix)_\([_A-Z]*\).*/\1/p' $$^ | sort -u | sed -e 's/__/:/' -e 's/_/,/g' > $(1).list.tmp && \
+	$$(_GLIB_V_GEN) LC_ALL=C sed -ne 's/.*_$(_glib_marshal_prefix)_\([_A-Z0-9]*\).*/\1/p' $$^ | sort -u | sed -e 's/__/:/' -e 's/_/,/g' > $(1).list.tmp && \
 	(cmp -s $(1).list.tmp $(1).list || cp $(1).list.tmp $(1).list) && \
 	rm -f $(1).list.tmp && \
 	echo timestamp > $$@



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]