summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 0e613e75..89a3b199 100644
--- a/configure.in
+++ b/configure.in
@@ -39,8 +39,14 @@ AC_PREFIX_DEFAULT()
#
# Options
#
+AC_ARG_ENABLE(force-install,
+[ --enable-force-install force installation of files from this package,
+ even if they are older than the installed files],
+ force_install=$enableval, force_install=no)
+AC_SUBST(force_install)
+
AC_ARG_ENABLE(smp,
-[ --enable-smp=MAXCPUS enable SMP with up to MAXCPUS processors])
+[ --enable-smp=MAXCPUS enable SMP with up to MAXCPUS processors])
case "x${enable_smp-no}" in
xno) MAXCPUS=1 ;;
xyes) AC_MSG_WARN([defaulting to max 4 CPUs; use --enable-smp=MAXCPUS])
@@ -51,7 +57,7 @@ esac
AC_DEFINE_UNQUOTED(NCPUS, $MAXCPUS)
AC_ARG_ENABLE(fpe,
-[ --enable-fpe enable FPU emulator for machines with no FPU],
+[ --enable-fpe enable FPU emulator for machines with no FPU],
[test "x$enableval" = xno || AC_DEFINE(FPE)])
#