--- i386/configfrag.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/i386/configfrag.ac b/i386/configfrag.ac index 6b4eb270..92a8ed53 100644 --- a/i386/configfrag.ac +++ b/i386/configfrag.ac @@ -93,18 +93,18 @@ if [ x"$enable_lpr" = xyes ]; then] [fi] AC_ARG_ENABLE([apic], - AS_HELP_STRING([--enable-apic], [LAPIC/IOAPIC support])) + AS_HELP_STRING([--disable-apic], [disable LAPIC/IOAPIC support in UP])) [if [ $mach_ncpus -gt 1 ]; then] # For SMP we need apic enable_apic=yes [fi] -[if [ x"$enable_apic" = xyes ]; then] +[if [ x"$enable_apic" = xno ]; then] + AM_CONDITIONAL([enable_apic], [false]) +[else] AC_DEFINE([APIC], [1], [APIC support]) AM_CONDITIONAL([enable_apic], [true]) -[else] - AM_CONDITIONAL([enable_apic], [false]) [fi] [case $host_platform:$host_cpu in -- 2.45.2