patch-configure 615 B

123456789101112131415161718192021222324
  1. $OpenBSD: patch-configure,v 1.3 2014/10/12 13:26:16 bcallah Exp $
  2. --- configure.orig Sat Oct 11 17:32:31 2014
  3. +++ configure Sat Oct 11 17:32:49 2014
  4. @@ -597,19 +597,6 @@ fi
  5. rm -f _testprog _testprog.error _testprog.stdout
  6. -# -O optimization for non-debug builds. Try -O and -O3.
  7. -if [ ! z"$DEBUG" = zYES ]; then
  8. - $CXX $CXXFLAGS -O _testprog.cc -o _testprog 2> /dev/null
  9. - if [ -x _testprog ]; then
  10. - rm -f _testprog
  11. - $CXX $CXXFLAGS -O3 _testprog.cc -o _testprog 2> /dev/null
  12. - if [ -x _testprog ]; then
  13. - CXXFLAGS="-O3 $CXXFLAGS"
  14. - else
  15. - CXXFLAGS="-O $CXXFLAGS"
  16. - fi
  17. - fi
  18. -fi
  19. rm -f _testprog