[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
aclocal
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 bison-i18n.m4
1,924 B
SET
[ EDIT ]
|
[ DEL ]
📄 codeset.m4
842 B
SET
[ EDIT ]
|
[ DEL ]
📄 dovecot-pigeonhole.m4
1,895 B
SET
[ EDIT ]
|
[ DEL ]
📄 extern-inline.m4
4,368 B
SET
[ EDIT ]
|
[ DEL ]
📄 fcntl-o.m4
4,668 B
SET
[ EDIT ]
|
[ DEL ]
📄 fontutil.m4
14,160 B
SET
[ EDIT ]
|
[ DEL ]
📄 freetype2.m4
6,333 B
SET
[ EDIT ]
|
[ DEL ]
📄 gettext.m4
15,859 B
SET
[ EDIT ]
|
[ DEL ]
📄 glibc2.m4
830 B
SET
[ EDIT ]
|
[ DEL ]
📄 glibc21.m4
907 B
SET
[ EDIT ]
|
[ DEL ]
📄 gpg-error.m4
4,757 B
SET
[ EDIT ]
|
[ DEL ]
📄 gpgrt.m4
4,717 B
SET
[ EDIT ]
|
[ DEL ]
📄 iconv.m4
9,274 B
SET
[ EDIT ]
|
[ DEL ]
📄 intdiv0.m4
2,411 B
SET
[ EDIT ]
|
[ DEL ]
📄 intl.m4
12,120 B
SET
[ EDIT ]
|
[ DEL ]
📄 intldir.m4
917 B
SET
[ EDIT ]
|
[ DEL ]
📄 intlmacosx.m4
2,533 B
SET
[ EDIT ]
|
[ DEL ]
📄 intmax.m4
1,123 B
SET
[ EDIT ]
|
[ DEL ]
📄 inttypes-pri.m4
1,253 B
SET
[ EDIT ]
|
[ DEL ]
📄 inttypes_h.m4
1,020 B
SET
[ EDIT ]
|
[ DEL ]
📄 lcmessage.m4
1,365 B
SET
[ EDIT ]
|
[ DEL ]
📄 lib-ld.m4
3,683 B
SET
[ EDIT ]
|
[ DEL ]
📄 lib-link.m4
33,059 B
SET
[ EDIT ]
|
[ DEL ]
📄 lib-prefix.m4
8,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 libgcrypt.m4
6,237 B
SET
[ EDIT ]
|
[ DEL ]
📄 libtool.m4
305,862 B
SET
[ EDIT ]
|
[ DEL ]
📄 libxml.m4
7,881 B
SET
[ EDIT ]
|
[ DEL ]
📄 libxslt.m4
8,119 B
SET
[ EDIT ]
|
[ DEL ]
📄 lock.m4
1,463 B
SET
[ EDIT ]
|
[ DEL ]
📄 longlong.m4
4,739 B
SET
[ EDIT ]
|
[ DEL ]
📄 ltargz.m4
2,569 B
SET
[ EDIT ]
|
[ DEL ]
📄 ltdl.m4
30,030 B
SET
[ EDIT ]
|
[ DEL ]
📄 ltoptions.m4
14,514 B
SET
[ EDIT ]
|
[ DEL ]
📄 ltsugar.m4
4,384 B
SET
[ EDIT ]
|
[ DEL ]
📄 ltversion.m4
699 B
SET
[ EDIT ]
|
[ DEL ]
📄 lt~obsolete.m4
6,140 B
SET
[ EDIT ]
|
[ DEL ]
📄 mysql.m4
4,221 B
SET
[ EDIT ]
|
[ DEL ]
📄 nls.m4
1,223 B
SET
[ EDIT ]
|
[ DEL ]
📄 pkg.m4
12,670 B
SET
[ EDIT ]
|
[ DEL ]
📄 po.m4
18,969 B
SET
[ EDIT ]
|
[ DEL ]
📄 printf-posix.m4
1,579 B
SET
[ EDIT ]
|
[ DEL ]
📄 progtest.m4
3,092 B
SET
[ EDIT ]
|
[ DEL ]
📄 size_max.m4
3,064 B
SET
[ EDIT ]
|
[ DEL ]
📄 stdint_h.m4
995 B
SET
[ EDIT ]
|
[ DEL ]
📄 threadlib.m4
15,151 B
SET
[ EDIT ]
|
[ DEL ]
📄 uintmax_t.m4
1,113 B
SET
[ EDIT ]
|
[ DEL ]
📄 visibility.m4
3,351 B
SET
[ EDIT ]
|
[ DEL ]
📄 wchar_t.m4
818 B
SET
[ EDIT ]
|
[ DEL ]
📄 wint_t.m4
1,053 B
SET
[ EDIT ]
|
[ DEL ]
📄 xsize.m4
406 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: extern-inline.m4
dnl 'extern inline' a la ISO C99. dnl Copyright 2012-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. AC_DEFUN([gl_EXTERN_INLINE], [ AH_VERBATIM([extern_inline], [/* Please see the Gnulib manual for how to use these macros. Suppress extern inline with HP-UX cc, as it appears to be broken; see <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>. Suppress extern inline with Sun C in standards-conformance mode, as it mishandles inline functions that call each other. E.g., for 'inline void f (void) { } inline void g (void) { f (); }', c99 incorrectly complains 'reference to static identifier "f" in extern inline function'. This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. Suppress extern inline (with or without __attribute__ ((__gnu_inline__))) on configurations that mistakenly use 'static inline' to implement functions or macros in standard C headers like <ctype.h>. For example, if isdigit is mistakenly implemented via a static inline function, a program containing an extern inline function that calls isdigit may not work since the C standard prohibits extern inline functions from calling static functions. This bug is known to occur on: OS X 10.8 and earlier; see: http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html DragonFly; see http://muscles.dragonflybsd.org/bulk/bleeding-edge-potential/latest-per-pkg/ah-tty-0.3.12.log FreeBSD; see: http://lists.gnu.org/archive/html/bug-gnulib/2014-07/msg00104.html OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and for clang but remains for g++; see <http://trac.macports.org/ticket/41033>. Assume DragonFly and FreeBSD will be similar. */ #if (((defined __APPLE__ && defined __MACH__) \ || defined __DragonFly__ || defined __FreeBSD__) \ && (defined __header_inline \ ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ && ! defined __clang__) \ : ((! defined _DONT_USE_CTYPE_INLINE_ \ && (defined __GNUC__ || defined __cplusplus)) \ || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ && defined __GNUC__ && ! defined __cplusplus)))) # define _GL_EXTERN_INLINE_STDHEADER_BUG #endif #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : (199901L <= __STDC_VERSION__ \ && !defined __HP_cc \ && !defined __PGI \ && !(defined __SUNPRO_C && __STDC__))) \ && !defined _GL_EXTERN_INLINE_STDHEADER_BUG) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline # define _GL_EXTERN_INLINE_IN_USE #elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ && !defined _GL_EXTERN_INLINE_STDHEADER_BUG) # if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern # define _GL_EXTERN_INLINE_IN_USE #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif /* In GCC 4.6 (inclusive) to 5.1 (exclusive), suppress bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>. */ #if __GNUC__ == 4 && 6 <= __GNUC_MINOR__ # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif]) ])