about summary refs log tree commit diff
path: root/configure.ng
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2013-01-02 23:41:46 +0100
committerAlexander Barton <alex@barton.de>2013-01-02 23:41:46 +0100
commit68cb1a8c2e507e7c99f787fab3540b904cfa1cc1 (patch)
tree479f748b608bc765142ea897a13bded87338da08 /configure.ng
parent21493731dffa0f5d9f62d24cdef290be6a6856fd (diff)
parent950aeec3ff0e15c456ac32d8fecee8c73f7c5df3 (diff)
downloadngircd-68cb1a8c2e507e7c99f787fab3540b904cfa1cc1.tar.gz
ngircd-68cb1a8c2e507e7c99f787fab3540b904cfa1cc1.zip
Merge branch 'bug145-ProvideHelp'
* bug145-ProvideHelp:
  Use "${docdir}/Commands.txt" as help text file
  Add a note that "help file" is updated on startup and REHASH only
  Add doc/Commands.txt which should document all commands
  Implement Help() function parsing and returning the help text
  Document "HelpFile" in sample-ngircd.conf and ngircd.conf.5
  Implement new configuration option "HelpFile"
  IRC_HELP(): Code cleanup
  Refactor Read_Motd() into Read_TextFile()
Diffstat (limited to 'configure.ng')
-rw-r--r--configure.ng4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ng b/configure.ng
index 84e27508..732e55ee 100644
--- a/configure.ng
+++ b/configure.ng
@@ -1,6 +1,6 @@
 #
 # ngIRCd -- The Next Generation IRC Daemon
-# Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors
+# Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -110,7 +110,7 @@ esac
 # Add additional CFLAGS, eventually specified on the command line:
 test -n "$CFLAGS_ADD" && CFLAGS="$CFLAGS $CFLAGS_ADD"
 
-CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
+CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"' -DDOCDIR='\"\$(docdir)\"'"
 
 # -- Headers --