glib/: fully remove galias hacks
authorRyan Lortie <desrt@desrt.ca>
Wed, 7 Jul 2010 23:34:03 +0000 (19:34 -0400)
committerRyan Lortie <desrt@desrt.ca>
Wed, 7 Jul 2010 23:34:35 +0000 (19:34 -0400)
82 files changed:
glib/.gitignore
glib/Makefile.am
glib/garray.c
glib/gasyncqueue.c
glib/gatomic-gcc.c
glib/gatomic.c
glib/gbacktrace.c
glib/gbase64.c
glib/gbitlock.c
glib/gbookmarkfile.c
glib/gbuffer.c
glib/gcache.c
glib/gchecksum.c
glib/gcompletion.c
glib/gconvert.c
glib/gdataset.c
glib/gdate.c
glib/gdir.c
glib/gerror.c
glib/gfileutils.c
glib/ghash.c
glib/ghook.c
glib/ghostutils.c
glib/giochannel.c
glib/giounix.c
glib/giowin32.c
glib/gkeyfile.c
glib/glib.py
glib/glib.symbols
glib/glist.c
glib/gmain.c
glib/gmappedfile.c
glib/gmarkup.c
glib/gmem.c
glib/gmessages.c
glib/gnode.c
glib/gnulib/g-gnulib.h
glib/goption.c
glib/gpattern.c
glib/gpoll.c
glib/gprimes.c
glib/gprintf.c
glib/gqsort.c
glib/gqueue.c
glib/grand.c
glib/gregex.c
glib/grel.c
glib/gscanner.c
glib/gsequence.c
glib/gshell.c
glib/gslice.c
glib/gslist.c
glib/gspawn-win32.c
glib/gspawn.c
glib/gstdio.c
glib/gstrfuncs.c
glib/gstring.c
glib/gtestutils.c
glib/gthread.c
glib/gthreadpool.c
glib/gtimer.c
glib/gtree.c
glib/gunibreak.c
glib/gunicollate.c
glib/gunidecomp.c
glib/guniprop.c
glib/gurifuncs.c
glib/gutf8.c
glib/gutils.c
glib/gvariant-core.c
glib/gvariant-parser.c
glib/gvariant-serialiser.c
glib/gvariant.c
glib/gvarianttype.c
glib/gvarianttypeinfo.c
glib/gwin32.c
glib/makefile.msc.in
glib/makegalias.pl [deleted file]
glib/pcre/pcre.h
glib/pltcheck.sh [deleted file]
glib/update-pcre/memory.patch
glib/win_iconv.c

index 814afd8..e01168d 100644 (file)
@@ -1,5 +1,3 @@
-galias.h
-galiasdef.c
 gtester
 libglib-gdb.py
 makefile.msc
index 938e7bc..52b09a2 100644 (file)
@@ -43,21 +43,13 @@ AM_CPPFLAGS =                               \
 glib.def: glib.symbols
        $(AM_V_GEN) (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <$(srcdir)/glib.symbols | sed -e '/^$$/d' -e 's/^/    /' -e 's/G_GNUC_[^ ]*//g') > glib.def
 
-galias.h: $(srcdir)/makegalias.pl glib.symbols
-         $(AM_V_GEN) $(PERL) $(srcdir)/makegalias.pl < $(srcdir)/glib.symbols > galias.h
-
-galiasdef.c: $(srcdir)/makegalias.pl glib.symbols
-         $(AM_V_GEN) $(PERL) $(srcdir)/makegalias.pl -def < $(srcdir)/glib.symbols > galiasdef.c
-
 if OS_LINUX
 if HAVE_GNUC_VISIBILITY
 TESTS_ENVIRONMENT = GLIB_DEBUG_FLAGS="$(GLIB_DEBUG_FLAGS)"
-TESTS = abicheck.sh pltcheck.sh
+TESTS = abicheck.sh
 endif
 endif
 
-BUILT_SOURCES = galias.h galiasdef.c
-
 MIRRORING_TAB_SOURCE =                                 \
        glib-mirroring-tab/Makefile             \
        glib-mirroring-tab/gen-mirroring-tab.c  \
@@ -71,9 +63,7 @@ EXTRA_DIST +=                         \
        glib.rc.in              \
        gen-unicode-tables.pl   \
        gen-script-table.pl     \
-       makegalias.pl           \
        abicheck.sh             \
-       pltcheck.sh             \
        glib.symbols            \
        gregex.c                \
        gregex.h                \
@@ -84,9 +74,7 @@ EXTRA_DIST +=                         \
 # These may be in the builddir too
 BUILT_EXTRA_DIST =             \
        makefile.msc            \
-       glib.rc                 \
-       galias.h                \
-       galiasdef.c
+       glib.rc
 
 lib_LTLIBRARIES = libglib-2.0.la
 
@@ -336,7 +324,7 @@ glib_probes.h: glib_probes.d Makefile
        sed -e "s,define STAP_HAS_SEMAPHORES 1,undef STAP_HAS_SEMAPHORES," < $@.tmp > $@ && rm -f $@.tmp
 glib_probes.o: glib_probes.d Makefile
        $(DTRACE) -G -s $< -o $@
-BUILT_SOURCES += glib_probes.h glib_probes.o
+BUILT_SOURCES = glib_probes.h glib_probes.o
 CLEANFILES += glib_probes.h glib_probes.h.tmp
 libglib_2_0_la_LIBADD += glib_probes.o
 endif
index b1e3baa..01c6de4 100644 (file)
@@ -40,7 +40,6 @@
 #include "gmessages.h"
 #include "gqsort.h"
 
