etc/settings
author paulson
Wed, 25 Oct 2000 17:43:34 +0200
changeset 10325 76f318befccb
parent 10205 7f3d844c9512
child 10503 c9d087e4a5e8
permissions -rw-r--r--
Even numbers section of Inductive chapter
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
     1
#
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
     2
# $Id$
9818
wenzelm
parents: 9787
diff changeset
     3
# Author: Markus Wenzel, TU Muenchen
wenzelm
parents: 9787
diff changeset
     4
# License: GPL (GNU GENERAL PUBLIC LICENSE)
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
     5
#
2309
390c1b6baaa5 added ISAMODE_HOME;
wenzelm
parents: 2294
diff changeset
     6
# Isabelle settings -- site defaults.
9225
4772656ddbbc added site settings check;
wenzelm
parents: 8880
diff changeset
     7
# Do *NOT* copy this file into your personal isabelle directory!!!
2309
390c1b6baaa5 added ISAMODE_HOME;
wenzelm
parents: 2294
diff changeset
     8
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
     9
###
3177
3c1448b9b0ee tuned comments;
wenzelm
parents: 3158
diff changeset
    10
### ML compiler settings (ESSENTIAL!)
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    11
###
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    12
9236
899b83e8d2e1 tuned comments;
wenzelm
parents: 9225
diff changeset
    13
# Note that ML_HOME specifies the location of the actual compiler
899b83e8d2e1 tuned comments;
wenzelm
parents: 9225
diff changeset
    14
# binaries.  Do not invent new ML system names unless you know what
9759
8e835ebc862f more polyml choices;
wenzelm
parents: 9745
diff changeset
    15
# you are doing.  Only one of the sections below should be activated.
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    16
10205
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    17
# Poly/ML 3.x and 4.0
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    18
if [ -e /usr/bin/poly -a -e /usr/lib/poly ]; then
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    19
  #maybe a shrink-wrapped polyml-4.0 on x86-linux ...
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    20
  ML_SYSTEM=polyml-4.0
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    21
  ML_PLATFORM=x86-linux
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    22
  ML_HOME=/usr/bin
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    23
  ML_DBASE=/usr/lib/poly/ML_dbase
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    24
  ML_OPTIONS="-h 30000"
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    25
else
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    26
  #... or rather a self-contained multi-platform installation
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    27
  POLYML_HOME=$(choosefrom \
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    28
    "$ISABELLE_HOME/contrib/polyml" \
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    29
    "$ISABELLE_HOME/../polyml" \
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    30
    "/usr/share/polyml" \
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    31
    "/usr/local/polyml" \
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    32
    "/opt/polyml")
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    33
  ML_SYSTEM=$("$POLYML_HOME/bin/polyml-version" 2>/dev/null || echo polyml)
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    34
  ML_PLATFORM=$("$POLYML_HOME/bin/polyml-platform" 2>/dev/null || echo platform)
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    35
  ML_HOME="$POLYML_HOME/$ML_PLATFORM"
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    36
  ML_OPTIONS="-h 30000"
7f3d844c9512 even smarter setup for several installations of Poly/ML 3.x and 4.0;
wenzelm
parents: 10070
diff changeset
    37
fi
8345
e708af969264 new Poly/ML setup made default;
wenzelm
parents: 7873
diff changeset
    38
5708
fb09ab6a447f dropped support for SML/NJ 109.x;
wenzelm
parents: 5659
diff changeset
    39
# Standard ML of New Jersey 110 or later
8345
e708af969264 new Poly/ML setup made default;
wenzelm
parents: 7873
diff changeset
    40
#ML_SYSTEM=smlnj-110
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
    41
#ML_HOME="$ISABELLE_HOME/../smlnj/bin"
8345
e708af969264 new Poly/ML setup made default;
wenzelm
parents: 7873
diff changeset
    42
#ML_OPTIONS="@SMLdebug=/dev/null"
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
    43
#ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
5708
fb09ab6a447f dropped support for SML/NJ 109.x;
wenzelm
parents: 5659
diff changeset
    44
9252
83060e826e02 Moscow ML 2.00 or later (experimental!);
wenzelm
parents: 9236
diff changeset
    45
# Moscow ML 2.00 or later (experimental!)
83060e826e02 Moscow ML 2.00 or later (experimental!);
wenzelm
parents: 9236
diff changeset
    46
#ML_SYSTEM=mosml
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
    47
#ML_HOME="$ISABELLE_HOME/../mosml/bin"
6413
b2f2770ef8d9 ML_PLATFORM;
wenzelm
parents: 5964
diff changeset
    48
#ML_PLATFORM=""
9252
83060e826e02 Moscow ML 2.00 or later (experimental!);
wenzelm
parents: 9236
diff changeset
    49
#ML_OPTIONS=""
5708
fb09ab6a447f dropped support for SML/NJ 109.x;
wenzelm
parents: 5659
diff changeset
    50
9252
83060e826e02 Moscow ML 2.00 or later (experimental!);
wenzelm
parents: 9236
diff changeset
    51
# MLWorks 2.0
83060e826e02 Moscow ML 2.00 or later (experimental!);
wenzelm
parents: 9236
diff changeset
    52
#ML_SYSTEM=mlworks
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
    53
#ML_HOME="$ISABELLE_HOME/../mlworks/bin"
9252
83060e826e02 Moscow ML 2.00 or later (experimental!);
wenzelm
parents: 9236
diff changeset
    54
#ML_OPTIONS=""
6413
b2f2770ef8d9 ML_PLATFORM;
wenzelm
parents: 5964
diff changeset
    55
#ML_PLATFORM=""
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
    56
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    57
# Standard ML of New Jersey 0.93
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    58
#ML_SYSTEM=smlnj-0.93
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    59
#ML_HOME=/usr/local/ldist/DIR/sml-0.93/src
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    60
#ML_OPTIONS=""
6413
b2f2770ef8d9 ML_PLATFORM;
wenzelm
parents: 5964
diff changeset
    61
#ML_PLATFORM=""
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    62
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
    63
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    64
###
3177
3c1448b9b0ee tuned comments;
wenzelm
parents: 3158
diff changeset
    65
### Compilation options
2435
750a73406623 added ISABELLE_HTML;
wenzelm
parents: 2426
diff changeset
    66
###
750a73406623 added ISABELLE_HTML;
wenzelm
parents: 2426
diff changeset
    67
5387
8f1157817bb6 ISABELLE_USEDIR_OPTIONS="-i false";
wenzelm
parents: 4708
diff changeset
    68
ISABELLE_USEDIR_OPTIONS="-i false"
7762
c98d70538033 ISABELLE_USEDIR_OPTIONS: -d pdf option (off by default);
wenzelm
parents: 7296
diff changeset
    69
#ISABELLE_USEDIR_OPTIONS="-i true -d pdf"
2435
750a73406623 added ISABELLE_HTML;
wenzelm
parents: 2426
diff changeset
    70
750a73406623 added ISABELLE_HTML;
wenzelm
parents: 2426
diff changeset
    71
750a73406623 added ISABELLE_HTML;
wenzelm
parents: 2426
diff changeset
    72
###
7773
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    73
### Document preparation
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    74
###
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    75
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    76
TEXINPUTS="$ISABELLE_HOME/lib/texinputs:$TEXINPUTS"
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    77
ISABELLE_LATEX="latex"
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    78
ISABELLE_PDFLATEX="pdflatex"
7813
4412debd3004 added ISABELLE_BIBTEX;
wenzelm
parents: 7776
diff changeset
    79
ISABELLE_BIBTEX="bibtex"
7773
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    80
ISABELLE_DVIPS="dvips -D 600"
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    81
7873
5d1200c7a671 fixed comment;
wenzelm
parents: 7864
diff changeset
    82
