diff options
Diffstat (limited to 'configfrag-first.ac')
-rw-r--r-- | configfrag-first.ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configfrag-first.ac b/configfrag-first.ac index 5dc0db2c..22e34af8 100644 --- a/configfrag-first.ac +++ b/configfrag-first.ac @@ -23,6 +23,17 @@ nlpr=0 AC_ARG_ENABLE([pae], AS_HELP_STRING([--enable-pae], [PAE support (ix86-only); on i386-at disabled by default, otherwise enabled by default])) + +# Multiprocessor support is still broken. +AH_TEMPLATE([MULTIPROCESSOR], [set things up for a uniprocessor]) +AC_ARG_ENABLE([ncpus], + AS_HELP_STRING([--enable-ncpus=N], [specify the maximum number of cpus to be supported]), + [mach_ncpus=$enable_ncpus], + [mach_ncpus=1]) +AC_DEFINE_UNQUOTED([NCPUS], [$mach_ncpus], [number of CPUs]) +[if [ $mach_ncpus -gt 1 ]; then] + AC_DEFINE([MULTIPROCESSOR], [1], [set things up for a multiprocessor]) +[fi] dnl Local Variables: dnl mode: autoconf |