- Feb 04, 1998
-
-
pcs authored
to Configure. This updates the top-level Makefile to add any link flags required to export global (API) functions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80110 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
Configure auto-creates a Makefile to build the module). Submitted by: Alexei git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80109 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
Configure. Looks for -ldl if dlopen() isn't already available. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80108 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 03, 1998
-
-
Ken Coar authored
potential change to quoting it entails. Submitted by: Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80106 13f79535-47bb-0310-9956-ffa450edef68
-
Randy Terbush authored
of people have pointed out, this is probably too major a change this late in the game. My main intent was to clean up some of the code where read()/write() is called in buff.c. Putting these in libap seemed the logical place, but opens a whole can of worms I did not forsee. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80105 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
use construct_url() because http_core.h wasn't included. Include it to get construct_url()'s prototype. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80104 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80103 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
Anonymous proxy error messages are just plain annoying. Now the proxy error messages can be server-signed as well git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80102 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
still pretty minimal. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80101 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80099 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80098 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80097 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80096 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80095 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
SharedModule, indicates that a module should be built as a shared library. For example: SharedModule modules/standard/mod_status.so (note the change of extension). Building Apache will then build modules/standard/mod_status.so. This should be copied into somewhere under the server root and loaded with a directive like: LoadModule status_module modules/mod_status.so The compiler and linker flags for creating shareable and shared modules will need adding for the supported OSes. I've put some default ones in for FreeBSD and Linux. This can also be set in the Configuration file (if set here, it will override the defaults contained within the Configure script). If there are no SharedModule lines none of these extra options will be used anywhere in the build process. If the final link of httpd requires any extra libraries (typically -ldl) this will have to be given on EXTRA_LIBS in Configuration. The Configure variables and Configuration options are CFLAGS_SHLIB Options when building .o files ready for sharing (e.g. -fpic) LDFLAGS_SHLIB Options when linking .o files to .so (e.g. -Bshareable, -export, -assert pure-text) LDFLAGS_SHLIB_EXPORT Options required when linking httpd so that it exports its symbols for linking at runtime (e.g. -Bdynamic, -rdynamic, -export-dynamic) The options used in Configure could be placed in Configuration like this: CFLAGS_SHLIB=-fpic LDFLAGS_SHLIB=-Bshareable LDFLAGS_SHLIB_EXPORT=-rdynamic git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80094 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80093 13f79535-47bb-0310-9956-ffa450edef68
-
pcs authored
It will be marked as experimental in Configuration.tmpl. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80092 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80091 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80090 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
We preserve all the original functionality at the expense of some extra memory because we don't clean up subrequests. Plus a bug is fixed -- if mod_include is not the only module using run_sub_request() then it was possible that add_xxx_vars() wouldn't be done, and the environment would be incorrect. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80089 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80087 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80086 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
get_path_info(), assume the path info has already been discovered. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80085 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
a handler git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80084 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
so create a scratch space when we need to scratch. r->finfo.st_mode == 0 should be tested before other things involving r->finfo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80083 13f79535-47bb-0310-9956-ffa450edef68
-
Randy Terbush authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80082 13f79535-47bb-0310-9956-ffa450edef68
-
Randy Terbush authored
to add in different types of read/write libraries in a central location. This mainly keeps buff.c less messy with #ifdefs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80081 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 02, 1998
-
-
Randy Terbush authored
The proxy may still need some work, but will defer until I can review these changes with others. Obtained from: Ben Laurie, Randy Terbush Reviewed by: Ben Laurie, Randy Terbush git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80080 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
Options -indexes <VirtualHost 127.0.0.1> Options +indexes </VirtualHost> No longer do -'ves have priority over +'ves. We just record the last change to each bit. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80078 13f79535-47bb-0310-9956-ffa450edef68
-
- Feb 01, 1998
-
-
dgaudet authored
redirects are generated. This was at least approved in spirit by a handful of folks two weeks ago. The default should be no behaviour change. This changes the prototype of construct_url(), and adds two new API functions: get_server_name() and get_server_port(). So the MODULE_MAGIC_NUMBER has been bumped. PR: 315, 459, 485, 1433 Submitted by: Michael Douglass <mikedoug@texas.net>, Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80077 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80075 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80074 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
don't need to replace space with confusion in the Makefile. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80073 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80072 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
just forgot. :-) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80071 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80070 13f79535-47bb-0310-9956-ffa450edef68
-
Ken Coar authored
and Makefiles that reference them. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80069 13f79535-47bb-0310-9956-ffa450edef68
-
dgaudet authored
always have :port removed from it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80068 13f79535-47bb-0310-9956-ffa450edef68
-
Martin Kraemer authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80067 13f79535-47bb-0310-9956-ffa450edef68
-
- Jan 31, 1998
-
-
Martin Kraemer authored
PR: related tpo #1671 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@80066 13f79535-47bb-0310-9956-ffa450edef68
-