summaryrefslogtreecommitdiff
path: root/sapi/cgi/Makefile.frag
Commit message (Collapse)AuthorAgeFilesLines
* Only link fastcgi into fpm and cgiXinchen Hui2015-05-261-1/+1
|
* Fix #61345: fix install of CGI binaryMichael Heimpold2013-08-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | When CLI was not built but only CGI binary, then a sequence of $ ./buildconf $ ./configure --prefix=/usr/local/phpcgi --disable-cli $ make -j8 $ sudo rm -rf /usr/local/phpcgi $ sudo make install results in the following error: /bin/bash /srv/smb/php-src.test/libtool --silent --preserve-dup-deps --mode=install cp ext/opcache/opcache.la /srv/smb/php-src.test/modules Installing shared extensions: /usr/local/phpcgi/lib/php/extensions/no-debug-non-zts-20121212/ Installing PHP CGI binary: /usr/local/phpcgi/bin/ cp: cannot create regular file `/usr/local/phpcgi/bin/#INST@28245#': No such file or directory make: *** [install-cgi] Fehler 1 The solution is to create the binary directory before copying the CGI binary as e.g. CLI does. Signed-off-by: Oliver Metz <oliver.metz@gmx.de> [extensive commit message] Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* Fixed Bug #65143 Missing php-cgi man pageRemi Collet2013-07-021-0/+3
| | | | | | | Currently php-cgi man page is a simple redirect to php (CLI) man page. Could be splited / improved in the future.
* - Implemented FR #53271, FR #52410 (Building multiple PHP binary SAPIs and ↵Jani Taskinen2010-11-131-1/+8
| | | | | | | one SAPI module the same time) # Bug #53271, Bug #52410
* Fix install-sapi dependency - it should depend on OVERALL_TARGET, of course.Sascha Schumann2003-07-021-4/+0
|
* - Separate CGI build from regular SAPI buildfoobar2003-07-011-0/+4
| | | | | | | | # Creating the libphp5.a lib is not necessary for CGI build. # # btw. It would be quite easy to build CGI, CLI and for example Apache SAPI # the same time.. :)
* Follow Yasuo's suggestion and build sapi program's under the sapi-specificSascha Schumann2002-09-291-0/+2
directory. Move sapi-specific makefile fragments to their respective directory. Create an embed sapi module which resides in its own dir now.