diff options
| author | Alexander Barton <alex@barton.de> | 2013-01-02 23:41:46 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2013-01-02 23:41:46 +0100 |
| commit | 68cb1a8c2e507e7c99f787fab3540b904cfa1cc1 (patch) | |
| tree | 479f748b608bc765142ea897a13bded87338da08 /configure.ng | |
| parent | 21493731dffa0f5d9f62d24cdef290be6a6856fd (diff) | |
| parent | 950aeec3ff0e15c456ac32d8fecee8c73f7c5df3 (diff) | |
| download | ngircd-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.ng | 4 |
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 -- |