]> code.citadel.org Git - citadel.git/blobdiff - ctdlsh/src/ctdlsh.h
Only define CTDLDIR if not already defined
[citadel.git] / ctdlsh / src / ctdlsh.h
index c06e2aa05305477bd93cbdf124125ecaa0f63f5a..8424391e38f23764b5d1dd41b97ae431377c9412 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * main header file for ctdlsh
  *
- * Copyright (c) 2009-2012 by the citadel.org team
+ * Copyright (c) 2009-2013 by the citadel.org team
  * This program is open source software, cheerfully made available to
  * you under the terms of the GNU General Public License version 3.
  */
@@ -28,7 +28,9 @@
  * Set to the location of Citadel
  * FIXME this needs to be configurable
  */
-#define CTDLDIR        "/appl/citadel"
+#ifndef CTDLDIR
+#define CTDLDIR        "/usr/local/citadel"
+#endif
 
 typedef int ctdlsh_cmdfunc_t(int, char *);