[hipl-commit] [trunk] Rev 3870: removed unused AC_DEFINE

  • From: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 9 Mar 2010 17:23:31 +0200

Committer: Rene Hummen <rene.hummen@xxxxxxxxxxxxxxxxx>
Date: Tue Mar 09 16:23:18 2010 +0100
Revision: 3870
Revision-id: rene.hummen@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  removed unused AC_DEFINE

Modified:
  M  configure.ac

=== modified file 'configure.ac'
--- configure.ac        2010-03-09 15:22:46 +0000
+++ configure.ac        2010-03-09 15:23:18 +0000
@@ -314,15 +314,15 @@
 fi
 
 AC_ARG_ENABLE(profiling,
-             AC_HELP_STRING([--enable-profiling],
-                            [compile in gprof profiling support (default is 
NO)]),
-             [ac_cv_use_profiling=$enableval], [ac_cv_use_profiling=no])
+               AC_HELP_STRING([--enable-profiling],
+                              [add gprof profiling support (default is NO)]),
+               [ac_cv_use_profiling=$enableval],
+               [ac_cv_use_profiling=no])
 AC_CACHE_CHECK([whether to use grof support],
-               [ac_cv_use_profiling], [ac_cv_use_profiling=no])
+               [ac_cv_use_profiling],
+               [ac_cv_use_profiling=no])
 if test x"$ac_cv_use_profiling" = x"yes"; then
-        AC_DEFINE(CONFIG_HIP_PROFILING)
-        AH_TEMPLATE(CONFIG_HIP_PROFILING, [Defined to 1 if profiling is 
enabled.])
-        AC_SUBST(GPROF_CFLAGS, "-pg")
+    AC_SUBST(GPROF_CFLAGS, "-pg")
 fi
 AM_CONDITIONAL(HIP_PROFILING, test x"$ac_cv_use_profiling" = x"yes")

Other related posts:

  • » [hipl-commit] [trunk] Rev 3870: removed unused AC_DEFINE - Rene Hummen