diff options
Diffstat (limited to 'i386/configfrag.ac')
-rw-r--r-- | i386/configfrag.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/i386/configfrag.ac b/i386/configfrag.ac index bada87d..19112a0 100644 --- a/i386/configfrag.ac +++ b/i386/configfrag.ac @@ -102,6 +102,16 @@ if [ x"$enable_lpr" = xyes ]; then] [else] AM_CONDITIONAL([enable_lpr], [false]) [fi] + + +AC_ARG_ENABLE([pae], + AS_HELP_STRING([--enable-pae], [enable PAE support])) +[if [ x"$enable_pae" = xyes ]; then] + AC_DEFINE([PAE], [1], [PAE support]) + AM_CONDITIONAL([enable_pae], [true]) +[else] + AM_CONDITIONAL([enable_pae], [false]) +[fi] dnl Local Variables: dnl mode: autoconf |