File tree 4 files changed +5
-12
lines changed
4 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -124,19 +124,15 @@ locations.
124
124
``` bash
125
125
< php-src> /
126
126
├─ .git/ # Git configuration and source directory
127
- └─ TSRM/ # Thread Safe Resource Manager
128
- └─ m4/ # https://github.com/autoconf-archive/autoconf-archive
129
- └─ ax_func_which_gethostbyname_r.m4
130
- └─ ...
127
+ ├─ TSRM/ # Thread Safe Resource Manager
131
128
└─ Zend/ # Zend Engine
132
129
├─ zend_vm_execute.h # Generated by `Zend/zend_vm_gen.php`
133
130
├─ zend_vm_opcodes.c # Generated by `Zend/zend_vm_gen.php`
134
131
├─ zend_vm_opcodes.h # Generated by `Zend/zend_vm_gen.php`
135
132
└─ ...
136
133
├─ appveyor/ # Appveyor CI service files
137
134
└─ build/ # *nix build system files
138
- ├─ ax_check_compile_flag.m4 # https://github.com/autoconf-archive/autoconf-archive
139
- ├─ ax_gcc_func_attribute.m4 # https://github.com/autoconf-archive/autoconf-archive
135
+ ├─ ax_* .m4 # https://github.com/autoconf-archive/autoconf-archive
140
136
├─ config.guess # https://git.savannah.gnu.org/cgit/config.git
141
137
├─ config.sub # https://git.savannah.gnu.org/cgit/config.git
142
138
├─ libtool.m4 # https://git.savannah.gnu.org/cgit/libtool.git
Original file line number Diff line number Diff line change 1
- m4_include ( [ TSRM/m4/ax_func_which_gethostbyname_r.m4] )
2
-
3
1
AC_DEFUN ( [ TSRM_BASIC_CHECKS] ,[
4
2
5
3
AC_REQUIRE ( [ AC_PROG_CC ] ) dnl
6
4
AC_REQUIRE ( [ AC_PROG_RANLIB ] ) dnl
7
5
8
6
AC_CHECK_FUNCS ( sigprocmask )
9
-
10
- AX_FUNC_WHICH_GETHOSTBYNAME_R ( )
11
-
12
7
] )
13
8
14
-
15
9
AC_DEFUN ( [ TSRM_CHECK_PTH] ,[
16
10
17
11
AC_MSG_CHECKING ( for GNU Pth )
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ dnl Include external macro definitions before the AC_INIT to also remove
4
4
dnl comments starting with # and empty newlines from the included files.
5
5
dnl -------------------------------------------------------------------------
6
6
m4_include ( [ build/ax_check_compile_flag.m4] )
7
+ m4_include ( [ build/ax_func_which_gethostbyname_r.m4] )
7
8
m4_include ( [ build/ax_gcc_func_attribute.m4] )
8
9
m4_include ( [ build/libtool.m4] )
9
10
m4_include ( [ build/php_cxx_compile_stdcxx.m4] )
@@ -664,6 +665,8 @@ asprintf \
664
665
nanosleep \
665
666
)
666
667
668
+ AX_FUNC_WHICH_GETHOSTBYNAME_R
669
+
667
670
dnl Some systems (like OpenSolaris) do not have nanosleep in libc
668
671
PHP_CHECK_FUNC_LIB(nanosleep, rt)
669
672
You can’t perform that action at this time.
0 commit comments