diff options
| author | Edin Kadribasic <edink@php.net> | 2002-01-20 02:30:18 +0000 |
|---|---|---|
| committer | Edin Kadribasic <edink@php.net> | 2002-01-20 02:30:18 +0000 |
| commit | f5790b0a7c1af118db4009dbbf89660bf5a2f097 (patch) | |
| tree | af7a89d064009001fbd39c90c4a06ecbeb397a05 /sapi/cli | |
| parent | 7de51385c26f434727c6da30dbae3d0abe58496e (diff) | |
| download | php-git-f5790b0a7c1af118db4009dbbf89660bf5a2f097.tar.gz | |
Modified the build system to make certain extensions (pcntl, ncurses,
pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional
parameter to PHP_EXTENSION macro which should be set to "cli" if
the extension only makes sense for that class of api's.
Diffstat (limited to 'sapi/cli')
| -rw-r--r-- | sapi/cli/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/cli/Makefile.in b/sapi/cli/Makefile.in index 0a10b98860..a58aab9000 100644 --- a/sapi/cli/Makefile.in +++ b/sapi/cli/Makefile.in @@ -3,9 +3,10 @@ LTLIBRARY_SOURCES = php_cli.c getopt.c LTLIBRARY_DEPENDENCIES = \ $(top_builddir)/Zend/libZend.la \ - $(top_builddir)/main/libmain.la \ + $(top_builddir)/main/libmain_cli.la \ $(top_builddir)/$(REGEX_LIB) \ $(EXT_LTLIBS) \ + $(EXT_CLI_LTLIBS) \ $(top_builddir)/$(TSRM_LIB) LTLIBRARY_LDFLAGS = -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDFLAGS) $(PHP_RPATHS) |
