]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Don't use internal visibility anywhere.
authorUlrich Drepper <drepper@redhat.com>
Wed, 12 Jul 2006 18:39:51 +0000 (18:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 12 Jul 2006 18:39:51 +0000 (18:39 +0000)
ChangeLog
configure.ac

index ece0af15b27b13237eb6a88b90c766680332b76f..aa95ce231e47155c96e2a240a212ed88d5d6431b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-07-12  Ulrich Drepper  <drepper@redhat.com>
+
+       * configure.ac (internal_function): Don't use internal visibility.
+
 2006-07-05  Ulrich Drepper  <drepper@redhat.com>
 
        * configure.ac: Add dummy automake conditional to get dependencies
index ec6286edb98ecfc47594ed0683014410c3d00d27..de81c68c38b5c98ea8cfe7a7fa046ed7ec2620f4 100644 (file)
@@ -246,15 +246,13 @@ AH_BOTTOM([
   extern __typeof (name) aliasname __attribute__ ((alias (#name)));
 
 #ifdef __i386__
-# define internal_function_def __attribute__ ((regparm (3), stdcall))
+# define internal_function __attribute__ ((regparm (3), stdcall))
 #else
-# define internal_function_def /* nothing */
+# define internal_function /* nothing */
 #endif
 
-# define internal_function \
-  internal_function_def __attribute__ ((visibility ("internal")))
-# define internal_strong_alias(name, aliasname) \
-  extern __typeof (name) aliasname __attribute__ ((alias (#name), visibility ("internal"))) internal_function_def;
+#define internal_strong_alias(name, aliasname) \
+  extern __typeof (name) aliasname __attribute__ ((alias (#name))) internal_function;
 
 #define attribute_hidden \
   __attribute__ ((visibility ("hidden")))