shishi-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU shishi branch, master, updated. shishi-1-0-2-6-gcbc4c1c


From: Mats Erik Andersson
Subject: [SCM] GNU shishi branch, master, updated. shishi-1-0-2-6-gcbc4c1c
Date: Fri, 05 Apr 2013 18:03:51 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU shishi".

http://git.savannah.gnu.org/cgit/shishi.git/commit/?id=cbc4c1ca3f8af8ac80248aab5b06244d5df5fda3

The branch, master has been updated
       via  cbc4c1ca3f8af8ac80248aab5b06244d5df5fda3 (commit)
      from  98e0be0af44c58fbe85ff915fa1db6d8b3339e57 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit cbc4c1ca3f8af8ac80248aab5b06244d5df5fda3
Author: Mats Erik Andersson <address@hidden>
Date:   Fri Apr 5 19:39:13 2013 +0200

    Build examples portably.
    
    Replacement headers from recent Gnulib need
    definitions in <config.h> for portable building.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog               |    9 +++++++++
 examples/client-cksum.c |    4 ++++
 examples/client-priv.c  |    4 ++++
 examples/client-safe.c  |    4 ++++
 examples/client.c       |    4 ++++
 examples/server.c       |    4 ++++
 6 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 02de7cd..69000d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2013-04-05  Mats Erik Andersson <address@hidden>
 
+       Replacement headers from Gnulib put macros into <config.h>,
+       which are needed for portability to FreeBSD.
+
+       * examples/client-cksum.c, examples/client-priv.c,
+       examples/client-safe.c, examples/client.c,
+       examples/server.c [HAVE_CONFIG_H]: Include <config.h>.
+
+2013-04-05  Mats Erik Andersson <address@hidden>
+
        * doc/Makefile.am (AM_MAKEINFOHTMLFLAGS): Add $(srcdir)
        to `--css-include'.
 
diff --git a/examples/client-cksum.c b/examples/client-cksum.c
index ba6ee7f..009083f 100644
--- a/examples/client-cksum.c
+++ b/examples/client-cksum.c
@@ -20,6 +20,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/examples/client-priv.c b/examples/client-priv.c
index 9d45ca9..89aafab 100644
--- a/examples/client-priv.c
+++ b/examples/client-priv.c
@@ -21,6 +21,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/examples/client-safe.c b/examples/client-safe.c
index ae894bd..a492bb5 100644
--- a/examples/client-safe.c
+++ b/examples/client-safe.c
@@ -21,6 +21,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/examples/client.c b/examples/client.c
index 28a1860..8bc0ea3 100644
--- a/examples/client.c
+++ b/examples/client.c
@@ -20,6 +20,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/examples/server.c b/examples/server.c
index 0c9b6e5..9e1e691 100644
--- a/examples/server.c
+++ b/examples/server.c
@@ -20,6 +20,10 @@
  *
  */
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 


hooks/post-receive
-- 
GNU shishi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]