summaryrefslogtreecommitdiff
blob: 60b7d6c22ff19e7f771a44935a16f8921c32a88e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- a/configure.ac	2010-02-22 12:07:05.000000000 +0100
+++ b/configure.ac	2010-02-22 12:08:29.000000000 +0100
@@ -296,21 +296,6 @@
 fi
 AC_SUBST([enable_debug])
 
-dnl Only optimize if not debugging.
-if test "x$enable_debug" = "x0" -a "x$no_CFLAGS" = "xyes" ; then
-  dnl Make sure that an optimization flag was not specified in EXTRA_CFLAGS.
-  optimize="no"
-  echo "$EXTRA_CFLAGS" | grep "\-O" >/dev/null || optimize="yes"
-  if test "x${optimize}" = "xyes" ; then
-    if test "x$GCC" = "xyes" ; then
-      JE_CFLAGS_APPEND([-O3])
-      JE_CFLAGS_APPEND([-funroll-loops])
-    else
-      JE_CFLAGS_APPEND([-O])
-    fi
-  fi
-fi
-
 dnl Do not enable statistics calculation by default.
 AC_ARG_ENABLE([stats],
   [AS_HELP_STRING([--enable-stats], [Enable statistics calculation/reporting])],