diff options
-rw-r--r-- | i386/configfrag.ac | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/i386/configfrag.ac b/i386/configfrag.ac index 6b4eb270..6cd1fdf7 100644 --- a/i386/configfrag.ac +++ b/i386/configfrag.ac @@ -100,11 +100,16 @@ AC_ARG_ENABLE([apic], enable_apic=yes [fi] -[if [ x"$enable_apic" = xyes ]; then] +[if [ x"$enable_linux_groups" != xno ]; then] + # Linux glue does not like APIC + enable_apic=no +[fi] + +[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 |