aboutsummaryrefslogtreecommitdiff
path: root/build-aux/m4/ax_gcc_func_attribute.m4
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2014-11-06 22:18:08 -0500
committerCory Fields <cory-nospam-@coryfields.com>2014-11-19 22:08:27 -0500
commitee64c53c1fdcadf00138b7e6fdf44a1c433db9f8 (patch)
tree1958ef329d644d52fe719f0fce2707ef62cb00a5 /build-aux/m4/ax_gcc_func_attribute.m4
parentf36a40f7fd948781656e730338a1ae647e7c4928 (diff)
downloadbitcoin-ee64c53c1fdcadf00138b7e6fdf44a1c433db9f8.tar.xz
build: remove internal/protected build attribute checks
They're not necessary, and not always supported. We only need to know about hidden and default.
Diffstat (limited to 'build-aux/m4/ax_gcc_func_attribute.m4')
-rw-r--r--build-aux/m4/ax_gcc_func_attribute.m42
1 files changed, 0 insertions, 2 deletions
diff --git a/build-aux/m4/ax_gcc_func_attribute.m4 b/build-aux/m4/ax_gcc_func_attribute.m4
index de11303e7b..275ca63a2c 100644
--- a/build-aux/m4/ax_gcc_func_attribute.m4
+++ b/build-aux/m4/ax_gcc_func_attribute.m4
@@ -180,8 +180,6 @@ AC_DEFUN([AX_GCC_FUNC_ATTRIBUTE], [
[visibility], [
int foo_def( void ) __attribute__(($1("default")));
int foo_hid( void ) __attribute__(($1("hidden")));
- int foo_int( void ) __attribute__(($1("internal")));
- int foo_pro( void ) __attribute__(($1("protected")));
],
[warning], [
int foo( void ) __attribute__(($1("")));