libcvd-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libcvd-members] libcvd configure.in configure


From: Edward Rosten
Subject: [libcvd-members] libcvd configure.in configure
Date: Wed, 22 Aug 2007 23:17:18 +0000

CVSROOT:        /cvsroot/libcvd
Module name:    libcvd
Changes by:     Edward Rosten <edrosten>        07/08/22 23:17:18

Modified files:
        .              : configure.in configure 

Log message:
        Fixed --enable-ssefast bug

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libcvd/configure.in?cvsroot=libcvd&r1=1.97&r2=1.98
http://cvs.savannah.gnu.org/viewcvs/libcvd/configure?cvsroot=libcvd&r1=1.96&r2=1.97

Patches:
Index: configure.in
===================================================================
RCS file: /cvsroot/libcvd/libcvd/configure.in,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -b -r1.97 -r1.98
--- configure.in        22 Aug 2007 22:29:30 -0000      1.97
+++ configure.in        22 Aug 2007 23:17:17 -0000      1.98
@@ -1122,15 +1122,16 @@
 echo Checking for extra build options
 echo --------------------------------
 
-AC_MSG_CHECKING("FAST detectors")
-AC_ARG_ENABLE(ssefast    , [  --enable-sse-fast             Enable currently 
broken SSE FAST detectors  ])
+AC_ARG_ENABLE(ssefast, [  --enable-ssefast        Enable currently broken SSE 
FAST detectors])
 
+echo $enable_ssefast
 
-if test "$ssefast" = yes
+if test "$enable_ssefast" = yes
 then
        AC_SUBST(have_faster,yes)
 fi
 
+AC_MSG_CHECKING("FAST detectors")
 allfasts="7 8 9 10 11 12"
 AC_ARG_ENABLE(missingfast, [  --enable-missingfast=7,8,...  compile without 
certain FAST detectors.     ])
 wfasts="`echo $enable_missingfast | sed -e's/,/ /g'`"

Index: configure
===================================================================
RCS file: /cvsroot/libcvd/libcvd/configure,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -b -r1.96 -r1.97
--- configure   22 Aug 2007 22:29:30 -0000      1.96
+++ configure   22 Aug 2007 23:17:17 -0000      1.97
@@ -859,7 +859,7 @@
 Optional Features:
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-  --enable-sse-fast             Enable currently broken SSE FAST detectors
+  --enable-ssefast        Enable currently broken SSE FAST detectors
   --enable-missingfast=7,8,...  compile without certain FAST detectors.
 
 Optional Packages:
@@ -9218,21 +9218,22 @@
 echo Checking for extra build options
 echo --------------------------------
 
-echo "$as_me:$LINENO: checking \"FAST detectors\"" >&5
-echo $ECHO_N "checking \"FAST detectors\"... $ECHO_C" >&6
 # Check whether --enable-ssefast     or --disable-ssefast     was given.
-if test "${enable_ssefast    +set}" = set; then
-  enableval="$enable_ssefast    "
+if test "${enable_ssefast+set}" = set; then
+  enableval="$enable_ssefast"
 
 fi;
 
+echo $enable_ssefast
 
-if test "$ssefast" = yes
+if test "$enable_ssefast" = yes
 then
        have_faster=yes
 
 fi
 
+echo "$as_me:$LINENO: checking \"FAST detectors\"" >&5
+echo $ECHO_N "checking \"FAST detectors\"... $ECHO_C" >&6
 allfasts="7 8 9 10 11 12"
 # Check whether --enable-missingfast or --disable-missingfast was given.
 if test "${enable_missingfast+set}" = set; then




reply via email to

[Prev in Thread] Current Thread [Next in Thread]