You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1998/07/07 19:23:22 UTC

cvs commit: apache-1.3/src CHANGES Configure

dgaudet     98/07/07 10:23:22

  Modified:    src      CHANGES Configure
  Log:
  Enable -funsigned-char for linux 2.x.  Put a brief comment about work in
  progress into CHANGES.
  
  PR:		800, 2252, 2553
  
  Revision  Changes    Path
  1.949     +8 -1      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.948
  retrieving revision 1.949
  diff -u -r1.948 -r1.949
  --- CHANGES	1998/07/07 04:06:17	1.948
  +++ CHANGES	1998/07/07 17:23:19	1.949
  @@ -1,5 +1,12 @@
   Changes with Apache 1.3.1
  -  
  +
  +  *) PORT: Apache is not 8-bit clean in many settings, a problem we're
  +     aware of and intend to fix properly.  But a temporary workaround
  +     which should work for many folks is to tell the C compiler to use
  +     "unsigned char"s.  For gcc this means adding -funsigned-char.
  +     -funsigned-char is the default now for Linux 2.x and FreeBSD
  +     2 and 3.  [Dean Gaudet] PR#800, 2282, 2553
  +
     *) The "handler not found" error was issued in cases where the handler
        really did exist, but was just declining to serve the request.
        [John Van Essen <jv...@gamers.org>] PR#2529
  
  
  
  1.272     +1 -1      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.271
  retrieving revision 1.272
  diff -u -r1.271 -r1.272
  --- Configure	1998/07/06 11:54:28	1.271
  +++ Configure	1998/07/07 17:23:19	1.272
  @@ -432,7 +432,7 @@
       *-linux2)
   	DEF_WANTHSREGEX=yes
   	OS='Linux'
  -	CFLAGS="$CFLAGS -DLINUX=2"
  +	CFLAGS="$CFLAGS -DLINUX=2 -funsigned-char"
   	LIBS="$LIBS -lm"
   	;;
       *-linux1)