home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / contrib / httpd / httpd_1.3 / httpd_1.3.slack.diff
Text File  |  1994-10-23  |  3KB  |  87 lines

  1. diff -u --recursive --new-file httpd_1.3.orig/src/Makefile httpd_1.3/src/Makefile
  2. --- httpd_1.3.orig/src/Makefile    Sat May  7 21:46:59 1994
  3. +++ httpd_1.3/src/Makefile    Sun Oct 23 02:20:56 1994
  4. @@ -15,8 +15,8 @@
  5.  # If you want to have the server check the execute bit of an HTML file to
  6.  # determine if it is a parsed file, use -DXBITHACK
  7.   
  8. -#CFLAGS= -O2
  9. -CFLAGS= -g
  10. +CFLAGS= -O2
  11. +#CFLAGS= -g
  12.  
  13.  # Place here any extra libraries you may need to link to. You
  14.  # shouldn't have to.
  15. @@ -27,7 +27,7 @@
  16.  # SETTINGS FOR THE SYSTEM FLAGS. IF YOU DON'T, BAD THINGS WILL HAPPEN.
  17.  
  18.  # For SunOS 4
  19. -AUX_CFLAGS= -DSUNOS4
  20. +#AUX_CFLAGS= -DSUNOS4
  21.  # For Solaris 2. NOTE: Lots of problems have been identified with compiling
  22.  # httpd under Solaris. Use with caution. If you see aberrant behavior with
  23.  # httpd under Solaris 2, please mail us.
  24. @@ -50,7 +50,7 @@
  25.  # For Sequent
  26.  #AUX_CFLAGS= -DSEQUENT
  27.  # For Linux -m486 ONLY IF YOU HAVE 486 BINARY SUPPORT IN KERNEL
  28. -#AUX_CFLAGS= -DLINUX
  29. +AUX_CFLAGS= -DLINUX
  30.  # For A/UX
  31.  #AUX_CFLAGS= -DAUX
  32.  #EXTRA_LIBS= -lbsd -lposix -s
  33. diff -u --recursive --new-file httpd_1.3.orig/src/httpd.h httpd_1.3/src/httpd.h
  34. --- httpd_1.3.orig/src/httpd.h    Sat May  7 21:47:12 1994
  35. +++ httpd_1.3/src/httpd.h    Sun Oct 23 02:40:05 1994
  36. @@ -176,10 +176,10 @@
  37.  /* Define this to be the default server home dir. Anything later in this
  38.   * file with a relative pathname will have this added.
  39.   */
  40. -#define HTTPD_ROOT "/usr/local/etc/httpd"
  41. +#define HTTPD_ROOT "/var/httpd"
  42.  
  43.  /* Root of server */
  44. -#define DOCUMENT_LOCATION "/usr/local/etc/httpd/htdocs"
  45. +#define DOCUMENT_LOCATION "/var/httpd/htdocs"
  46.  
  47.  /* Max. number of aliases */
  48.  #define MAX_ALIASES 20
  49. @@ -206,8 +206,8 @@
  50.  /* --------- Default user name and group name running standalone ---------- */
  51.  /* --- These may be specified as numbers by placing a # before a number --- */
  52.  
  53. -#define DEFAULT_USER "#-1"
  54. -#define DEFAULT_GROUP "#-1"
  55. +#define DEFAULT_USER "nobody"
  56. +#define DEFAULT_GROUP "nogroup"
  57.  
  58.  /* The name of the log files */
  59.  #define DEFAULT_XFERLOG "logs/access_log"
  60. @@ -245,7 +245,7 @@
  61.  #define DEFAULT_USER_DIR "public_html"
  62.  
  63.  /* The default path for CGI scripts if none is currently set */
  64. -#define DEFAULT_PATH "/bin:/usr/bin:/usr/ucb:/usr/bsd:/usr/local/bin"
  65. +#define DEFAULT_PATH "/bin:/usr/bin:/usr/local/bin"
  66.  
  67.  /* The path to the Bourne shell, for parsed docs */
  68.  #define SHELL_PATH "/bin/sh"
  69. diff -u --recursive --new-file httpd_1.3.orig/support/Makefile httpd_1.3/support/Makefile
  70. --- httpd_1.3.orig/support/Makefile    Sun Apr 10 23:58:14 1994
  71. +++ httpd_1.3/support/Makefile    Sun Oct 23 02:23:14 1994
  72. @@ -4,9 +4,9 @@
  73.  #CC= cc
  74.  
  75.  #For Optimization
  76. -#CFLAGS= -O2
  77. +CFLAGS= -O2
  78.  #For debugging
  79. -CFLAGS= -g
  80. +#CFLAGS= -g
  81.  # For SCO ODT
  82.  #EXTRA_LIBS= -lcrypt_i
  83.  
  84. Binary files httpd_1.3.orig/support/htpasswd and httpd_1.3/support/htpasswd differ
  85. Binary files httpd_1.3.orig/support/inc2shtml and httpd_1.3/support/inc2shtml differ
  86. Binary files httpd_1.3.orig/support/unescape and httpd_1.3/support/unescape differ
  87.