summaryrefslogtreecommitdiff
path: root/systems/knuth/local/texpaths.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /systems/knuth/local/texpaths.h
Initial commit
Diffstat (limited to 'systems/knuth/local/texpaths.h')
-rw-r--r--systems/knuth/local/texpaths.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/systems/knuth/local/texpaths.h b/systems/knuth/local/texpaths.h
new file mode 100644
index 0000000000..1e3c02230f
--- /dev/null
+++ b/systems/knuth/local/texpaths.h
@@ -0,0 +1,26 @@
+/*
+ * This file defines the default paths that will be used for TeX software.
+ * (These paths are used if the user's environment doesn't specify paths
+ * in TEXINPUTS, TEXFONTS, TEXBASES, or TEXPOOL.)
+ *
+ * Paths should be colon-separated and no longer than MAXINPATHCHARS-1
+ * (for defaultinputpath) or MAXOTHPATHCHARS (for other default paths).
+ */
+
+#define MAXINPATHCHARS 700 /* maximum number of chars in an input path */
+
+#define defaultinputpath ".:..:/home/tex/local/lib:/home/tex/dist/lib"
+ /* this should always start with "." */
+
+#define MAXOTHPATHCHARS 200 /* other paths should be much shorter */
+
+#define defaultfontpath "/home/fonts"
+ /* it is probably best not to include "." here to prevent confusion
+ by spooled device drivers that think they know where the fonts
+ really are */
+
+#define defaultformatpath ".:/home/tex/local/tex"
+
+#define defaultpoolpath ".:/home/tex/local/tex"
+
+