]> git.pld-linux.org Git - packages/ccrypt.git/blob - ccrypt-kill-O3.patch
- kill -O3
[packages/ccrypt.git] / ccrypt-kill-O3.patch
1 diff -Nur ccrypt-1.7.orig/configure.in ccrypt-1.7.kill-O3/configure.in
2 --- ccrypt-1.7.orig/configure.in        2004-03-29 06:52:12.000000000 +0200
3 +++ ccrypt-1.7.kill-O3/configure.in     2006-08-05 14:41:22.000000000 +0200
4 @@ -46,16 +46,11 @@
5  dnl Check for programs.
6  AC_PROG_CC
7  
8 -dnl  Note: CFLAGS can now be specified by the user at ./configure time,
9 -dnl  but we enforce -O3, as this really makes a big difference in terms
10 -dnl  of performance for ccrypt. (74% faster than -O0, 19% faster than
11 -dnl  -O2). The space/time tradeoff is biased in favor of time for ccrypt.
12 -
13  if test "$GCC" = "yes"; then
14     if test "$iCFLAGS" = ""; then
15 -     CFLAGS="-O3 -Wall"
16 +     CFLAGS="-Wall"
17     else
18 -     CFLAGS="$iCFLAGS -O3"
19 +     CFLAGS="$iCFLAGS"
20     fi
21  fi
22  
This page took 0.055282 seconds and 3 git commands to generate.