-#include "galias.h"
 
 /**
  * SECTION: arrays
@@ -1590,6 +1589,3 @@ g_byte_array_sort_with_data (GByteArray       *array,
 {
   g_array_sort_with_data ((GArray *) array, compare_func, user_data);
 }
-
-#define __G_ARRAY_C__
-#include "galiasdef.c"
index fcbf778..312bf8a 100644 (file)
@@ -33,7 +33,6 @@
 #include "gtestutils.h"
 #include "gthread.h"
 
-#include "galias.h"
 
 
 struct _GAsyncQueue
@@ -667,6 +666,3 @@ _g_async_queue_get_mutex (GAsyncQueue* queue)
 
   return queue->mutex;
 }
-
-#define __G_ASYNCQUEUE_C__
-#include "galiasdef.c"
index 7b33b19..6d2ac22 100644 (file)
@@ -21,7 +21,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 gint
 g_atomic_int_exchange_and_add (volatile gint G_GNUC_MAY_ALIAS *atomic,
@@ -87,6 +86,3 @@ void
   *atomic = newval;
   __sync_synchronize ();
 }
-
-#define __G_ATOMIC_C__
-#include "galiasdef.c"
index baa73e7..4940371 100644 (file)
@@ -29,7 +29,6 @@
 
 #include "glib.h"
 #include "gthreadprivate.h"
-#include "galias.h"
 
 #if defined (__GNUC__)
 # if defined (G_ATOMIC_I486)
@@ -1053,6 +1052,3 @@ void
   g_atomic_pointer_set (atomic, newval);
 }
 #endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */
-
-#define __G_ATOMIC_C__
-#include "galiasdef.c"
index 238d9cf..f5c881f 100644 (file)
@@ -77,7 +77,6 @@
 #  endif
 #endif
 
-#include "galias.h"
 
 #ifndef G_OS_WIN32
 static void stack_trace (char **args);
@@ -303,6 +302,3 @@ stack_trace (char **args)
 }
 
 #endif /* !G_OS_WIN32 */
-
-#define __G_BACKTRACE_C__
-#include "galiasdef.c"
index 59a911a..bc2fa87 100644 (file)
@@ -31,7 +31,6 @@
 #include "glib.h"
 #include "glibintl.h"
 
-#include "galias.h"
 
 /**
  * SECTION:base64 Base64 Encoding
@@ -441,7 +440,3 @@ g_base64_decode_inplace (gchar *text,
   
   return (guchar *) text; 
 }
-
-
-#define __G_BASE64_C__
-#include "galiasdef.c"
index 915aa7c..1b8c417 100644 (file)
@@ -29,7 +29,6 @@
 #include "gthreadprivate.h"
 #include "config.h"
 
-#include "galias.h"
 
 #ifdef G_BIT_LOCK_FORCE_FUTEX_EMULATION
 #undef HAVE_FUTEX
@@ -295,6 +294,3 @@ g_bit_unlock (volatile gint *address,
   if (g_atomic_int_get (&g_bit_lock_contended[class]))
     g_futex_wake (address);
 }
-
-#define __G_BITLOCK_C__
-#include "galiasdef.c"
index 01c7e63..a8d580d 100644 (file)
@@ -55,7 +55,6 @@
 #include "gtimer.h"
 #include "gutils.h"
 
-#include "galias.h"
 
 /* XBEL 1.0 standard entities */
 #define XBEL_VERSION           "1.0"
@@ -3704,6 +3703,3 @@ g_bookmark_file_get_icon (GBookmarkFile  *bookmark,
   
   return TRUE;
 }
-
-#define __G_BOOKMARK_FILE_C__
-#include "galiasdef.c"
index 5830f04..f7e3044 100644 (file)
@@ -27,7 +27,6 @@
 #include <glib/gatomic.h>
 #include <glib/gmem.h>
 
-#include "galias.h"
 
 typedef struct
 {
index 9c69122..af26150 100644 (file)
@@ -31,7 +31,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: caches
@@ -326,6 +325,3 @@ g_cache_value_foreach (GCache   *cache,
 
   g_hash_table_foreach (cache->key_table, func, user_data);
 }
-
-#define __G_CACHE_C__
-#include "galiasdef.c"
index 4b9ff94..627a181 100644 (file)
@@ -27,7 +27,6 @@
 #include "glib.h"
 #include "glibintl.h"
 
-#include "galias.h"
 
 /**
  * SECTION: checksum
@@ -1456,6 +1455,3 @@ g_compute_checksum_for_string (GChecksumType  checksum_type,
 
   return g_compute_checksum_for_data (checksum_type, (const guchar *) str, length);
 }
-
-#define __G_CHECKSUM_C__
-#include "galiasdef.c"
index 2a1832a..710e6c0 100644 (file)
@@ -39,7 +39,6 @@
 #undef G_DISABLE_DEPRECATED
 
 #include "gcompletion.h"
-#include "galias.h"
 
 /**
  * SECTION: completion
@@ -490,6 +489,3 @@ main (int   argc,
   return 0;
 }
 #endif
-
-#define __G_COMPLETION_C__
-#include "galiasdef.c"
index 520c32a..19fd802 100644 (file)
@@ -55,7 +55,6 @@
 #error GNU libiconv not in use but included iconv.h is from libiconv
 #endif
 
-#include "galias.h"
 
 /* We try to terminate strings in unknown charsets with this many zero bytes
  * to ensure that multibyte strings really are nul-terminated when we return
@@ -2125,6 +2124,3 @@ g_filename_display_name (const gchar *filename)
 
   return display_name;
 }
-
-#define __G_CONVERT_C__
-#include "galiasdef.c"
index 57f6523..86970c9 100644 (file)
@@ -37,7 +37,6 @@
 #include "glib.h"
 #include "gdatasetprivate.h"
 #include "glib_trace.h"
-#include "galias.h"
 
 /**
  * SECTION: datasets
@@ -1214,6 +1213,3 @@ g_intern_static_string (const gchar *string)
 
   return result;
 }
-
-#define __G_DATASET_C__
-#include "galiasdef.c"
index b31c033..723a3ba 100644 (file)
@@ -46,7 +46,6 @@
 #include <windows.h>
 #endif
 
-#include "galias.h"
 
 GDate*
 g_date_new (void)
@@ -1899,7 +1898,3 @@ g_date_strftime (gchar       *s,
   return retval;
 #endif
 }
-
-#define __G_DATE_C__
-#include "galiasdef.c"
-
index c6997ae..7a1ad38 100644 (file)
@@ -39,7 +39,6 @@
 
 #include "glibintl.h"
 
-#include "galias.h"
 
 #if defined (_MSC_VER) && !defined (HAVE_DIRENT_H)
 #include "../build/win32/dirent/dirent.h"
@@ -302,6 +301,3 @@ g_dir_close (GDir *dir)
 #endif
   g_free (dir);
 }
-
-#define __G_DIR_C__
-#include "galiasdef.c"
index 4327f9a..4e4c3e7 100644 (file)
@@ -27,7 +27,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 
 /**
@@ -384,6 +383,3 @@ g_propagate_prefixed_error (GError      **dest,
       va_end (ap);
     }
 }
-
-#define __G_ERROR_C__
-#include "galiasdef.c"
index 76335fa..bfd6bb6 100644 (file)
@@ -52,7 +52,6 @@
 #include "gstdio.h"
 #include "glibintl.h"
 
-#include "galias.h"
 
 /**
  * g_mkdir_with_parents:
@@ -2015,6 +2014,3 @@ g_file_open_tmp (const gchar  *tmpl,
 }
 
 #endif
-
-#define __G_FILEUTILS_C__
-#include "galiasdef.c"
index 417ed5d..e5f9aff 100644 (file)
@@ -33,7 +33,6 @@
 #include <string.h>  /* memset */
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: hash_tables
@@ -1456,6 +1455,3 @@ g_hash_table_get_values (GHashTable *hash_table)
 
   return retval;
 }
