mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
PR:
Obtained from: Submitted by: Reviewed by: Finally a patch that can't (well, shouldn't :-) break any other platform. Open up the symbols defined for http_main.c to move main() from the core under Win32 (that's the real main(), not that apache_main() thing). Win32 Project file changes will follow in a seperate patch. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85326 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -233,7 +233,7 @@ API_EXPORT(char *) ap_unparse_uri_components(ap_pool_t *p, const uri_components
|
||||
static regex_t re_uri;
|
||||
static regex_t re_hostpart;
|
||||
|
||||
void ap_util_uri_init(void)
|
||||
API_EXPORT(void) ap_util_uri_init(void)
|
||||
{
|
||||
int ret;
|
||||
const char *re_str;
|
||||
@ -431,7 +431,7 @@ API_EXPORT(int) ap_parse_uri_components(ap_pool_t *p, const char *uri, uri_compo
|
||||
#define NOTEND_HOSTINFO (T_SLASH | T_QUESTION | T_HASH | T_NUL)
|
||||
#define NOTEND_PATH (T_QUESTION | T_HASH | T_NUL)
|
||||
|
||||
void ap_util_uri_init(void)
|
||||
API_EXPORT(void) ap_util_uri_init(void)
|
||||
{
|
||||
/* nothing to do */
|
||||
}
|
||||
|
Reference in New Issue
Block a user