From: Art Cancro Date: Sun, 11 Aug 2013 19:37:06 +0000 (-0400) Subject: Only define CTDLDIR if not already defined X-Git-Tag: v8.20~2 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=f3441eb8715d172b078a6acbcb20d16e51496d96 Only define CTDLDIR if not already defined --- diff --git a/ctdlsh/src/ctdlsh.h b/ctdlsh/src/ctdlsh.h index 5152bd942..8424391e3 100644 --- a/ctdlsh/src/ctdlsh.h +++ b/ctdlsh/src/ctdlsh.h @@ -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 *);