-
-#define __G_HASH_C__
-#include "galiasdef.c"
index d038ee2..39f36bb 100644 (file)
@@ -34,7 +34,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 
 /* --- functions --- */
@@ -633,6 +632,3 @@ g_hook_compare_ids (GHook *new_hook,
   
   return 0;
 }
-
-#define __G_HOOK_C__
-#include "galiasdef.c"
index 3871456..f6237b0 100644 (file)
@@ -26,7 +26,6 @@
 
 #include <string.h>
 
-#include "galias.h"
 
 /**
  * SECTION:ghostutils
@@ -764,6 +763,3 @@ g_hostname_is_ip_address (const gchar *hostname)
   /* If there's nothing left to parse, then it's ok. */
   return !*p;
 }
-
-#define __G_HOST_UTILS_C__
-#include "galiasdef.c"
index 68acd60..3d7df47 100644 (file)
@@ -48,7 +48,6 @@
 
 #include "glibintl.h"
 
-#include "galias.h"
 
 /**
  * SECTION: iochannels
@@ -2579,6 +2578,3 @@ g_io_channel_error_quark (void)
 {
   return g_quark_from_static_string ("g-io-channel-error-quark");
 }
-
-#define __G_IOCHANNEL_C__
-#include "galiasdef.c"
index 0e89d5c..7307a76 100644 (file)
@@ -44,7 +44,6 @@
 #include <fcntl.h>
 
 #include "glib.h"
-#include "galias.h"
 
 /*
  * Unix IO Channels
@@ -640,6 +639,3 @@ g_io_channel_unix_get_fd (GIOChannel *channel)
   GIOUnixChannel *unix_channel = (GIOUnixChannel *)channel;
   return unix_channel->fd;
 }
-
-#define __G_IO_UNIX_C__
-#include "galiasdef.c"
index ae2dcde..cabe2c9 100644 (file)
@@ -84,7 +84,6 @@
 #include "gstdio.h"
 #include "glibintl.h"
 
-#include "galias.h"
 
 typedef struct _GIOWin32Channel GIOWin32Channel;
 typedef struct _GIOWin32Watch GIOWin32Watch;
@@ -2239,6 +2238,3 @@ g_io_channel_win32_new_stream_socket (int socket)
 }
 
 #endif
-
-#define __G_IO_WIN32_C__
-#include "galiasdef.c"
index 2f4b022..10ca2a2 100644 (file)
@@ -65,7 +65,6 @@
 #include "gstrfuncs.h"
 #include "gutils.h"
 
-#include "galias.h"
 
 typedef struct _GKeyFileGroup GKeyFileGroup;
 
@@ -3929,6 +3928,3 @@ g_key_file_parse_comment_as_value (GKeyFile      *key_file,
 
   return g_string_free (string, FALSE);
 }
-
-#define __G_KEY_FILE_C__
-#include "galiasdef.c"
index 0953aee..135f4bc 100644 (file)
@@ -115,10 +115,7 @@ class GHashPrinter:
         try:
             string_hash = read_global_var ("g_str_hash")
         except:
-            try:
-                string_hash = read_global_var ("IA__g_str_hash")
-            except:
-                string_hash = None
+            string_hash = None
         if self.val != 0 and string_hash != None and self.val["hash_func"] == string_hash:
             self.keys_are_strings = True
 
index 648812a..e3421f1 100644 (file)
@@ -1,7 +1,5 @@
 /* This file lists all exported symbols. It is used to generate
- * the glib.def file used to control exports on Windows and the
- * galias.h/galiasdef.c files used to avoid PLT entries for 
- * internal uses of exported functions (see makegalias.pl).
+ * the glib.def file used to control exports on Windows.
  * 
  * Every symbol must be included in the right
  * #ifdef IN_HEADER(sym) #endif and
index 252330a..95ba000 100644 (file)
@@ -31,7 +31,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: linked_lists_double
@@ -1148,6 +1147,3 @@ g_list_sort_with_data (GList            *list,
 {
   return g_list_sort_real (list, (GFunc) compare_func, user_data);
 }
-
-#define __G_LIST_C__
-#include "galiasdef.c"
index 32b1d21..ce703cb 100644 (file)
@@ -77,7 +77,6 @@
 #include <sys/wait.h>
 #endif
 
-#include "galias.h"
 
 /* Types */
 
