glib r6468 - in trunk: . glib



Author: behdad
Date: Wed Feb  6 17:35:25 2008
New Revision: 6468
URL: http://svn.gnome.org/viewvc/glib?rev=6468&view=rev

Log:
2008-02-06  Behdad Esfahbod  <behdad gnome org>

        * glib/pltcheck.sh: Skip g_bit_*().  Inline functions may end up with
        a local plt if the compiler doesn't support what we want.  Bug #514702



Modified:
   trunk/ChangeLog
   trunk/glib/pltcheck.sh

Modified: trunk/glib/pltcheck.sh
==============================================================================
--- trunk/glib/pltcheck.sh	(original)
+++ trunk/glib/pltcheck.sh	Wed Feb  6 17:35:25 2008
@@ -14,7 +14,12 @@
 	# g_string_insert_c is used in g_string_append_c_inline
 	# unaliased.  Couldn't find a way to fix it.
 	# Same for g_once_init_enter
-	readelf -r $so | grep 'JU\?MP_SLOT' | grep -v '\<g_string_insert_c\>' | grep -v '\<g_atomic_[a-z]*_[sg]et\>' | grep -v '\<g_once_init_enter_impl\>' | grep '\<g_' && status=1
+	readelf -r $so | grep 'JU\?MP_SLOT' | \
+		grep -v '\<g_string_insert_c\>' | \
+		grep -v '\<g_atomic_[a-z]*_[sg]et\>' | \
+		grep -v '\<g_once_init_enter_impl\>' | \
+		grep -v '\<g_bit_' | \
+		grep '\<g_' && status=1
 done
 
 exit $status



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