~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: C.J. Adams-Collier
  • Date: 2009-02-02 21:22:49 UTC
  • mto: (779.3.40 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: cjac@dev0-20090202212249-fgmq6cd09l662dvm
added checks to determine which threading plugins have been enabled on 
this build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1398
1398
 drizzled/drizzled_safe support-files/libdrizzle.pc dnl
1399
1399
 support-files/drizzle.server support-files/drizzle-log-rotate)
1400
1400
 
 
1401
scheduling_plugins_available="
 
1402
  pool_of_threads 
 
1403
  single_thread
 
1404
"
 
1405
 
 
1406
for sched_plugin in $scheduling_plugins_available
 
1407
do
 
1408
  varname="\${with_plugin_${sched_plugin}}"
 
1409
  result=`eval "echo $varname"`
 
1410
  if test "x$result" = "xyes"
 
1411
  then
 
1412
    scheduling_plugins="$sched_plugin $scheduling_plugins"
 
1413
  fi
 
1414
done
 
1415
 
1401
1416
AC_CONFIG_COMMANDS([default], , test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h)
1402
1417
 
1403
1418
# Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS
1419
1434
echo "   * Profiling enabled:         $ac_profiling"
1420
1435
echo "   * Coverage enabled:          $ac_coverage"
1421
1436
echo "   * Warnings as failure:       $ac_warn_fail"
 
1437
echo "   * Scheduling Plugins:        $scheduling_plugins"
1422
1438
echo "   * C++ cstdint location:      $ac_cv_cxx_cstdint"
1423
1439
echo "   * C++ hash_map location:     $ac_cv_cxx_hash_map"
1424
1440
echo "   * C++ hash namespace:        $ac_cv_cxx_hash_namespace"