You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/10/08 22:59:37 UTC

cvs commit: apache-1.3/src CHANGES Configure

trawick     01/10/08 13:59:37

  Modified:    src      CHANGES Configure
  Log:
  Recognize the current AIX 5L release (V5R1).
  
  Apache builds and runs without this, but the expected
  default mutex mechanism isn't used and the DSO implementation
  is not as expected either.
  
  Revision  Changes    Path
  1.1731    +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1730
  retrieving revision 1.1731
  diff -u -r1.1730 -r1.1731
  --- CHANGES	2001/10/08 19:34:38	1.1730
  +++ CHANGES	2001/10/08 20:59:36	1.1731
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.22
   
  +Changes with Apache 1.3.22
  +
  +  *) Recognize AIX 5.1.  [Jeff Trawick]
  +
     *) PORT: Support AtheOS (see www.atheos.cx)
        [Rodrigo Parra Novo <ro...@terra.com.br>]
   
  
  
  
  1.444     +7 -0      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.443
  retrieving revision 1.444
  diff -u -r1.443 -r1.444
  --- Configure	2001/10/08 16:45:33	1.443
  +++ Configure	2001/10/08 20:59:36	1.444
  @@ -326,6 +326,13 @@
   	RULE_SHARED_CORE=no
   	DEF_SHARED_CORE=no
   	;;
  +    *-ibm-aix5.1)
  +	OS='IBM AIX 5.1'
  +	CFLAGS="$CFLAGS -DAIX=51 -DUSE_PTHREAD_SERIALIZED_ACCEPT -U__STR__"
  +	LDFLAGS="$LDFLAGS -lm -lpthread"
  +	RULE_SHARED_CORE=no
  +	DEF_SHARED_CORE=no
  +	;;
       ia64-ibm-aix*)
          OS='IBM AIX IA64'
          CFLAGS="$CFLAGS -DAIXIA64 -U__STR__"
  
  
  

Re: cvs commit: apache-1.3/src CHANGES Configure

Posted by Dale Ghent <da...@elemental.org>.
On 8 Oct 2001 trawick@apache.org wrote:

| trawick     01/10/08 13:59:37
|
|   Modified:    src      CHANGES Configure
|   Log:
|   Recognize the current AIX 5L release (V5R1).
|
|   Apache builds and runs without this, but the expected
|   default mutex mechanism isn't used and the DSO implementation
|   is not as expected either.

FWIW, PTHREAD_SERIALIZED_ACCEPT has been working quite well on solaris 8
for a while now.

It may be a good idea to make that the default for at least sol8 if it
seems reasonable.

/dale