Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 405767 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile.in (-1 / +1 lines)
Lines 14-20 Link Here
14
14
15
sbin_PROGRAMS   = $(PROGRAM_NAME)
15
sbin_PROGRAMS   = $(PROGRAM_NAME)
16
TARGETS         = $(sbin_PROGRAMS) $(shared_build) $(other_targets)
16
TARGETS         = $(sbin_PROGRAMS) $(shared_build) $(other_targets)
17
INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \
17
INSTALL_TARGETS =  install-htdocs install-error install-icons \
18
	install-other install-cgi install-include install-suexec install-build \
18
	install-other install-cgi install-include install-suexec install-build \
19
	install-man
19
	install-man
20
20
(-)a/include/httpd.h (-1 / +1 lines)
Lines 152-158 Link Here
152
152
153
/** The path to the suExec wrapper, can be overridden in Configuration */
153
/** The path to the suExec wrapper, can be overridden in Configuration */
154
#ifndef SUEXEC_BIN
154
#ifndef SUEXEC_BIN
155
#define SUEXEC_BIN  HTTPD_ROOT "/bin/suexec"
155
#define SUEXEC_BIN "/usr/bin/suexec"
156
#endif
156
#endif
157
157
158
/** The timeout for waiting for messages */
158
/** The timeout for waiting for messages */
(-)a/server/core.c (-1 / +1 lines)
Lines 3152-3158 Link Here
3152
        ap_add_version_component(pconf, AP_SERVER_BASEPRODUCT "/" AP_SERVER_MAJORVERSION);
3152
        ap_add_version_component(pconf, AP_SERVER_BASEPRODUCT "/" AP_SERVER_MAJORVERSION);
3153
    }
3153
    }
3154
    else {
3154
    else {
3155
        ap_add_version_component(pconf, AP_SERVER_BASEVERSION " (" PLATFORM ")");
3155
        ap_add_version_component(pconf, AP_SERVER_BASEVERSION " (Gentoo)");
3156
    }
3156
    }
3157
3157
3158
    /*
3158
    /*

Return to bug 405767