diff options
author | tv <tv@pkgsrc.org> | 1999-05-03 19:45:43 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-03 19:45:43 +0000 |
commit | 0e52b10d4f3bddb695b9453f50401169c233e50d (patch) | |
tree | 33cbabe0d68c08cea3e1759576b2f622a5f8e014 /www/php3/patches/patch-ad | |
parent | c269a0f3676ebe61b7f69b0731d1d247fe88c013 (diff) | |
download | pkgsrc-0e52b10d4f3bddb695b9453f50401169c233e50d.tar.gz |
Make the php3 pkg work and add full dynamic module support. This includes:
- the CGI-based interpreter, xbase support binaries, and php2 converter
- compiled-in support for Berkeley DB (ndbm), yp, zlib, dBase (xbase),
and filePro
- the ability to compile PHP3 extensions as dynamic modules (such as support
for MySQL/PostgreSQL/freeODBC) that may be exchanged freely between
different server interfaces to PHP (abstractions.c and php.h/tls.h patches)
Diffstat (limited to 'www/php3/patches/patch-ad')
-rw-r--r-- | www/php3/patches/patch-ad | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/www/php3/patches/patch-ad b/www/php3/patches/patch-ad new file mode 100644 index 00000000000..71868439bf1 --- /dev/null +++ b/www/php3/patches/patch-ad @@ -0,0 +1,20 @@ +$NetBSD: patch-ad,v 1.1 1999/05/03 19:45:44 tv Exp $ + +--- Makefile.in.orig Sun May 2 16:20:41 1999 ++++ Makefile.in Sun May 2 16:21:02 1999 +@@ -58,13 +58,13 @@ + snprintf.c php3_sprintf.c alloc.c list.c highlight.c debugger.c \ + configuration-parser.tab.c configuration-scanner.c \ + request_info.c safe_mode.c fopen-wrappers.c constants.c \ +- php3_realpath.c alloca.c php_compat.c ++ php3_realpath.c alloca.c php_compat.c abstractions.c + OBJS = language-parser.tab.o language-scanner.o main.o php3_hash.o operators.o \ + variables.o token_cache.o stack.o internal_functions.o \ + snprintf.o php3_sprintf.o alloc.o list.o highlight.o debugger.o \ + configuration-parser.tab.o configuration-scanner.o \ + request_info.o safe_mode.o fopen-wrappers.o constants.o \ +- php3_realpath.o alloca.o php_compat.o @LIBOBJS@ ++ php3_realpath.o alloca.o php_compat.o abstractions.o @LIBOBJS@ + + FUNCTIONS_SOURCE = functions/adabasd.c functions/aspell.c functions/apache.c functions/fhttpd.c \ + functions/basic_functions.c \ |