Skip to content
  1. Mar 13, 2000
    • Dirk-Willem van Gulik's avatar
      Just make 'buildconf' run on BSD (there is a space after the hash-bang) and · 55e52a2f
      Dirk-Willem van Gulik authored
      added bogus INSTALL file plus some blurp in readme.mpm to point out that
      you really need libtool and autoconf (which need m4).
      
      On some platform's I found that I really HAD to use 'gmake' as the normal
      make would not grok it. So I am wondering if adding something like
      
      # Work out a correct 'make'. The issue is that we should use
      # 'gmake' which is called 'make' on some platforms, and 'gmake'
      # on some others.
      #
      GUESS=${MAKE:-make}
      
      if `(${GUESS} -v | grep "GNU Make") > /dev/null 2>&1 `; then
              # Looks like gmake.
      else
              GUESS=gmake
              if `${GUESS} -v | grep "GNU Make" > /dev/null 2>&1`; then
                      echo Warning: Using 'gmake' instead of 'make'.
              else
                      echo No 'gmake' found. Please set the MAKE environment
                      echo variable first.
                      exit 1
              fi
      fi
      
      MAKE=${GUESS}
      export MAKE
      
      to 'buildconf' would be appropriate to detect this ??
      
      Dw.
      PR:
      Obtained from:
      Submitted by:
      Reviewed by:
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84749 13f79535-47bb-0310-9956-ffa450edef68
      55e52a2f
  2. Mar 12, 2000
  3. Mar 11, 2000
  4. Mar 10, 2000
  5. Mar 09, 2000
  6. Mar 08, 2000
  7. Mar 04, 2000
  8. Mar 03, 2000
  9. Mar 02, 2000
  10. Mar 01, 2000
  11. Feb 28, 2000
  12. Feb 25, 2000
  13. Feb 23, 2000
  14. Feb 22, 2000