[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: gtkextra-marshal.c
User: danmc
Date: 05/02/14 17:31:35
Log:
add some missing config.h inclusions
Revision Changes Path
1.12 +4 -0 eda/geda/devel/libgeda/noweb/s_clib.nw
(In the diff below, changes in quantity of whitespace are not shown.)
Index: s_clib.nw
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/libgeda/noweb/s_clib.nw,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- s_clib.nw 4 Feb 2005 04:39:29 -0000 1.11
+++ s_clib.nw 14 Feb 2005 22:31:34 -0000 1.12
@@ -65,6 +65,10 @@
#include <glib.h>
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+
#ifdef HAVE_LIBDMALLOC
#include <dmalloc.h>
#endif
Modified: . gtkextra-marshal.c gtkitementry_1_2.c listsort.c
Log:
add some missing config.h inclusions
Revision Changes Path
1.3 +3 -0 eda/geda/devel/gattrib/src/gtkextra-marshal.c
(In the diff below, changes in quantity of whitespace are not shown.)
Index: gtkextra-marshal.c
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gattrib/src/gtkextra-marshal.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- gtkextra-marshal.c 5 Feb 2005 16:03:53 -0000 1.2
+++ gtkextra-marshal.c 14 Feb 2005 22:31:35 -0000 1.3
@@ -1,3 +1,6 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
#include <glib-object.h>
1.3 +6 -0 eda/geda/devel/gattrib/src/gtkitementry_1_2.c
(In the diff below, changes in quantity of whitespace are not shown.)
Index: gtkitementry_1_2.c
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gattrib/src/gtkitementry_1_2.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- gtkitementry_1_2.c 5 Feb 2005 16:03:53 -0000 1.2
+++ gtkitementry_1_2.c 14 Feb 2005 22:31:35 -0000 1.3
@@ -20,8 +20,14 @@
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <ctype.h>
+#ifdef HAVE_STRING_H
#include <string.h>
+#endif
#include <gdk/gdkkeysyms.h>
#include <gdk/gdki18n.h>
#include <gtk/gtkmain.h>
1.3 +8 -1 eda/geda/devel/gattrib/src/listsort.c
(In the diff below, changes in quantity of whitespace are not shown.)
Index: listsort.c
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gattrib/src/listsort.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- listsort.c 5 Feb 2005 16:03:53 -0000 1.2
+++ listsort.c 14 Feb 2005 22:31:35 -0000 1.3
@@ -1,4 +1,5 @@
-#include <stdio.h>
+/* $Id: listsort.c,v 1.3 2005/02/14 22:31:35 danmc Exp $ */
+
/*----------------------------------------------------------------*
* Linked list sorting code taken from
@@ -50,6 +51,12 @@
* #define TRUE 1
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <stdio.h>
+
/*------------------------------------------------------------------
* Gattrib specific includes
*------------------------------------------------------------------*/