@@ -4251,6 +4250,3 @@ g_idle_remove_by_data (gpointer data)
 {
   return g_source_remove_by_funcs_user_data (&g_idle_funcs, data);
 }
-
-#define __G_MAIN_C__
-#include "galiasdef.c"
index 42f1322..2af6630 100644 (file)
@@ -56,7 +56,6 @@
 
 #include "glibintl.h"
 
-#include "galias.h"
 
 #ifndef _O_BINARY
 #define _O_BINARY 0
@@ -343,6 +342,3 @@ g_mapped_file_unref (GMappedFile *file)
   if (g_atomic_int_dec_and_test (&file->ref_count))
     g_mapped_file_destroy (file);
 }
-
-#define __G_MAPPED_FILE_C__
-#include "galiasdef.c"
index 53edae5..417d256 100644 (file)
@@ -29,7 +29,6 @@
 
 #include "glib.h"
 #include "glibintl.h"
-#include "galias.h"
 
 GQuark
 g_markup_error_quark (void)
@@ -2779,6 +2778,3 @@ failure:
 
   return FALSE;
 }
-
-#define __G_MARKUP_C__
-#include "galiasdef.c"
index f62e604..a9c3710 100644 (file)
@@ -41,7 +41,6 @@
 #include "gthread.h"
 #include "glib_trace.h"
 
-#include "galias.h"
 
 #define MEM_PROFILE_TABLE_SIZE 4096
 
@@ -1197,6 +1196,3 @@ _g_mem_thread_init_noprivate_nomessage (void)
   gmem_profile_mutex = g_mutex_new ();
 #endif
 }
-
-#define __G_MEM_C__
-#include "galiasdef.c"
index 9a3eec3..235e726 100644 (file)
@@ -45,7 +45,6 @@
 #include "gdebug.h"
 #include "gprintfint.h"
 #include "gthreadprivate.h"
-#include "galias.h"
 
 #ifdef G_OS_WIN32
 #include <process.h>           /* For getpid() */
@@ -575,12 +574,6 @@ g_return_if_fail_warning (const char *log_domain,
                          const char *pretty_function,
                          const char *expression)
 {
-  /*
-   * Omit the prefix used by the PLT-reduction
-   * technique used in GTK+. 
-   */
-  if (g_str_has_prefix (pretty_function, "IA__"))
-    pretty_function += 4;
   g_log (log_domain,
         G_LOG_LEVEL_CRITICAL,
         "%s: assertion `%s' failed",
@@ -616,12 +609,6 @@ g_assert_warning (const char *log_domain,
                  const char *pretty_function,
                  const char *expression)
 {
-  /*
-   * Omit the prefix used by the PLT-reduction
-   * technique used in GTK+. 
-   */
-  if (g_str_has_prefix (pretty_function, "IA__"))
-    pretty_function += 4;
   g_log (log_domain,
         G_LOG_LEVEL_ERROR,
         expression 
@@ -1161,6 +1148,3 @@ _g_debug_init (void)
       g_log_set_always_fatal (fatal_mask);
     }
 }
-
-#define __G_MESSAGES_C__
-#include "galiasdef.c"
index 7d3dfce..7053775 100644 (file)
@@ -34,7 +34,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: trees-nary
@@ -1276,6 +1275,3 @@ g_node_children_foreach (GNode              *node,
        }
     }
 }
-
-#define __G_NODE_C__
-#include "galiasdef.c"
index 6dbf2e9..88f3e0e 100644 (file)
@@ -21,7 +21,6 @@
 #include "config.h"
 #include <stdlib.h>
 #include "glib/glib.h"
-#include "glib/galias.h"
 
 /* Private namespace for gnulib functions */
 #define asnprintf        _g_gnulib_asnprintf
index 9747d47..ff762e8 100644 (file)
 #include "glibintl.h"
 #include "gprintf.h"
 
-#include "galias.h"
 
 #include <string.h>
 #include <stdlib.h>
@@ -2380,7 +2379,3 @@ g_option_context_get_description (GOptionContext *context)
 
   return context->description;
 }
-
-
-#define __G_OPTION_C__
-#include "galiasdef.c"
index 33e4aac..1c37e98 100644 (file)
@@ -28,7 +28,6 @@
 #include "gmem.h"
 #include "gunicode.h"
 #include "gutils.h" 
-#include "galias.h"
 
 /**
  * SECTION: patterns
@@ -441,6 +440,3 @@ g_pattern_match_simple (const gchar *pattern,
 
   return ergo;
 }
-
-#define __G_PATTERN_C__
-#include "galiasdef.c"
index 30e5429..651392c 100644 (file)
@@ -77,7 +77,6 @@
 #include <windows.h>
 #endif /* G_OS_WIN32 */
 
-#include "galias.h"
 
 #ifdef G_MAIN_POLL_DEBUG
 extern gboolean _g_main_poll_debug;
@@ -425,6 +424,3 @@ g_poll (GPollFD *fds,
 #endif /* !G_OS_WIN32 */
 
 #endif /* !HAVE_POLL */
-
-#define __G_POLL_C__
-#include "galiasdef.c"
index 7beca71..439c1c8 100644 (file)
@@ -31,7 +31,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 
 static const guint g_primes[] =
@@ -85,6 +84,3 @@ g_spaced_primes_closest (guint num)
 
   return g_primes[g_nprimes - 1];
 }
