2009/10/1 Alfred M. Szmidt <[email protected]>: > + * talkd/talkd.c: Added config.h and guarded with HAVE_CONFIG_H > > * talkd/talkd.c [HAVE_CONFIG_H]: Include <config.h>. > > See `(standards) Conditional Changes', and ChangeLog in inetutils. >
Thanks I referred the standards and fixed now. Ready to go ? -- Rakesh Pandit https://fedoraproject.org/ freedom, friends, features, first >From de98adcc3318173143130f7cdbdfa8673e0e47fa Mon Sep 17 00:00:00 2001 From: Rakesh Pandit <[email protected]> Date: Thu, 1 Oct 2009 19:06:46 +0530 Subject: [PATCH] Added config.h to talkd.c --- ChangeLog | 4 ++++ talkd/talkd.c | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/ChangeLog b/ChangeLog index ac4ad13..a7ec4c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-10-01 Rakesh Pandit <[email protected]> + + * talkd/talkd.c [HAVE_CONFIG_H]: Include config.h. + 2009-08-21 Giuseppe Scrivano <[email protected]> rexec: show all missing arguments before exit. diff --git a/talkd/talkd.c b/talkd/talkd.c index 9c3ddcf..edb1195 100644 --- a/talkd/talkd.c +++ b/talkd/talkd.c @@ -17,6 +17,9 @@ to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif #include <argp.h> #include <intalkd.h> #include <signal.h> -- 1.6.4.4
