Home
last modified time | relevance | path

Searched refs:m4 (Results 1 – 23 of 23) sorted by relevance

/PHP-7.4/scripts/
H A DMakefile.frag9 scripts/phpize.m4 \
10 build/libtool.m4 \
12 build/ax_check_compile_flag.m4 \
13 build/ax_gcc_func_attribute.m4 \
14 build/php_cxx_compile_stdcxx.m4 \
15 build/pkg.m4 \
17 build/php.m4 \
H A Dphpize.m45 m4_include([build/ax_check_compile_flag.m4])
6 m4_include([build/ax_gcc_func_attribute.m4])
7 m4_include([build/libtool.m4])
8 m4_include([build/php_cxx_compile_stdcxx.m4])
9 m4_include([build/php.m4])
10 m4_include([build/pkg.m4])
14 AC_CONFIG_SRCDIR([config.m4])
147 sinclude(config.m4)
H A Dphpize.in51 if test ! -r config.m4; then
162 rm -f aclocal.m4
/PHP-7.4/build/
H A Dconfig-stubs4 for stubfile in $dir/*/config0.m4 $dir/*/config.m4 $dir/*/config9.m4; do
H A Dpkg.m41 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
35 dnl of pkg.m4 when generating configure.
46 [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
88 dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
H A Dphp.m4249 dnl Append to the array which has been dynamically chosen at m4 time.
1579 dnl definition that has been tested so far with FreeBSD/GNU m4.
H A Dlibtool.m41 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
1668 case $LD in # libtool.m4 will add one of these switches to LD
3937 echo "libtool.m4: error: problem compiling $1 test program"
/PHP-7.4/ext/skeleton/
H A D.gitignore.in4 acinclude.m4
5 aclocal.m4
H A Dconfig.m4.in1 dnl config.m4 for extension %EXTNAME%
/PHP-7.4/docs/
H A Dunix-build-system.md40 the `config.m4` now using the following macro:
42 ```m4
52 ```m4
56 Please have a look at `build/php.m4` for the gory details and meanings of the
65 ```m4
76 ```m4
84 can do this by calling `PHP_ADD_MAKEFILE_FRAGMENT` in your `config.m4` after
101 ```m4
110 ```m4
121 `build/php.m4`.
H A Dself-contained-extensions.md6 * Configuration file (config.m4)
17 * GNU m4
77 The m4 configuration can perform additional checks. For a self-contained
80 ```m4
114 Put `config.m4` and the source files into one directory. Then, run `phpize`
124 your `config.m4`.
144 1. In `config.m4`, use `PHP_ARG_WITH/PHP_ARG_ENABLE`. Then you will
148 2. In `config.m4`, use `PHP_NEW_EXTENSION(foo,.., $ext_shared)` to enable
/PHP-7.4/ext/standard/tests/array/
H A Dbug34227.phpt20 $this->m4();
23 function m4()
/PHP-7.4/
H A D.editorconfig20 [*.{ac,m4,sh,yml}]
H A Dbuildconf117 aclocal.m4 \
H A Dconfigure.ac6 m4_include([build/ax_check_compile_flag.m4])
7 m4_include([build/ax_func_which_gethostbyname_r.m4])
8 m4_include([build/ax_gcc_func_attribute.m4])
9 m4_include([build/libtool.m4])
10 m4_include([build/php_cxx_compile_stdcxx.m4])
11 m4_include([build/php.m4])
12 m4_include([build/pkg.m4])
13 m4_include([TSRM/threads.m4])
14 m4_include([TSRM/tsrm.m4])
312 sinclude(Zend/Zend.m4)
H A DUPGRADING.INTERNALS268 - Local PHP m4 unused or obsolete macros have been removed:
273 - Local PHP_TM_GMTOFF m4 macro replaced with Autoconf's AC_CHECK_MEMBERS.
H A DCONTRIBUTING.md144 ├─ ax_*.m4 # https://github.com/autoconf-archive/autoconf-archive
147 ├─ libtool.m4 # https://git.savannah.gnu.org/cgit/libtool.git
/PHP-7.4/ext/mysqli/
H A Dconfig.m41 dnl ext/pdo_mysql/config.m4 also depends on this macro.
34 dnl ext/pdo_mysql/config.m4 also depends on this configure option.
/PHP-7.4/ext/gd/libgd/
H A Dgd_interpolation.c701 const double m4 = nxf * nyf; in getPixelInterpolateWeight() local
715 …orGetRed(c1) + m2*gdTrueColorGetRed(c2) + m3*gdTrueColorGetRed(c3) + m4*gdTrueColorGetRed(c4… in getPixelInterpolateWeight()
716 …orGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m4*gdTrueColorGetGreen(… in getPixelInterpolateWeight()
717 …orGetBlue(c1) + m2*gdTrueColorGetBlue(c2) + m3*gdTrueColorGetBlue(c3) + m4*gdTrueColorGetBlue(c… in getPixelInterpolateWeight()
718 …orGetAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m4*gdTrueColorGetAlpha(… in getPixelInterpolateWeight()
720 r = (int)(m1*im->red[(c1)] + m2*im->red[(c2)] + m3*im->red[(c3)] + m4*im->red[(c4)]); in getPixelInterpolateWeight()
721 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight()
722 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight()
723 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
/PHP-7.4/ext/pdo_mysql/
H A Dconfig.m417 dnl This depends on ext/mysqli/config.m4 providing the PHP_MYSQL_SOCKET_SEARCH
/PHP-7.4/ext/oci8/
H A Dconfig.m488 dnl This mimics PHP_INIT_DTRACE from build/php.m4. It is necessarily different
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます18458 # $File: m4,v 1.3 2019/02/27 16:46:23 christos Exp $
18463 !:mime text/x-m4
18467 !:mime text/x-m4
25401 # sendmail: file(1) magic for sendmail m4(1) files
25406 0 string divert(-1)\n sendmail m4 text file
H A Dmagic18458 # $File: m4,v 1.3 2019/02/27 16:46:23 christos Exp $
18463 !:mime text/x-m4
18467 !:mime text/x-m4
25401 # sendmail: file(1) magic for sendmail m4(1) files
25406 0 string divert(-1)\n sendmail m4 text file

Completed in 151 milliseconds