annotate src/defaults.h @ 1349:33cf1f36aec6

[project @ 1995-09-05 07:06:43 by jwe]
author jwe
date Tue, 05 Sep 1995 07:09:38 +0000
parents 9f51d8b235ab
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1085
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
1 // defaults.h -*- C++ -*-
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
2 /*
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
3
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
4 Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
5
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
7
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
11 later version.
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
12
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
16 for more details.
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
17
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
19 along with Octave; see the file COPYING. If not, write to the Free
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
21
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
22 */
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
23
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
24 #if !defined (octave_defaults_h)
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
25 #define octave_defaults_h 1
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
26
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
27 #ifndef DEFAULT_PAGER
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
28 #define DEFAULT_PAGER "less -e"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
29 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
30
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
31 #ifndef OCTAVE_PREFIX
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
32 #define OCTAVE_PREFIX "/usr/local"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
33 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
34
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
35 #ifndef OCTAVE_EXEC_PREFIX
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
36 #define OCTAVE_EXEC_PREFIX "/usr/local"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
37 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
38
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
39 #ifndef OCTAVE_DATADIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
40 #define OCTAVE_DATADIR "/usr/local/lib"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
41 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
42
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
43 #ifndef OCTAVE_LIBDIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
44 #define OCTAVE_LIBDIR "/usr/local/lib"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
45 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
46
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
47 #ifndef OCTAVE_BINDIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
48 #define OCTAVE_BINDIR "/usr/local/bin"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
49 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
50
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
51 #ifndef OCTAVE_INFODIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
52 #define OCTAVE_INFODIR "/usr/local/info"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
53 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
54
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
55 #ifndef OCTAVE_FCNFILEDIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
56 #define OCTAVE_FCNFILEDIR "/usr/local/lib/octave/ss-950127/m"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
57 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
58
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
59 #ifndef OCTAVE_STARTUPFILEDIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
60 #define OCTAVE_STARTUPFILEDIR OCTAVE_FCNFILEDIR "/startup"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
61 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
62
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
63 #ifndef OCTAVE_LOCALFCNFILEPATH
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
64 #define OCTAVE_LOCALFCNFILEPATH "/usr/local/lib/octave/site/m//"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
65 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
66
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
67 #ifndef OCTAVE_ARCHLIBDIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
68 #define OCTAVE_ARCHLIBDIR "/usr/local/lib/octave/ss-950127/exec/sparc-sun-sunos4.1.2"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
69 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
70
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
71 #ifndef OCTAVE_OCTFILEDIR
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
72 #define OCTAVE_OCTFILEDIR "/usr/local/lib/octave/ss-950127/oct/sparc-sun-sunos4.1.2"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
73 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
74
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
75 #ifndef OCTAVE_LOCALOCTFILEPATH
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
76 #define OCTAVE_LOCALOCTFILEPATH "/usr/local/lib/octave/site/oct/sparc-sun-sunos4.1.2//"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
77 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
78
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
79 #ifndef OCTAVE_FCNFILEPATH
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
80 #define OCTAVE_FCNFILEPATH ".:/usr/local/lib/octave/site/oct/sparc-sun-sunos4.1.2//:/usr/local/lib/octave/site/m//:/usr/local/lib/octave/ss-950127/oct/sparc-sun-sunos4.1.2//:/usr/local/lib/octave/ss-950127/m//"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
81 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
82
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
83 #ifndef OCTAVE_IMAGEPATH
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
84 #define OCTAVE_IMAGEPATH ".:/usr/local/lib/octave/ss-950127/imagelib//"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
85 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
86
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
87 #ifndef TARGET_HOST_TYPE
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
88 #define TARGET_HOST_TYPE "sparc-sun-sunos4.1.2"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
89 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
90
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
91 #ifndef FLIB_LIST
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
92 #define FLIB_LIST "libF77.a"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
93 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
94
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
95 #ifndef FLIB_PATH
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
96 #define FLIB_PATH "/usr/lang/SC1.0/cg87:/usr/lang/SC1.0"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
97 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
98
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
99 #ifndef CXXLIB_LIST
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
100 #define CXXLIB_LIST "libg++.a:libg++.a:libgcc.a:libc.a:libgcc.a"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
101 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
102
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
103 #ifndef CXXLIB_PATH
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
104 #define CXXLIB_PATH "/usr/local/gnu/lib/gcc-lib/sparc-sun-sunos4.1.2/2.6.3:/usr/local/gnu/lib"
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
105 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
106
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
107 #endif
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
108
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
109 /*
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
110 ;;; Local Variables: ***
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
111 ;;; mode: C++ ***
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
112 ;;; page-delimiter: "^/\\*" ***
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
113 ;;; End: ***
9f51d8b235ab [project @ 1995-01-31 04:17:15 by jwe]
jwe
parents:
diff changeset
114 */