You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@hyperreal.org on 1998/06/29 21:02:04 UTC

cvs commit: apache-1.3/src/include http_config.h

jim         98/06/29 12:02:04

  Modified:    src      CHANGES
               src/include http_config.h
  Log:
  Hmmm... This name change involves an API change. For
  example, PHP3.0.1-dev now barfs (Rasmus, hint hint :) )
  
  Revision  Changes    Path
  1.940     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.939
  retrieving revision 1.940
  diff -u -r1.939 -r1.940
  --- CHANGES	1998/06/29 12:21:01	1.939
  +++ CHANGES	1998/06/29 19:01:59	1.940
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) API: Name changes of table_elts to ap_table_elts and is_table_empty
  +     to ap_is_table_empty. [Ben Laurie]
  +
     *) PORT: Add UnixWare 7 support
        [Vadim Kostoglodoff <va...@olly.ru>] PR#2463
   
  
  
  
  1.88      +1 -1      apache-1.3/src/include/http_config.h
  
  Index: http_config.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- http_config.h	1998/05/27 14:01:31	1.87
  +++ http_config.h	1998/06/29 19:02:03	1.88
  @@ -275,7 +275,7 @@
    * handle it back-compatibly, or at least signal an error).
    */
   
  -#define MODULE_MAGIC_NUMBER 19980527
  +#define MODULE_MAGIC_NUMBER 19980627
   #define STANDARD_MODULE_STUFF MODULE_MAGIC_NUMBER, -1, __FILE__, NULL, NULL
   
   /* Generic accessors for other modules to get at their own module-specific
  
  
  

Re: cvs commit: apache-1.3/src/include http_config.h

Posted by Rasmus Lerdorf <ra...@lerdorf.on.ca>.
>   Hmmm... This name change involves an API change. For
>   example, PHP3.0.1-dev now barfs (Rasmus, hint hint :) )

Why?  compat.h should take care of this, should it not?  

I'll update my CVS later and have a look.

-Rasmus