diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-03-29 16:07:01 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-03-29 16:58:00 +0200 |
commit | 15955354d26cda32bfb88eb150d5661fe66dc9d0 (patch) | |
tree | 664c4df3c90c0f9c9755ea9bf1d9a0515d7a8417 /configfrag-first.ac | |
parent | d99288c94ddfade228ce74e734ced699cda567db (diff) | |
download | gnumach-15955354d26cda32bfb88eb150d5661fe66dc9d0.tar.gz gnumach-15955354d26cda32bfb88eb150d5661fe66dc9d0.tar.bz2 gnumach-15955354d26cda32bfb88eb150d5661fe66dc9d0.zip |
Share ncom, lpr, PAE definitions between i386 and x86_64
Otherwise the x86_64 configfrag would overwrite i386's.
* i386/configfrag.ac: Remove ncom, nlpr, pae, NCOM, NLPR, PAE
definitions.
* i386/configfrag.ac: Remove ncom, nlpr, NCOM, NLPR, PAE
definitions. Enable PAE.
* configfrag-first.ac: New file, defines ncom, nlpr, pae.
* configure.ac: Include configfrag-first.ac
* configfrag.ac: Define NCOM, NLPR, PAE.
Diffstat (limited to 'configfrag-first.ac')
-rw-r--r-- | configfrag-first.ac | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/configfrag-first.ac b/configfrag-first.ac new file mode 100644 index 00000000..5dc0db2c --- /dev/null +++ b/configfrag-first.ac @@ -0,0 +1,29 @@ +dnl Configure fragment for general options. + +dnl Copyright (C) 2020 Free Software Foundation, Inc. + +dnl Permission to use, copy, modify and distribute this software and its +dnl documentation is hereby granted, provided that both the copyright +dnl notice and this permission notice appear in all copies of the +dnl software, derivative works or modified versions, and any portions +dnl thereof, and that both notices appear in supporting documentation. +dnl +dnl THE FREE SOFTWARE FOUNDATION ALLOWS FREE USE OF THIS SOFTWARE IN ITS +dnl "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY +dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE +dnl USE OF THIS SOFTWARE. + +# +# Common options +# + +ncom=0 +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])) + +dnl Local Variables: +dnl mode: autoconf +dnl End: |