]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
axe ancient platform checks
authorJeff Trawick <trawick@apache.org>
Sun, 29 Mar 2009 13:59:07 +0000 (13:59 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 29 Mar 2009 13:59:07 +0000 (13:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759682 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c
server/mpm/prefork/prefork.c

index d8c85a8352446d810591addddd420061fd2fea96..06c31b53dff76b34ae539426da68d2361b20eb7e 100644 (file)
  * and must be listed in order.
  */
 
-#ifdef UTS21
-/* The second const triggers an assembler bug on UTS 2.1.
- * Another workaround is to move some code out of this file into another,
- *   but this is easier.  Dave Dykstra, 3/31/99
- */
-static const char * status_lines[RESPONSE_CODES] =
-#else
 static const char * const status_lines[RESPONSE_CODES] =
-#endif
 {
     "100 Continue",
     "101 Switching Protocols",
index 5546206600c76e8abd59f5620ae4b1b1ecaca881..e2f7d5b470a61d2fc300f8fa60c30512efac100d 100644 (file)
@@ -131,9 +131,7 @@ static apr_pool_t *pchild;              /* Pool for httpd child stuff */
 
 static pid_t ap_my_pid; /* it seems silly to call getpid all the time */
 static pid_t parent_pid;
-#ifndef MULTITHREAD
 static int my_child_num;
-#endif
 static ap_generation_t volatile my_generation=0;
 
 static volatile int die_now = 0;