Home
last modified time | relevance | path

Searched refs:src (Results 1 – 25 of 187) sorted by last modified time

12345678

/PHP-5.5/win32/
H A Dphp5dll.dsp963 SOURCE=..\ext\bcmath\libbcmath\src\add.c
968 # ADD CPP /I "..\ext\bcmath\libbcmath\src"
973 # ADD CPP /I "..\ext\bcmath\libbcmath\src"
978 # ADD CPP /I "..\ext\bcmath\libbcmath\src"
1029 SOURCE=..\ext\bcmath\libbcmath\src\div.c
1095 SOURCE=..\ext\bcmath\libbcmath\src\init.c
1161 SOURCE=..\ext\bcmath\libbcmath\src\neg.c
1359 SOURCE=..\ext\bcmath\libbcmath\src\rt.c
1381 SOURCE=..\ext\bcmath\libbcmath\src\sqrt.c
1425 SOURCE=..\ext\bcmath\libbcmath\src\sub.c
[all …]
H A Dphp5dllts.dsp988 SOURCE=..\ext\bcmath\libbcmath\src\add.c
993 # ADD CPP /I "..\ext\bcmath\libbcmath\src"
998 # ADD CPP /I "..\ext\bcmath\libbcmath\src"
1003 # ADD CPP /I "..\ext\bcmath\libbcmath\src"
1075 SOURCE=..\ext\bcmath\libbcmath\src\div.c
1162 SOURCE=..\ext\bcmath\libbcmath\src\init.c
1249 SOURCE=..\ext\bcmath\libbcmath\src\neg.c
1510 SOURCE=..\ext\bcmath\libbcmath\src\rt.c
1539 SOURCE=..\ext\bcmath\libbcmath\src\sqrt.c
1597 SOURCE=..\ext\bcmath\libbcmath\src\sub.c
[all …]
H A Dphp5ts.dsw48 Project: "libsqlite"=..\ext\sqlite\libsqlite\src\libsqlite.dsp - Package Owner=<4>
H A Dinstall.txt1174 under the php-src/ext/ directory and tell the PHP build system to
1433 [mybox:user /src/php5] root# apachectl configtest
1581 rpm -Uvh mod_php3-3.0.5-2.src.rpm
1583 * Then edit the /usr/src/redhat/SPECS/mod_php3.spec file
1601 rpm -bb /usr/src/redhat/SPECS/mod_php3.spec
1605 rpm -ivh /usr/src/redhat/RPMS/i386/mod_php3-3.0.5-2.i386.rpm
1644 [mybox:user /src/php5] root# apachectl configtest
/PHP-5.5/win32/build/
H A Dconfutils.js1396 var src, obj, sym, flags;
1453 src = file_list[i];
1454 obj = src.replace(re, ".obj");
1463 srcs_line = dir + "\\" + src;
2239 src = headers_list[i];
2240 src = src.replace(new RegExp("/", "g"), "\\");
2242 isfile = FSO.FileExists(dir + src);
2244 if (src.length > 0 && src.substr(src.length - 1) != '/' && src.substr(src.length - 1) != '\\') {
2245 src += '\\';
2260 if (src.length > 0 && src.substr(src.length - 1) != '/' && src.substr(src.length - 1) != '\\') {
[all …]
H A Dmkdist.php243 foreach ($text_files as $src => $dest) {
244 copy_text_file($src, $dist_dir . '/' . $dest);
253 foreach ($general_files as $src => $dest) {
254 copy($src, $dist_dir . '/' . $dest);
H A Dprojectgen.js40 var src = FSO.CreateTextFile("tmp\\src\\" + fname, true);
59 src.WriteLine("# Begin Source File");
60 src.WriteLine("SOURCE=" + arr[i]);
61 src.WriteLine('# PROP Intermediate_Dir "' + intpath + out + '\\' + path + libpath + '"');
62 src.WriteLine("# End Source File");
63 src.WriteBlankLines(1);
67 src.Close();
411 src = src.replace(/\.\.\\\.\.\\/g, "..\\");
415 CORE_SOURCES += begins + src + "# End Group\r\n";
418 EXT_SOURCES += begins + src + "# End Group\r\n";
/PHP-5.5/
H A Dserver-tests.php149 function copyfiles($src,$new) { argument
150 $d = dir($src);
152 if (is_file("$src/$entry")) {
153 copy("$src/$entry", "$new/$entry");
829 foreach ($dirs as $src=>$new) {
831 copyfiles($src,$new);
H A Dphp.ini-development162 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
163 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
164 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1545 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1546 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1547 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1549 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
H A Dphp.ini-production162 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
163 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
164 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1545 ; Default Value: "a=href,area=href,frame=src,form=,fieldset="
1546 ; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1547 ; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
1549 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1217 +src application/x-wais-source
/PHP-5.5/sapi/webjames/
H A DREADME22 --with-webjames=../webjames/src \
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_str.h8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ in str_purify_filename() argument
15 for (; d < end && *src; ++d, ++src) { in str_purify_filename()
16 if (* (unsigned char *) src < ' ' || * (unsigned char *) src > '\x7f') { in str_purify_filename()
19 *d = *src; in str_purify_filename()
/PHP-5.5/sapi/continuity/
H A Dconfig.m416 AC_MSG_ERROR([Cannot find your CAPI include files in either DIR/src or DIR/include])
/PHP-5.5/sapi/apache_hooks/
H A Dconfig.w329 ";" + PHP_PHP_BUILD + "\\apache\\src\\include") &&
12 ";" + PHP_PHP_BUILD + "\\apache\\src\\corer")) {
H A Dphp5apache_hooks.dsp47 …\regex" /I "..\.." /I "..\..\..\bindlib_w32" /I "..\..\..\php_build\apache\src\include" /I "..\..\…
57 …00000" /version:4.0 /dll /machine:I386 /libpath:"..\..\..\php_build\apache\src\corer" /libpath:"..…
73 …\regex" /I "..\.." /I "..\..\..\bindlib_w32" /I "..\..\..\php_build\apache\src\include" /I "..\..\…
83 …TS/php5apache_hooks.dll" /pdbtype:sept /libpath:"..\..\..\php_build\apache\src\cored" /libpath:"..…
99 …\regex" /I "..\.." /I "..\..\..\bindlib_w32" /I "..\..\..\php_build\apache\src\include" /I "..\..\…
109 …lib odbccp32.lib /nologo /version:4.0 /dll /machine:I386 /libpath:"\apache\src\corer" /libpath:"..…
H A DapMakefile.tmpl3 ## [src/modules/php5/Makefile.tmpl]
H A Dconfig.m4146 if test -f $PHP_APACHE_HOOKS_STATIC/src/httpd.h; then
147 APACHE_INCLUDE=-I$PHP_APACHE_HOOKS_STATIC/src
148 APACHE_TARGET=$PHP_APACHE_HOOKS_STATIC/src
154 if test -f $PHP_APACHE_HOOKS_STATIC/src/ap_config.h; then
161 elif test -f $PHP_APACHE_HOOKS_STATIC/src/main/httpd.h; then
163 …_INCLUDE="-I$PHP_APACHE_HOOKS_STATIC/src/main -I$PHP_APACHE_HOOKS_STATIC/src/os/unix -I$PHP_APACHE…
164 APACHE_TARGET=$PHP_APACHE_HOOKS_STATIC/src/modules/php5
187 APACHE_INCLUDE="-I$PHP_APACHE_HOOKS_STATIC/src/include -I$PHP_APACHE_HOOKS_STATIC/src/os/unix"
188 APACHE_TARGET=$PHP_APACHE_HOOKS_STATIC/src/modules/php5
220 if test -f $PHP_APACHE_HOOKS_STATIC/src/ap_compat.h; then
[all …]
/PHP-5.5/sapi/apache2filter/
H A DREADME23 $ cd src
/PHP-5.5/sapi/apache2handler/
H A DREADME27 $ cd src
/PHP-5.5/sapi/aolserver/
H A DREADME31 --with-aolserver-src=/path/to/source/distribution
H A Dconfig.m415 …ROR(Please specify the path to the source distribution of AOLserver using --with-aolserver-src=DIR)
/PHP-5.5/sapi/apache/
H A DapMakefile.tmpl3 ## [src/modules/php5/Makefile.tmpl]
H A Dconfig.m4144 if test -f $PHP_APACHE/src/httpd.h; then
145 APACHE_INCLUDE=-I$PHP_APACHE/src
146 APACHE_TARGET=$PHP_APACHE/src
152 if test -f $PHP_APACHE/src/ap_config.h; then
159 elif test -f $PHP_APACHE/src/main/httpd.h; then
161 APACHE_INCLUDE="-I$PHP_APACHE/src/main -I$PHP_APACHE/src/os/unix -I$PHP_APACHE/src/ap"
162 APACHE_TARGET=$PHP_APACHE/src/modules/php5
185 APACHE_INCLUDE="-I$PHP_APACHE/src/include -I$PHP_APACHE/src/os/unix"
186 APACHE_TARGET=$PHP_APACHE/src/modules/php5
218 if test -f $PHP_APACHE/src/ap_compat.h; then
[all …]
H A Dconfig.w3212 ";" + PHP_PHP_BUILD + "\\apache\\src\\include") &&
15 ";" + PHP_PHP_BUILD + "\\apache\\src\\corer")) {

Completed in 62 milliseconds

12345678