[hipl-commit] [trunk] Rev 3899: i3 is not set implicitely by another option in configure any more

  • From: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Wed, 10 Mar 2010 12:47:39 +0200

Committer: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
Date: Wed Mar 10 11:47:12 2010 +0100
Revision: 3899
Revision-id: rene.hummen@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  i3 is not set implicitely by another option in configure any more

Modified:
  M  configure.ac

=== modified file 'configure.ac'
--- configure.ac        2010-03-10 10:36:24 +0000
+++ configure.ac        2010-03-10 10:47:12 +0000
@@ -247,15 +247,13 @@
 fi
 AM_CONDITIONAL(HIP_PRIVSEP, test x"$ac_cv_use_privsep" = x"yes")
 
-# if we already set i3, then don't check the flags anymore
-if test x"$ac_cv_use_i3" != x"no"; then
 AC_ARG_ENABLE(i3,
                AC_HELP_STRING([--enable-i3],
                [HIP i3  (default is NO)]),
                [ac_cv_use_i3=$enableval],)
-fi
 AC_CACHE_CHECK([whether to use i3],
-               [ac_cv_use_i3], [ac_cv_use_i3=no])
+               [ac_cv_use_i3],
+               [ac_cv_use_i3=no])
 if test x"$ac_cv_use_i3" = x"yes"; then
     AC_CHECK_LIB(xml2, xmlFreeDoc,, AC_MSG_ERROR(libxml2 not found))
     AC_CHECK_LIB(pthread, pthread_create,, AC_MSG_ERROR(libpthread not found))

Other related posts:

  • » [hipl-commit] [trunk] Rev 3899: i3 is not set implicitely by another option in configure any more - Rene Hummen