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/18 17:25:26 UTC

cvs commit: apache-1.3/src/helpers binbuild.sh

trawick     01/10/18 08:25:26

  Modified:    src      CHANGES
               src/helpers binbuild.sh
  Log:
  HP-UX requires DSOs to be executable.  "make install" takes care of
  this, but binbuild-install.sh does not.  This patch tweaks
  install-bindist.sh to make the DSOs executable.  As with "make
  install", the DSOs will be marked executable for all platforms, not
  just HP-UX.  (Actually, install-sh is invoked by "make install" a
  little differently for DSOs on rhapsody/darwin, but there is no
  special processing for rhapsody/darwin in install-bindist.sh
  currently so they shouldn't be hurt by the change below.)
  
  PR:             7428
  Submitted by:	Jeff Trawick
  
  Revision  Changes    Path
  1.1736    +7 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1735
  retrieving revision 1.1736
  diff -u -r1.1735 -r1.1736
  --- CHANGES	2001/10/17 14:45:29	1.1735
  +++ CHANGES	2001/10/18 15:25:26	1.1736
  @@ -1,4 +1,11 @@
   Changes with Apache 1.3.23
  +
  +  *) Unix: The generated install script for binary distributions,
  +     install-bindist.sh, now makes DSO files executable, like
  +     make install.  This allows a binary distribution to work on 
  +     HP-UX without any manual intervention.  PR 7428  
  +     [Jeff Trawick]
  +
     *) Win32: The Apache Win32 developers generally recommend that
        MaxRequestsPerChild be set to 0 to prevent the child process
        from ever recycling. However, for those that do require a 
  
  
  
  1.19      +1 -1      apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- binbuild.sh	2001/06/12 08:39:01	1.18
  +++ binbuild.sh	2001/10/18 15:25:26	1.19
  @@ -203,7 +203,7 @@
     echo "lmkdir \$SR/proxy 750" && \
     echo "lmkdir \$SR/logs 750" && \
     echo "lcopy bindist/man \$SR/man 755 644" && \
  -  echo "lcopy bindist/libexec \$SR/libexec 750 644" && \
  +  echo "lcopy bindist/libexec \$SR/libexec 750 750" && \
     echo "lcopy bindist/include \$SR/include 755 644" && \
     echo "lcopy bindist/icons \$SR/icons 755 644" && \
     echo "lcopy bindist/cgi-bin \$SR/cgi-bin 750 750" && \