diff options
author | Clive Lin <clive@FreeBSD.org> | 2001-10-20 14:09:31 +0000 |
---|---|---|
committer | Clive Lin <clive@FreeBSD.org> | 2001-10-20 14:09:31 +0000 |
commit | 34e568590860da13bcc3743d45071722dcd8f4bf (patch) | |
tree | 8b0daa7cf159369eba1dc766092ace7ad496324b /www/apache13-fp/files/patch-fh | |
parent | Include `-I${PREFIX}/include' into `freetype-config --cflags' output, because (diff) |
Upgrade to Apache 1.3.22, and
* fix libdescrypt detection: libdescrypt is only needed for
OSVERSION < 430001 or OSVERSION > 499999 and OSVERSION < 500014,
due to libdescrypt has been combined into the libcrypt library
on recent FreeBSD versions.
* default to using the FreeBSD Frontpage Extentions on i386.
There maybe problems with fpsrvadm.exe when it creates passwords
on a system that by default uses MD5 passwords. May need to set
roots passwd_format to des and change the password, before
installing (login.conf). BSDi FrontPage Extentions can be used
by defining WANT_BSDI_EXT.
* Added dependacy on misc/compat3x for the FreeBSD FP Exts.
* Moved execfilename to the end of the request_rec structure
in httpd.h, so that it would stop breaking binary compatiblity
with other pre-compiled Apache modules. This should allow
compiled modules build for www/apache13 to also work on
www/apache13-fp without needing to recompile them.
* Removed the Virtual host on port 8080 from httpd.conf, due to
the manual directory is now exported using an Alias, which
assigns it to a location on the main document root.
* Moved the Frontpage documents from manual/mod/mod_frontpage to
manual/frontpage. (Avoids patching manual/mod/index.html*)
PR: ports/31361
Submitted by: Scot W. Hetzel <hetzels@westbend.net> (MAINTAINER)
Notes
Notes:
svn path=/head/; revision=48992
Diffstat (limited to 'www/apache13-fp/files/patch-fh')
-rw-r--r-- | www/apache13-fp/files/patch-fh | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/www/apache13-fp/files/patch-fh b/www/apache13-fp/files/patch-fh index a5090a058de8..0e45ae964f41 100644 --- a/www/apache13-fp/files/patch-fh +++ b/www/apache13-fp/files/patch-fh @@ -1,16 +1,10 @@ ---- src/include/httpd.h.orig Mon Aug 16 12:57:53 1999 -+++ src/include/httpd.h Mon Sep 6 13:12:55 1999 -@@ -774,7 +774,12 @@ +--- src/include/httpd.h.orig Mon Oct 8 22:56:05 2001 ++++ src/include/httpd.h Wed Oct 17 14:37:56 2001 +@@ -855,6 +855,7 @@ + * record to improve 64bit alignment the next time we need to break + * binary compatibility for some other reason. + */ ++ char *execfilename; /* physical filename to exec */ + }; + - char *unparsed_uri; /* the uri without any parsing performed */ - char *uri; /* the path portion of the URI */ -- char *filename; -+ char *execfilename; /* physical filename to exec */ -+ char *filename; /* logical filename to exec -- always the same -+ * except for FrontPage CGI programs where we -+ * will execute the CGI program in -+ * /usr/local/frontpage.... -+ */ - char *path_info; - char *args; /* QUERY_ARGS, if any */ - struct stat finfo; /* ST_MODE set to zero if no such file */ |