Only define CTDLDIR if not already defined
authorArt Cancro <ajc@uncensored.citadel.org>
Sun, 11 Aug 2013 19:37:06 +0000 (15:37 -0400)
committerArt Cancro <ajc@uncensored.citadel.org>
Sun, 11 Aug 2013 19:37:06 +0000 (15:37 -0400)
ctdlsh/src/ctdlsh.h

index 5152bd942ec63541a23d0fa1fac38f55bc8c416b..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
  */
+#ifndef CTDLDIR
 #define CTDLDIR        "/usr/local/citadel"
+#endif
 
 typedef int ctdlsh_cmdfunc_t(int, char *);