]> git.pond.sub.org Git - empserver/blobdiff - src/lib/global/path.c.in
Remove the initialization for builtindir, not required
[empserver] / src / lib / global / path.c.in
index 14cd912135f6ba0013d560a3512e604d4789fd3a..a761735b523995af3f086b3122da19b461df75eb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -26,8 +26,8 @@
  *  ---
  *
  *  @configure_input@
- *  path.c: Path initializations needed outside of the file initialization
- *          tables
+ *  path.c.in: Path initializations needed outside of the file
+ *            initialization tables
  * 
  *  Known contributors to this file:
  *     Markus Armbruster, 2005
@@ -52,22 +52,25 @@ char *custom_tables = "";
 /* Update schedule (absolute file name) */
 char *schedulefil;
 
-/* Where to find built-in configuration tables  (relative to configdir) */
-char *builtindir = "@builtindir@";
+/* Where to find built-in configuration tables (relative to configdir) */
+char *builtindir_conf = "@builtindir@";
+/* Where to find built-in configuration tables (absolute) */
+char *builtindir;
 
-/* Where to find info pages (relative to gamedir) */
-/* TODO UI wart, make it relative to configdir */
-char *infodir  = "@einfodir@";
+/* Where to find info pages (relative to configdir) */
+char *infodir_conf = "@einfodir@";
+/* Where to find info pages (absolute) */
+char *infodir;
 
 /* Where this game's data is stored (relative to configdir) */
-char *gamedir  = "@gamedir@";
+char *gamedir_conf = "@gamedir@";
+/* Where this game's data is stored (absolute) */
+char *gamedir;
 
 /* These are relative to gamedir: */
 char teldir[]  = "tel";
 char motdfil[] = "motd";
 char downfil[] = "down";
-char disablefil[] = "disable";
-char telfil[]  = "tel/tel";
 char annfil[]  = "ann";
 
 char *listen_addr = "";