# The thumbpdf tool is probably not generally available ...
7864
5cd5a27f5c93 thumbpdf (disabled by default);
wenzelm
parents: 7813
diff changeset
    83
#ISABELLE_THUMBPDF="thumbpdf"
5cd5a27f5c93 thumbpdf (disabled by default);
wenzelm
parents: 7813
diff changeset
    84
7773
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    85
ce86227f29d0 Document preparation setup;
wenzelm
parents: 7762
diff changeset
    86
###
2968
8ba30b031f31 eliminated PLATFORM;
wenzelm
parents: 2915
diff changeset
    87
### Misc path settings
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    88
###
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
    89
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    90
# The place for user configuration, heap files, etc.
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
    91
ISABELLE_HOME_USER=~/isabelle
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
    92
3177
3c1448b9b0ee tuned comments;
wenzelm
parents: 3158
diff changeset
    93
# Where to look for isabelle tools (multiple dirs separated by ':').
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
    94
ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
2786
b36ca42c409a tuned comments;
wenzelm
parents: 2780
diff changeset
    95
4334
e567f3425267 ISABELLE_TMP_PREFIX;
wenzelm
parents: 3689
diff changeset
    96
# Location for temporary files (should be on a local file system).
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
    97
ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER"
4334
e567f3425267 ISABELLE_TMP_PREFIX;
wenzelm
parents: 3689
diff changeset
    98
2786
b36ca42c409a tuned comments;
wenzelm
parents: 2780
diff changeset
    99
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   100
# Heap input locations. ML system identifier is included in lookup.
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   101
ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps"
2780
1dc77f6d83e1 added THIS_IS_ISABELLE_BUILD discrimination;
wenzelm
parents: 2742
diff changeset
   102
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   103
# Heap output location. ML system identifier is appended automatically later on.
2780
1dc77f6d83e1 added THIS_IS_ISABELLE_BUILD discrimination;
wenzelm
parents: 2742
diff changeset
   104
if [ "$THIS_IS_ISABELLE_BUILD" = true ]; then
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   105
  #Isabelle build tells us to store heaps etc. within the distribution.
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   106
  ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   107
  ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
2780
1dc77f6d83e1 added THIS_IS_ISABELLE_BUILD discrimination;
wenzelm
parents: 2742
diff changeset
   108
else
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   109
  ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps"
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   110
  ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
2780
1dc77f6d83e1 added THIS_IS_ISABELLE_BUILD discrimination;
wenzelm
parents: 2742
diff changeset
   111
fi
1dc77f6d83e1 added THIS_IS_ISABELLE_BUILD discrimination;
wenzelm
parents: 2742
diff changeset
   112
9225
4772656ddbbc added site settings check;
wenzelm
parents: 8880
diff changeset
   113