-
-#define __G_PRIMES_C__
-#include "galiasdef.c"
index 3528861..7618c2d 100644 (file)
@@ -31,7 +31,6 @@
 #include "gprintf.h"
 #include "gprintfint.h"
 
-#include "galias.h"
 
 /**
  * g_printf:
@@ -339,6 +338,3 @@ g_vasprintf (gchar      **string,
 
   return len;
 }
-
-#define __G_PRINTF_C__
-#include "galiasdef.c"
index 176d44a..941a044 100644 (file)
@@ -39,7 +39,6 @@
 #include <string.h>
 
 #include "glib.h"
-#include "galias.h"
 
 /* Byte-wise swap two items of size SIZE. */
 #define SWAP(a, b, size)                                                     \
@@ -282,6 +281,3 @@ g_qsort_with_data (gconstpointer    pbase,
       }
   }
 }
-
-#define __G_QSORT_C__
-#include "galiasdef.c"
index 1368e26..0100870 100644 (file)
@@ -27,7 +27,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * g_queue_new:
@@ -1008,6 +1007,3 @@ g_queue_insert_sorted (GQueue           *queue,
   else
     g_queue_push_tail (queue, data);
 }
-
-#define __G_QUEUE_C__
-#include "galiasdef.c"
index 231ed13..33bbbbc 100644 (file)
@@ -49,7 +49,6 @@
 
 #include "glib.h"
 #include "gthreadprivate.h"
-#include "galias.h"
 
 #ifdef G_OS_WIN32
 #include <process.h>           /* For getpid() */
@@ -694,7 +693,3 @@ g_random_set_seed (guint32 seed)
     g_rand_set_seed (global_random, seed);
   G_UNLOCK (global_random);
 }
-
-
-#define __G_RAND_C__
-#include "galiasdef.c"
index 4a305b8..ba59607 100644 (file)
@@ -38,7 +38,6 @@
 #define PCRE_ERROR_NULLWSLIMIT (-22)
 #endif
 
-#include "galias.h"
 
 /* Mask of all the possible values for GRegexCompileFlags. */
 #define G_REGEX_COMPILE_MASK (G_REGEX_CASELESS         | \
@@ -2789,6 +2788,3 @@ g_regex_escape_string (const gchar *string,
 
   return g_string_free (escaped, FALSE);
 }
-
-#define __G_REGEX_C__
-#include "galiasdef.c"
index 7609274..59d5bbb 100644 (file)
@@ -40,7 +40,6 @@
 #undef G_DISABLE_DEPRECATED
 
 #include "grel.h"
-#include "galias.h"
 
 /**
  * SECTION: relations
@@ -674,6 +673,3 @@ g_relation_print (GRelation *relation)
     }
   
 }
-
-#define __G_REL_C__
-#include "galiasdef.c"
index 233cc73..c4788e7 100644 (file)
@@ -44,7 +44,6 @@
 
 #include       "glib.h"
 #include       "gprintfint.h"
-#include        "galias.h"
 
 #ifdef G_OS_WIN32
 #include       <io.h>          /* For _read() */
@@ -1762,6 +1761,3 @@ g_scanner_get_token_ll    (GScanner       *scanner,
   *token_p = token;
   *value_p = value;
 }
-
-#define __G_SCANNER_C__
-#include "galiasdef.c"
index ee00708..c95c66e 100644 (file)
@@ -21,7 +21,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: sequence
@@ -1813,7 +1812,3 @@ node_insert_sorted (GSequenceNode            *node,
   
   node_insert_before (closest, new);
 }
-
-
-#define __G_SEQUENCE_C__
-#include "galiasdef.c"
index 44f9ec3..39ebdb6 100644 (file)
@@ -31,7 +31,6 @@
 #endif
 
 #include "glibintl.h"
-#include "galias.h"
 
 /**
  * SECTION: shell
@@ -690,6 +689,3 @@ g_shell_parse_argv (const gchar *command_line,
   
   return FALSE;
 }
-
-#define __G_SHELL_C__
-#include "galiasdef.c"
index 41bd93c..7b6a9b7 100644 (file)
@@ -36,7 +36,6 @@
 #include "gthreadprivate.h"
 #include "glib.h"
 #include "glib_trace.h"
-#include "galias.h"
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>             /* sysconf() */
 #endif
@@ -1488,6 +1487,3 @@ g_slice_debug_tree_statistics (void)
    */
 }
 #endif /* G_ENABLE_DEBUG */
