Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.59.181
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
aclocal /
[ HOME SHELL ]
Name
Size
Permission
Action
expat.m4
1.41
KB
-rw-r--r--
gettext.m4
14.15
KB
-rw-r--r--
glib-2.0.m4
8.17
KB
-rw-r--r--
glib-gettext.m4
15.38
KB
-rw-r--r--
gsettings.m4
3.5
KB
-rw-r--r--
host-cpu-c-abi.m4
21.91
KB
-rw-r--r--
iconv.m4
9.5
KB
-rw-r--r--
intlmacosx.m4
3.15
KB
-rw-r--r--
lib-ld.m4
5.24
KB
-rw-r--r--
lib-link.m4
33.99
KB
-rw-r--r--
lib-prefix.m4
11.66
KB
-rw-r--r--
libtool.m4
299.49
KB
-rw-r--r--
libxml2.m4
7.72
KB
-rw-r--r--
ltargz.m4
2.51
KB
-rw-r--r--
ltdl.m4
29.34
KB
-rw-r--r--
ltoptions.m4
14.17
KB
-rw-r--r--
ltsugar.m4
4.28
KB
-rw-r--r--
ltversion.m4
699
B
-rw-r--r--
lt~obsolete.m4
6
KB
-rw-r--r--
mysql.m4
4.47
KB
-rw-r--r--
nls.m4
1.21
KB
-rw-r--r--
pkg.m4
10.01
KB
-rw-r--r--
po.m4
18.39
KB
-rw-r--r--
progtest.m4
3.02
KB
-rw-r--r--
xtrans.m4
6.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : expat.m4
dnl Check if --with-expat[=PREFIX] is specified and dnl Expat >= 1.95.0 is installed in the system. dnl If yes, substitute EXPAT_CFLAGS, EXPAT_LIBS with regard to dnl the specified PREFIX and set with_expat to PREFIX, or 'yes' if PREFIX dnl has not been specified. Also HAVE_LIBEXPAT, HAVE_EXPAT_H are defined. dnl If --with-expat has not been specified, set with_expat to 'no'. dnl In addition, an Automake conditional EXPAT_INSTALLED is set accordingly. dnl This is necessary to adapt a whole lot of packages that have expat dnl bundled as a static library. AC_DEFUN([AM_WITH_EXPAT], [ AC_ARG_WITH(expat, [ --with-expat=PREFIX Use system Expat library], , with_expat=no) AM_CONDITIONAL(EXPAT_INSTALLED, test $with_expat != no) EXPAT_CFLAGS= EXPAT_LIBS= if test $with_expat != no; then if test $with_expat != yes; then EXPAT_CFLAGS="-I$with_expat/include" EXPAT_LIBS="-L$with_expat/lib" fi AC_CHECK_LIB(expat, XML_ParserCreate, [ EXPAT_LIBS="$EXPAT_LIBS -lexpat" expat_found=yes ], [ expat_found=no ], "$EXPAT_LIBS") if test $expat_found = no; then AC_MSG_ERROR([Could not find the Expat library]) fi expat_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $EXPAT_CFLAGS" AC_CHECK_HEADERS(expat.h, , expat_found=no) if test $expat_found = no; then AC_MSG_ERROR([Could not find expat.h]) fi CFLAGS="$expat_save_CFLAGS" fi AC_SUBST(EXPAT_CFLAGS) AC_SUBST(EXPAT_LIBS) ])
Close