]> 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 d8426862463072281cc4963a0007356dc3c1e5df..a761735b523995af3f086b3122da19b461df75eb 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, 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
@@ -47,28 +47,31 @@ char dflt_econfig[] = "@econfig@";
 char *configdir;
 
 /* User configuration tables to load (relative to configdir) */
-char *config_tables = "";
+char *custom_tables = "";
 
-/* Where to find built-in configuration tables  (relative to configdir) */
-char *builtindir = "@builtindir@";
+/* Update schedule (absolute file name) */
+char *schedulefil;
 
-/* Where to find info pages (relative to gamedir) */
-/* TODO UI wart, make it relative to configdir */
-char *infodir  = "@einfodir@";
+/* 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 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 *banfil   = "ban";
-char *authfil  = "auth";
-char *timestampfil = "timestamp";
+char teldir[]  = "tel";
+char motdfil[] = "motd";
+char downfil[] = "down";
+char annfil[]  = "ann";
 
 char *listen_addr = "";
 char *loginport = "@EMPIREPORT@";