-
-#define __G_SLICE_C__
-#include "galiasdef.c"
index 5dcbc7f..47af13a 100644 (file)
@@ -31,7 +31,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: linked_lists_single
@@ -1056,6 +1055,3 @@ g_slist_sort_with_data (GSList           *list,
 {
   return g_slist_sort_real (list, (GFunc) compare_func, user_data);
 }
-
-#define __G_SLIST_C__
-#include "galiasdef.c"
index dc48a25..44ae907 100644 (file)
@@ -47,7 +47,6 @@
 #include "glib.h"
 #include "gprintfint.h"
 #include "glibintl.h"
-#include "galias.h"
 
 #include <string.h>
 #include <stdlib.h>
@@ -1492,6 +1491,3 @@ g_spawn_command_line_async (const gchar *command_line,
 #endif /* !_WIN64 */
 
 #endif /* !GSPAWN_HELPER */
-
-#define __G_SPAWN_C__
-#include "galiasdef.c"
index 1425450..c2b814e 100644 (file)
@@ -43,7 +43,6 @@
 
 #include "glib.h"
 #include "glibintl.h"
-#include "galias.h"
 
 static gint g_execute (const gchar  *file,
                        gchar **argv,
@@ -1677,6 +1676,3 @@ void
 g_spawn_close_pid (GPid pid)
 {
 }
-
-#define __G_SPAWN_C__
-#include "galiasdef.c"
index 82549f5..54c2164 100644 (file)
@@ -45,7 +45,6 @@
 
 #include "gstdio.h"
 
-#include "galias.h"
 
 #if !defined (G_OS_UNIX) && !defined (G_OS_WIN32) && !defined (G_OS_BEOS)
 #error Please port this to your operating system
@@ -824,6 +823,3 @@ g_utime (const gchar    *filename,
   return utime (filename, utb);
 #endif
 }
-
-#define __G_STDIO_C__
-#include "galiasdef.c"
index db6a5fd..be44eb7 100644 (file)
@@ -48,7 +48,6 @@
 #include "gprintfint.h"
 #include "glibintl.h"
 
-#include "galias.h"
 
 #ifdef G_OS_WIN32
 #include <windows.h>
@@ -3270,7 +3269,3 @@ g_dngettext (const gchar *domain,
 
   return dngettext (domain, msgid, msgid_plural, n);
 }
-
-
-#define __G_STRFUNCS_C__
-#include "galiasdef.c"
index eeb84b7..134edd5 100644 (file)
@@ -42,7 +42,6 @@
 #include "glib.h"
 #include "gprintf.h"
 
-#include "galias.h"
 
 /**
  * SECTION: string_chunks
@@ -1519,6 +1518,3 @@ g_string_append_printf (GString     *string,
   g_string_append_vprintf (string, format, args);
   va_end (args);
 }
-
-#define __G_STRING_C__
-#include "galiasdef.c"
index 31a4a5d..80fc3ea 100644 (file)
@@ -49,7 +49,6 @@
 #include "gstrfuncs.h"
 #include "gtimer.h"
 
-#include "galias.h"
  
 /* Global variable for storing assertion messages; this is the counterpart to
  * glibc's (private) __abort_msg variable, and allows developers and crash
@@ -2038,6 +2037,3 @@ g_test_log_msg_free (GTestLogMsg *tmsg)
  * Since: 2.16
  **/
 /* --- macros docs END --- */
-
-#define __G_TEST_UTILS_C__
-#include "galiasdef.c"
index 33d4363..5d50d88 100644 (file)
@@ -61,7 +61,6 @@
 #include "gtestutils.h"
 #include "gtimer.h"
 
-#include "galias.h"
 
 /**
  * SECTION: threads
@@ -2537,7 +2536,3 @@ g_thread_get_initialized ()
 {
   return g_thread_supported ();
 }
-
-#define __G_THREAD_C__
-#include "galiasdef.c"
-
index 3ece1b4..ea312da 100644 (file)
@@ -27,7 +27,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: thread_pools
@@ -990,6 +989,3 @@ g_thread_pool_get_max_idle_time (void)
 { 
   return g_atomic_int_get (&max_idle_time);
 }
-
-#define __G_THREADPOOL_C__
-#include "galiasdef.c"
index 91f3f8a..c1169a7 100644 (file)
@@ -49,7 +49,6 @@
 
 #include "glib.h"
 #include "gthread.h"
-#include "galias.h"
 
 /**
  * SECTION: timers
@@ -563,6 +562,3 @@ g_time_val_to_iso8601 (GTimeVal *time_)
   
   return retval;
 }
-
-#define __G_TIMER_C__
-#include "galiasdef.c"
index 17bfb82..d7b993f 100644 (file)
@@ -31,7 +31,6 @@
 #include "config.h"
 
 #include "glib.h"
-#include "galias.h"
 
 /**
  * SECTION: trees-binary
@@ -1410,8 +1409,3 @@ g_tree_dump (GTree *tree)
     g_tree_node_dump (tree->root, 0);
 }
 #endif
-
-
-#define __G_TREE_C__
-#include "galiasdef.c"
-
index 9c12921..2087d1e 100644 (file)
@@ -24,7 +24,6 @@
 
 #include "glib.h"
 #include "gunibreak.h"
-#include "galias.h"
 
 #define TPROP_PART1(Page, Char) \
   ((break_property_table_part1[Page] >= G_UNICODE_MAX_TABLE_INDEX) \
@@ -61,6 +60,3 @@ g_unichar_break_type (gunichar c)
 {
   return PROP (c);
 }
-
-#define __G_UNIBREAK_C__
-#include "galiasdef.c"
index 2bf579e..b64b0a4 100644 (file)
@@ -32,7 +32,6 @@
 
 #include "glib.h"
 #include "gunicodeprivate.h"
-#include "galias.h"
 
 #ifdef _MSC_VER
 /* Workaround for bug in MSVCR80.DLL */
@@ -673,7 +672,3 @@ g_utf8_collate_key_for_filename (const gchar *str,
   return carbon_collate_key_for_filename (str, len);
 #endif
 }
-
-
-#define __G_UNICOLLATE_C__
-#include "galiasdef.c"
index d0fa97e..607ceb6 100644 (file)
@@ -27,7 +27,6 @@
 #include "gunidecomp.h"
 #include "gunicomp.h"
 #include "gunicodeprivate.h"
-#include "galias.h"
 
 
 #define CC_PART1(Page, Char) \
@@ -530,6 +529,3 @@ g_utf8_normalize (const gchar    *str,
 
   return result;
 }
-
-#define __G_UNIDECOMP_C__
-#include "galiasdef.c"
index 8a28513..39be7dd 100644 (file)
@@ -31,7 +31,6 @@
 #include "gmirroringtable.h"
 #include "gscripttable.h"
 #include "gunicodeprivate.h"
-#include "galias.h"
 
 #define ATTR_TABLE(Page) (((Page) <= G_UNICODE_LAST_PAGE_PART1) \
                           ? attr_table_part1[Page] \
@@ -1296,7 +1295,3 @@ g_unichar_get_script (gunichar ch)
   else 
     return g_unichar_get_script_bsearch (ch); 
 }
-
-
-#define __G_UNIPROP_C__
-#include "galiasdef.c"
index a2930aa..6a77244 100644 (file)
@@ -32,7 +32,6 @@
 #include <string.h>
 
 #include "config.h"
-#include "galias.h"
 
 /**
  * SECTION:gurifuncs
@@ -248,6 +247,3 @@ g_uri_escape_string (const char *unescaped,
   
   return g_string_free (s, FALSE);
 }
-
-#define __G_URI_FUNCS_C__
-#include "galiasdef.c"
index d0badbb..3d1d180 100644 (file)
@@ -39,7 +39,6 @@
 #include "libcharset/libcharset.h"
 
 #include "glibintl.h"
-#include "galias.h"
 
 #define UTF8_COMPUTE(Char, Mask, Len)                                        \
   if (Char < 128)                                                            \
@@ -1897,7 +1896,3 @@ _g_utf8_make_valid (const gchar *name)
   
   return g_string_free (string, FALSE);
 }
-
-
-#define __G_UTF8_C__
-#include "galiasdef.c"
index 406665e..406b4b1 100644 (file)
@@ -61,7 +61,6 @@
 #include "gprintfint.h"
 #include "gthreadprivate.h"
 #include "glibintl.h"
-#include "galias.h"
 
 #ifdef MAXPATHLEN
 #define        G_PATH_LENGTH   MAXPATHLEN
@@ -3596,6 +3595,3 @@ g_get_tmp_dir (void)
 }
 
 #endif
-
-#define __G_UTILS_C__
-#include "galiasdef.c"
index 2b8caa5..35f7e9a 100644 (file)
@@ -29,7 +29,6 @@
 #include <glib/gmem.h>
 #include <string.h>
 
-#include "galias.h"
 
 /*
  * This file includes the structure definition for GVariant and a small
@@ -951,6 +950,3 @@ g_variant_is_normal_form (GVariant *value)
 
   return (value->state & STATE_TRUSTED) != 0;
 }
-
-#define __G_VARIANT_CORE_C__
-#include "galiasdef.c"
index 7932d85..1689d3e 100644 (file)
@@ -24,7 +24,6 @@
 #include <errno.h>
 #include <glib.h>
 
-#include "galias.h"
 
 /*
  * two-pass algorithm
@@ -2450,7 +2449,3 @@ g_variant_builder_add_parsed (GVariantBuilder *builder,
   g_variant_builder_add_value (builder, g_variant_new_parsed_va (format, &ap));
   va_end (ap);
 }
-
-
-#define __G_VARIANT_PARSER_C__
-#include "galiasdef.c"
index ee2ec8c..d6d626e 100644 (file)
@@ -31,7 +31,6 @@
 
 #include <string.h>
 
-#include "galias.h"
 
 /* GVariantSerialiser
  *
@@ -1682,7 +1681,4 @@ g_variant_serialiser_is_signature (gconstpointer data,
 }
 
 /* Epilogue {{{1 */
-#define __G_VARIANT_SERIALISER_C__
-#include "galiasdef.c"
-
 /* vim:set foldmethod=marker: */
index 28caee9..2092b78 100644 (file)
@@ -34,7 +34,6 @@
 
 #include <string.h>
 
-#include "galias.h"
 
 /**
  * SECTION: gvariant
@@ -4630,7 +4629,4 @@ g_variant_new_from_data (const GVariantType *type,
 }
 
 /* Epilogue {{{1 */
-#define __G_VARIANT_C__
-#include "galiasdef.c"
-
 /* vim:set foldmethod=marker: */
index 1c1d158..b33d60e 100644 (file)
@@ -29,7 +29,6 @@
 
 #include <string.h>
 
-#include "galias.h"
 
 /**
  * SECTION: gvarianttype
@@ -1489,6 +1488,3 @@ g_variant_type_checked_ (const gchar *type_string)
   g_return_val_if_fail (g_variant_type_string_is_valid (type_string), NULL);
   return (const GVariantType *) type_string;
 }
-
-#define __G_VARIANT_TYPE_C__
-#include "galiasdef.c"
index 52f7b7d..c5998d3 100644 (file)
@@ -28,7 +28,6 @@
 #include <glib/gthread.h>
 #include <glib/ghash.h>
 
-#include "galias.h"
 
 /* < private >
  * GVariantTypeInfo:
@@ -868,6 +867,3 @@ g_variant_type_info_assert_no_infos (void)
 {
   g_assert (g_variant_type_info_table == NULL);
 }
-
-#define __G_VARIANT_TYPE_INFO_C__
-#include "galiasdef.c"
index 1440327..9ba02ad 100644 (file)
@@ -52,7 +52,6 @@
 #endif /* _MSC_VER || __DMC__ */
 
 #include "glib.h"
-#include "galias.h"
 
 #ifdef G_WITH_CYGWIN
 #include <sys/cygwin.h>
@@ -595,6 +594,3 @@ g_win32_locale_filename_from_utf8 (const gchar *utf8filename)
     }
   return retval;
 }
