diff options
Diffstat (limited to 'guile')
-rw-r--r-- | guile/src/core.c | 6 | ||||
-rw-r--r-- | guile/src/errors.c | 6 | ||||
-rw-r--r-- | guile/src/extra.c | 5 | ||||
-rw-r--r-- | guile/src/utils.c | 6 | ||||
-rw-r--r-- | guile/src/utils.h | 6 |
5 files changed, 20 insertions, 9 deletions
diff --git a/guile/src/core.c b/guile/src/core.c index b7e60a9efa..2eafd740a1 100644 --- a/guile/src/core.c +++ b/guile/src/core.c @@ -1,5 +1,5 @@ /* GNUTLS --- Guile bindings for GnuTLS. - Copyright (C) 2007, 2008 Free Software Foundation + Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc. GNUTLS is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -17,6 +17,10 @@ /* Written by Ludovic Courtès <ludo@gnu.org>. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include <stdio.h> #include <string.h> #include <gnutls/gnutls.h> diff --git a/guile/src/errors.c b/guile/src/errors.c index cb034258e8..9e362b1db1 100644 --- a/guile/src/errors.c +++ b/guile/src/errors.c @@ -1,5 +1,5 @@ /* GNUTLS --- Guile bindings for GnuTLS. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2009 Free Software Foundation, Inc. GNUTLS is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -17,6 +17,10 @@ /* Written by Ludovic Courtès <ludo@chbouib.org>. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include <libguile.h> #include <gnutls/gnutls.h> diff --git a/guile/src/extra.c b/guile/src/extra.c index 2af48e7b5f..6faad3a843 100644 --- a/guile/src/extra.c +++ b/guile/src/extra.c @@ -1,5 +1,5 @@ /* GNUTLS-EXTRA --- Guile bindings for GNUTLS-EXTRA. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2009 Free Software Foundation, Inc. GNUTLS-EXTRA is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,6 +20,9 @@ /* Written by Ludovic Courtès <ludo@chbouib.org>. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif #include <stdio.h> #include <gnutls/gnutls.h> diff --git a/guile/src/utils.c b/guile/src/utils.c index f59312d145..1bb531a5b2 100644 --- a/guile/src/utils.c +++ b/guile/src/utils.c @@ -1,5 +1,5 @@ /* GNUTLS --- Guile bindings for GnuTLS. - Copyright (C) 2007, 2008 Free Software Foundation + Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc. GNUTLS is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -17,6 +17,10 @@ /* Written by Ludovic Courtès <ludo@chbouib.org>. */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include "utils.h" #include <gnutls/gnutls.h> diff --git a/guile/src/utils.h b/guile/src/utils.h index 17e3655d58..88984d1bbe 100644 --- a/guile/src/utils.h +++ b/guile/src/utils.h @@ -1,5 +1,5 @@ /* GNUTLS --- Guile bindings for GnuTLS. - Copyright (C) 2007, 2008 Free Software Foundation + Copyright (C) 2007, 2008, 2009 Free Software Foundation GNUTLS is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,10 +20,6 @@ /* Common utilities. */ -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - #include <libguile.h> |