]> git.pond.sub.org Git - empserver/blobdiff - src/lib/global/path.c.in
Update copyright notice
[empserver] / src / lib / global / path.c.in
index fb2ae50944f4423a7742e97493bef571bcdb377d..7ae30b5cbfe17e8b6e1e1a1e18ec8980ee9d88ee 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2016, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
  *  ---
  *
  *  @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
+ *     Markus Armbruster, 2005-2008
  */
 
 #include <config.h>
@@ -47,26 +46,31 @@ char dflt_econfig[] = "@econfig@";
 char *configdir;
 
 /* User configuration tables to load (relative to configdir) */
-char *config_tables = "";
+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 *timestampfil = "timestamp";
+char teldir[]  = "tel";
+char motdfil[] = "motd";
+char downfil[] = "down";
+char annfil[]  = "ann";
 
 char *listen_addr = "";
 char *loginport = "@EMPIREPORT@";