-
-#define __G_WIN32_C__
-#include "galiasdef.c"
index e13673a..936d656 100644 (file)
@@ -18,8 +18,6 @@ DEPCFLAGS = -Zm400 $(INTL_CFLAGS) $(DIRENT_CFLAGS)
 all :                          \
        ..\config.h             \
        ..\glibconfig.h \
-       galias.h                \
-       galiasdef.c             \
        gnulib\gnulib.lib       \
        pcre\pcre.lib           \
        libglib-2.0-0.dll \
@@ -107,12 +105,6 @@ glib_OBJECTS =                     \
 ..\config.h: ..\config.h.win32
        copy ..\config.h.win32 ..\config.h
 
-galias.h: glib.symbols
-       perl makegalias.pl < glib.symbols > galias.h
-
-galiasdef.c: glib.symbols
-         perl makegalias.pl -def < glib.symbols > galiasdef.c
-
 localcharset.obj : libcharset\localcharset.c
        $(CC) $(CFLAGS) -DLIBDIR=\".\" -c libcharset\localcharset.c
 
diff --git a/glib/makegalias.pl b/glib/makegalias.pl
deleted file mode 100755 (executable)
index 2a5e065..0000000
+++ /dev/null
@@ -1,138 +0,0 @@
-#!/usr/bin/perl -w
-
-exit 0;
-
-my $do_def = 0;
-
-if (($#ARGV >= 0) && ($ARGV[0] eq "-def")) {
-    shift;
-    $do_def = 1;
-}
-
-print <<EOF;
-/* Generated by makegalias.pl */
-
-#ifndef DISABLE_VISIBILITY
-
-#include "glibconfig.h"
-
-#ifdef G_HAVE_GNUC_VISIBILITY
-
-EOF
-
-if ($do_def) {
-    print <<EOF
-#undef IN_FILE
-#define IN_FILE defined
-
-#undef IN_HEADER
-#define IN_HEADER(x) 1
-
-EOF
-} 
-else { 
-    print <<EOF
-#define IN_FILE(x) 1
-#define IN_HEADER defined
-
-EOF
-}
-
-my $in_comment = 0;
-my $in_skipped_section = 0;
-
-while (<>) {
-
-  # ignore empty lines
-  next if /^\s*$/;
-
-  # skip comments
-  if ($_ =~ /^\s*\/\*/)
-  {
-      $in_comment = 1;
-  }
-  
-  if ($in_comment)
-  {
-      if ($_ =~  /\*\/\s$/)
-      {
-         $in_comment = 0;
-      }
-      
-      next;
-  }
-
-  # handle ifdefs
-  if ($_ =~ /^\#endif/)
-  {
-      if (!$in_skipped_section)
-      {
-         print $_;
-      }
-
-      $in_skipped_section = 0;
-
-      next;
-  }
-
-  if ($_ =~ /^\#ifdef\s+(INCLUDE_VARIABLES|INCLUDE_INTERNAL_SYMBOLS|ALL_FILES)/)
-  {
-      $in_skipped_section = 1;
-  }
-
-  if ($in_skipped_section)
-  {
-      next;
-  }
-
-  if ($_ =~ /^\#ifn?def\s+(G|DISABLE_MEM_POOLS|_WIN64)/)
-  {
-      print $_;
-      
-      next;
-  }
-
-  if ($_ =~ /^\#if.*(G_STDIO_NO_WRAP_ON_UNIX|IN_FILE|IN_HEADER|IN_FILE)/)
-  {
-      print $_;
-      
-      next;
-  }
-
-  chop;
-  my $str = $_;
-  my @words;
-  my $attributes = "";
-
-  @words = split(/ /, $str);
-  $str = shift(@words);
-  chomp($str);
-  my $alias = "IA__".$str;
-  
-  # Drop any Win32 specific .def file syntax,  but keep attributes
-  foreach $word (@words) {
-      $attributes = "$attributes $word" unless $word eq "PRIVATE";
-  }
-
-  if (!$do_def) {
-    print <<EOF
-extern __typeof ($str) $alias __attribute((visibility("hidden")))$attributes;
-\#define $str $alias
-
-EOF
-  }
-  else {
-    print <<EOF
-\#undef $str 
-extern __typeof ($str) $str __attribute((alias("$alias"), visibility("default")));
-
-EOF
-  }
-}
-
-print <<EOF
-
-#endif /* G_HAVE_GNUC_VISIBILITY */
-#endif /* DISABLE_VISIBILITY */
-EOF
-
index 302ced7..4864bd0 100644 (file)
@@ -251,7 +251,6 @@ typedef struct pcre_callout_block {
 } pcre_callout_block;
 
 #include "glib.h"
-#include "galias.h"
 
 #define pcre_malloc g_try_malloc
 #define pcre_free g_free
diff --git a/glib/pltcheck.sh b/glib/pltcheck.sh
deleted file mode 100755 (executable)
index 5f735a9..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-exit 0
-
-LANG=C
-
-status=0
-
-if ! which readelf 2>/dev/null >/dev/null; then
-       echo "'readelf' not found; skipping test"
-       exit 0
-fi
-
-for so in .libs/lib*.so; do
-       echo Checking $so for local PLT entries
-       # 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 -v '\<g_bit_' | \
-               grep '\<g_' && status=1
-done
-
-exit $status
index 65b7b97..e74a399 100644 (file)
@@ -1,7 +1,7 @@
 diff -r 0f4042339eb5 pcre/pcre.h
 --- pcre/pcre.h        Tue Jul 25 22:39:16 2006 +0200
 +++ pcre/pcre.h        Tue Jul 25 22:52:10 2006 +0200
-@@ -233,25 +233,14 @@ typedef struct pcre_callout_block {
+@@ -233,25 +233,13 @@ typedef struct pcre_callout_block {
    /* ------------------------------------------------------------------ */
  } pcre_callout_block;
  
@@ -17,7 +17,6 @@ diff -r 0f4042339eb5 pcre/pcre.h
 -PCRE_DATA_SCOPE void *(*pcre_stack_malloc)(size_t);
 -PCRE_DATA_SCOPE void  (*pcre_stack_free)(void *);
 +#include "glib.h"
-+#include "galias.h"
 +
 +#define pcre_malloc g_try_malloc
 +#define pcre_free g_free
index ea19240..416568a 100644 (file)
@@ -1953,4 +1953,3 @@ main(int argc, char **argv)
     return 0;\r
 }\r
 #endif\r
-\r