aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authornotin2006-06-09 09:29:03 +0000
committernotin2006-06-09 09:29:03 +0000
commit2c1a2d07ab57e257ac84e3ab2c6706b47f52c68d (patch)
tree92b658358f2bcf8eddce0be337d6acaf5b9f95bc /configure
parentbefd2a4bf35ee1f19b5705e061daf3320400501d (diff)
Ajout d'une option -with-geoproof à la configuration et à l'exécution
pour inhiber la gestion de Geoproof sous Coqide (qui peut poser des problèmes avec GTK < 2.6.0) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8932 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index 9430dbca7d..2bad64101b 100755
--- a/configure
+++ b/configure
@@ -42,6 +42,7 @@ reals_opt=no
reals=all
arch_spec=no
coqide_spec=no
+with_geoproof=true
COQTOP=`pwd`
@@ -110,6 +111,12 @@ while : ; do
-coqide|--coqide) coqide_spec=yes
COQIDE=$2
shift;;
+ -with-geoproof|--with-geoproof)
+ case $2 in
+ yes) with_geoproof=true;;
+ no) with_geoproof=false;;
+ esac
+ shift;;
-byte-only|-byteonly|--byteonly|--byte-only) best_compiler=byte;;
-debug|--debug) coq_debug_flag=-g;;
-profile|--profile) coq_profile_flag=-p;;
@@ -483,6 +490,7 @@ let versionsi = "$VERSIONSI"
let date = "$DATE"
let compile_date = "$COMPILEDATE"
let exec_extension = "$EXE"
+let with_geoproof = ref $with_geoproof
END_OF_COQ_CONFIG