You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1998/05/01 12:00:46 UTC

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

rse         98/05/01 03:00:46

  Modified:    .        STATUS
               src      CHANGES Configure
               src/include conf.h
  Log:
  Some optimization defines for NetBSD
  
  Submitted by: Jaromir Dolecek <do...@ics.muni.cz>
  PR: 2165
  
  Revision  Changes    Path
  1.343     +1 -0      apache-1.3/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.342
  retrieving revision 1.343
  diff -u -r1.342 -r1.343
  --- STATUS	1998/04/30 11:27:01	1.342
  +++ STATUS	1998/05/01 10:00:39	1.343
  @@ -77,6 +77,7 @@
       * Ralf's fixes for compiler warnings under AIX 4.2 (NET_SIZE_T is size_t)
       * Ralf's DSO support for AIX
       * Ralf's DSO support for NetBSD, PR#2158
  +    * Some optimization defines for NetBSD, PR#2165
   
   Available Patches:
   
  
  
  
  1.805     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.804
  retrieving revision 1.805
  diff -u -r1.804 -r1.805
  --- CHANGES	1998/04/30 11:27:02	1.804
  +++ CHANGES	1998/05/01 10:00:41	1.805
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3b7
   
  +  *) PORT: Some optimization defines for NetBSD
  +     [Jaromir Dolecek <do...@ics.muni.cz>] PR#2165
  +
     *) PORT: Dynamic Shared Object (DSO) support for NetBSD.
        [Jaromir Dolecek <do...@ics.muni.cz>, Ralf S. Engelschall] PR#2158
   
  
  
  
  1.251     +1 -0      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.250
  retrieving revision 1.251
  diff -u -r1.250 -r1.251
  --- Configure	1998/04/30 11:27:02	1.250
  +++ Configure	1998/05/01 10:00:42	1.251
  @@ -445,6 +445,7 @@
   	LIBS="$LIBS -lcrypt"
   	DBM_LIB=""
   	DB_LIB=""
  +	DEF_WANTHSREGEX=no
   	;;
       *-freebsd*)
       	PLATOSVERS=`echo $PLAT | sed 's/^.*freebsd//'`
  
  
  
  1.204     +5 -0      apache-1.3/src/include/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/conf.h,v
  retrieving revision 1.203
  retrieving revision 1.204
  diff -u -r1.203 -r1.204
  --- conf.h	1998/04/28 08:19:49	1.203
  +++ conf.h	1998/05/01 10:00:45	1.204
  @@ -547,6 +547,11 @@
   #endif
   #ifndef DEFAULT_GROUP
   #define DEFAULT_GROUP "nogroup"
  +#define HAVE_SHMGET 1
  +#define USE_SHMGET_SCOREBOARD
  +#define HAVE_MMAP 1
  +#define USE_MMAP_SCOREBOARD
  +#define USE_MMAP_FILES
   #endif
   
   #elif defined(UTS21)
  
  
  

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

Posted by Marc Slemko <ma...@worldgate.com>.
On 1 May 1998 rse@hyperreal.org wrote:

> rse         98/05/01 03:00:46
> 
>   Modified:    .        STATUS
>                src      CHANGES Configure
>                src/include conf.h
>   Log:
>   Some optimization defines for NetBSD
>   
>   Submitted by: Jaromir Dolecek <do...@ics.muni.cz>
>   PR: 2165

Note that you have to be very careful adding such things for 
operating systems based on someone running a current version,
since you have no idea if old versions support them.

In this case, I _think_ you are ok, but...


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

Posted by Dean Gaudet <dg...@arctic.org>.
It doesn't really make sense to define both USE_SHMGET_SCOREBOARD and
USE_MMAP_SCOREBOARD. 

Dean

On 1 May 1998 rse@hyperreal.org wrote:

> rse         98/05/01 03:00:46
> 
>   Modified:    .        STATUS
>                src      CHANGES Configure
>                src/include conf.h
>   Log:
>   Some optimization defines for NetBSD
>   
>   Submitted by: Jaromir Dolecek <do...@ics.muni.cz>
>   PR: 2165
>   
>   Revision  Changes    Path
>   1.343     +1 -0      apache-1.3/STATUS
>   
>   Index: STATUS
>   ===================================================================
>   RCS file: /export/home/cvs/apache-1.3/STATUS,v
>   retrieving revision 1.342
>   retrieving revision 1.343
>   diff -u -r1.342 -r1.343
>   --- STATUS	1998/04/30 11:27:01	1.342
>   +++ STATUS	1998/05/01 10:00:39	1.343
>   @@ -77,6 +77,7 @@
>        * Ralf's fixes for compiler warnings under AIX 4.2 (NET_SIZE_T is size_t)
>        * Ralf's DSO support for AIX
>        * Ralf's DSO support for NetBSD, PR#2158
>   +    * Some optimization defines for NetBSD, PR#2165
>    
>    Available Patches:
>    
>   
>   
>   
>   1.805     +3 -0      apache-1.3/src/CHANGES
>   
>   Index: CHANGES
>   ===================================================================
>   RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
>   retrieving revision 1.804
>   retrieving revision 1.805
>   diff -u -r1.804 -r1.805
>   --- CHANGES	1998/04/30 11:27:02	1.804
>   +++ CHANGES	1998/05/01 10:00:41	1.805
>   @@ -1,5 +1,8 @@
>    Changes with Apache 1.3b7
>    
>   +  *) PORT: Some optimization defines for NetBSD
>   +     [Jaromir Dolecek <do...@ics.muni.cz>] PR#2165
>   +
>      *) PORT: Dynamic Shared Object (DSO) support for NetBSD.
>         [Jaromir Dolecek <do...@ics.muni.cz>, Ralf S. Engelschall] PR#2158
>    
>   
>   
>   
>   1.251     +1 -0      apache-1.3/src/Configure
>   
>   Index: Configure
>   ===================================================================
>   RCS file: /export/home/cvs/apache-1.3/src/Configure,v
>   retrieving revision 1.250
>   retrieving revision 1.251
>   diff -u -r1.250 -r1.251
>   --- Configure	1998/04/30 11:27:02	1.250
>   +++ Configure	1998/05/01 10:00:42	1.251
>   @@ -445,6 +445,7 @@
>    	LIBS="$LIBS -lcrypt"
>    	DBM_LIB=""
>    	DB_LIB=""
>   +	DEF_WANTHSREGEX=no
>    	;;
>        *-freebsd*)
>        	PLATOSVERS=`echo $PLAT | sed 's/^.*freebsd//'`
>   
>   
>   
>   1.204     +5 -0      apache-1.3/src/include/conf.h
>   
>   Index: conf.h
>   ===================================================================
>   RCS file: /export/home/cvs/apache-1.3/src/include/conf.h,v
>   retrieving revision 1.203
>   retrieving revision 1.204
>   diff -u -r1.203 -r1.204
>   --- conf.h	1998/04/28 08:19:49	1.203
>   +++ conf.h	1998/05/01 10:00:45	1.204
>   @@ -547,6 +547,11 @@
>    #endif
>    #ifndef DEFAULT_GROUP
>    #define DEFAULT_GROUP "nogroup"
>   +#define HAVE_SHMGET 1
>   +#define USE_SHMGET_SCOREBOARD
>   +#define HAVE_MMAP 1
>   +#define USE_MMAP_SCOREBOARD
>   +#define USE_MMAP_FILES
>    #endif
>    
>    #elif defined(UTS21)
>   
>   
>   
>