# Site settings check -- just to make it a little bit harder to copy this file!
4772656ddbbc added site settings check;
wenzelm
parents: 8880
diff changeset
   114
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
4772656ddbbc added site settings check;
wenzelm
parents: 8880
diff changeset
   115
  { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
4772656ddbbc added site settings check;
wenzelm
parents: 8880
diff changeset
   116
3177
3c1448b9b0ee tuned comments;
wenzelm
parents: 3158
diff changeset
   117
#Users may want to change this.
3184
4e0bbfb113d5 renamed DEFAULT_LOGIC to ISABELLE_LOGIC;
wenzelm
parents: 3182
diff changeset
   118
ISABELLE_LOGIC=HOL
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
   119
2786
b36ca42c409a tuned comments;
wenzelm
parents: 2780
diff changeset
   120
b36ca42c409a tuned comments;
wenzelm
parents: 2780
diff changeset
   121
## Docs
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
   122
3177
3c1448b9b0ee tuned comments;
wenzelm
parents: 3158
diff changeset
   123
#Where to look for docs (multiple dirs separated by ':').
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   124
ISABELLE_DOCS="$ISABELLE_HOME/doc"
2345
8e45991e3601 added ISABELLE_DOCS;
wenzelm
parents: 2309
diff changeset
   125
3177
3c1448b9b0ee tuned comments;
wenzelm
parents: 3158
diff changeset
   126
#The dvi file viewer
3062
be354f68d340 improved DVI_VIEWER default;
wenzelm
parents: 3009
diff changeset
   127
DVI_VIEWER=xdvi
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
   128
#DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5"
2476
dae7f8ca5001 added dvi viewer alternative;
wenzelm
parents: 2466
diff changeset
   129
#DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10"
3062
be354f68d340 improved DVI_VIEWER default;
wenzelm
parents: 3009
diff changeset
   130
#DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9"
2345
8e45991e3601 added ISABELLE_DOCS;
wenzelm
parents: 2309
diff changeset
   131
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
   132
3158
2bd87b6682bf improved comments;
wenzelm
parents: 3118
diff changeset
   133
## Fonts -- how to install the Isabelle X11 fonts (can be tricky!).
2bd87b6682bf improved comments;
wenzelm
parents: 3118
diff changeset
   134
2bd87b6682bf improved comments;
wenzelm
parents: 3118
diff changeset
   135
# (1) Get fonts from local (client side) directory:
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   136
ISABELLE_INSTALLFONTS="xset fp+ \"$ISABELLE_HOME/lib/fonts\"; xset fp rehash"
3158
2bd87b6682bf improved comments;
wenzelm
parents: 3118
diff changeset
   137
3689
73378599a65b Added Cambridge font server
paulson
parents: 3637
diff changeset
   138
# (2) Get from font server at Munich or Cambridge:
3256
0a45cdd7da37 removed Cambridge font server;
wenzelm
parents: 3184
diff changeset
   139
#ISABELLE_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200"
3689
73378599a65b Added Cambridge font server
paulson
parents: 3637
diff changeset
   140
#ISABELLE_INSTALLFONTS="xset fp+ tcp/font-serv.cl.cam.ac.uk:7100"
2577
eec6bdf53809 added ISABELLE_INSTALLFONTS;
wenzelm
parents: 2476
diff changeset
   141
5964
a825c5929f4f improved comment;
wenzelm
parents: 5770
diff changeset
   142
2426
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
   143
###
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
   144
### Interfaces
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
   145
###
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
   146
dc9dcdb43b4f major cleanup;
wenzelm
parents: 2410
diff changeset
   147
# The null interface: pass-through to 'isabelle'.
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
   148
#ISABELLE_INTERFACE=none
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
   149
2786
b36ca42c409a tuned comments;
wenzelm
parents: 2780
diff changeset
   150
# Simple xterm based interface.
2294
a67343c87db4 settings: Isabelle settings -- site defaults.
wenzelm
parents:
diff changeset
   151
ISABELLE_INTERFACE=xterm
5964
a825c5929f4f improved comment;
wenzelm
parents: 5770
diff changeset
   152
ISABELLE_XTERM_OPTIONS=""
2968
8ba30b031f31 eliminated PLATFORM;
wenzelm
parents: 2915
diff changeset
   153
3303
656b5221a56e tuned Isamode stuff;
wenzelm
parents: 3256
diff changeset
   154
# Emacs running Isamode.
2968
8ba30b031f31 eliminated PLATFORM;
wenzelm
parents: 2915
diff changeset
   155
#ISABELLE_INTERFACE=emacs
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   156
ISAMODE_HOME="$ISABELLE_HOME/contrib/Isamode"
5964
a825c5929f4f improved comment;
wenzelm
parents: 5770
diff changeset
   157
ISAMODE_OPTIONS=""
a825c5929f4f improved comment;
wenzelm
parents: 5770
diff changeset
   158
9679
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   159
# Proof General
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   160
ISABELLE_INTERFACE=$(choosefrom \
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   161
  "$ISABELLE_HOME/contrib/ProofGeneral/isar/interface" \
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   162
  "$ISABELLE_HOME/../ProofGeneral/isar/interface" \
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   163
  "/usr/share/ProofGeneral/isar/interface" \
9948
3a01ecb6f65d easy settings: add /usr/local prefix;
wenzelm
parents: 9818
diff changeset
   164
  "/usr/local/ProofGeneral/isar/interface" \
10070
fefb958b52aa tuned auto paths;
wenzelm
parents: 9994
diff changeset
   165
  "/opt/ProofGeneral/isar/interface" \
9956
e75e6a603e71 added /usr/share/emacs/ProofGeneral/isar/interface choice;
wenzelm
parents: 9948
diff changeset
   166
  "/usr/share/emacs/ProofGeneral/isar/interface" \
9679
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   167
  "$ISABELLE_INTERFACE")
5964
a825c5929f4f improved comment;
wenzelm
parents: 5770
diff changeset
   168
PROOFGENERAL_OPTIONS=""
7185
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   169
9759
8e835ebc862f more polyml choices;
wenzelm
parents: 9745
diff changeset
   170
# X-Symbol mode for Proof General
9679
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   171
XSYMBOL_HOME=$(choosefrom \
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   172
  "$ISABELLE_HOME/contrib/x-symbol" \
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   173
  "$ISABELLE_HOME/../x-symbol" \
9787
fb8c5a66dbe8 more robust handling of spaces in args / file names;
wenzelm
parents: 9759
diff changeset
   174
  "/usr/share/x-symbol" \
9948
3a01ecb6f65d easy settings: add /usr/local prefix;
wenzelm
parents: 9818
diff changeset
   175
  "/usr/local/x-symbol" \
10070
fefb958b52aa tuned auto paths;
wenzelm
parents: 9994
diff changeset
   176
  "/opt/x-symbol" \
9679
6dca83af209b choosefrom: easy settings;
wenzelm
parents: 9569
diff changeset
   177
  "")
9994
b06f6d2eef5f XSYMBOL_INSTALLFONTS is back;
wenzelm
parents: 9989
diff changeset
   178
#required for remote fonts only ...
b06f6d2eef5f XSYMBOL_INSTALLFONTS is back;
wenzelm
parents: 9989
diff changeset
   179
#XSYMBOL_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200"
9569
68400ff46b09 X-Symbol mode -- look in canonical place;
wenzelm
parents: 9252
diff changeset
   180
7185
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   181
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   182
###
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   183
### External reasoning tools
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   184
###
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   185
7194
wenzelm
parents: 7185
diff changeset
   186
## Set HOME only for tools you have installed!
7185
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   187
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   188
# SVC (Stanford Validity Checker)
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   189
#SVC_HOME=
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   190
#SVC_MACHINE=i386-redhat-linux
19672499bab6 External reasoning tools;
wenzelm
parents: 7184
diff changeset
   191
#SVC_MACHINE=sparc-sun-solaris
7296
81286f228b2d Mucke, Einhoven;
wenzelm
parents: 7194
diff changeset
   192
81286f228b2d Mucke, Einhoven;
wenzelm
parents: 7194
diff changeset
   193
# Mucke (mu-calculus model checker)
81286f228b2d Mucke, Einhoven;
wenzelm
parents: 7194
diff changeset
   194
#MUCKE_HOME=/usr/local/bin
81286f228b2d Mucke, Einhoven;
wenzelm
parents: 7194
diff changeset
   195
81286f228b2d Mucke, Einhoven;
wenzelm
parents: 7194
diff changeset
   196
# Einhoven model checker
81286f228b2d Mucke, Einhoven;
wenzelm
parents: 7194
diff changeset
   197
#EINDHOVEN_HOME=/usr/local/bin