From: Andrea Zagli Date: Mon, 13 Jun 2011 07:15:04 +0000 (+0200) Subject: Migrated to libgdaex 0.3.0. X-Git-Tag: 0.3.0^0 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=ef57834094b8c24e48c8785192fd94ea4363aacd;p=libgtkform Migrated to libgdaex 0.3.0. --- diff --git a/configure.ac b/configure.ac index cb2f1b8..73a036e 100644 --- a/configure.ac +++ b/configure.ac @@ -2,11 +2,14 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([libgtkform], [0.2.0], [azagli@libero.it]) +AC_INIT([libgtkform], [0.3.0], [azagli@libero.it]) AC_CONFIG_SRCDIR([src/form.c]) AC_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE(-Wall) + +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) + AM_MAINTAINER_MODE m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) @@ -43,7 +46,7 @@ AM_GLIB_GNU_GETTEXT # Checks for libraries. PKG_CHECK_MODULES(GTKFORM, [gtk+-2.0 >= 2.12.0 libxml-2.0 >= 2.0.0 - libgdaex >= 0.1.0 + libgdaex >= 0.3.0 libgda-4.0 >= 4.2.3]) AC_SUBST(GTKFORM_CFLAGS) diff --git a/src/field.h b/src/field.h index 92b8d36..1e6f68d 100644 --- a/src/field.h +++ b/src/field.h @@ -21,7 +21,7 @@ #include -#include +#include #include "widget.h" diff --git a/src/fieldboolean.h b/src/fieldboolean.h index 303be5b..84ca860 100644 --- a/src/fieldboolean.h +++ b/src/fieldboolean.h @@ -19,8 +19,6 @@ #ifndef __LIBGTK_FORM_FIELD_BOOLEAN_H__ #define __LIBGTK_FORM_FIELD_BOOLEAN_H__ -#include - #include "field.h" diff --git a/src/fielddatetime.h b/src/fielddatetime.h index 4faee2c..d645ea5 100644 --- a/src/fielddatetime.h +++ b/src/fielddatetime.h @@ -19,8 +19,6 @@ #ifndef __LIBGTK_FORM_FIELD_DATETIME_H__ #define __LIBGTK_FORM_FIELD_DATETIME_H__ -#include - #include "field.h" diff --git a/src/fieldfloat.h b/src/fieldfloat.h index fd21108..62fcc3b 100644 --- a/src/fieldfloat.h +++ b/src/fieldfloat.h @@ -19,8 +19,6 @@ #ifndef __LIBGTK_FORM_FIELD_FLOAT_H__ #define __LIBGTK_FORM_FIELD_FLOAT_H__ -#include - #include "field.h" diff --git a/src/fieldinteger.h b/src/fieldinteger.h index 8f635b8..4ca3ca7 100644 --- a/src/fieldinteger.h +++ b/src/fieldinteger.h @@ -19,8 +19,6 @@ #ifndef __LIBGTK_FORM_FIELD_INTEGER_H__ #define __LIBGTK_FORM_FIELD_INTEGER_H__ -#include - #include "field.h" diff --git a/src/fieldtext.h b/src/fieldtext.h index 885eded..f005ca5 100644 --- a/src/fieldtext.h +++ b/src/fieldtext.h @@ -19,8 +19,6 @@ #ifndef __LIBGTK_FORM_FIELD_TEXT_H__ #define __LIBGTK_FORM_FIELD_TEXT_H__ -#include - #include "field.h" diff --git a/src/group.h b/src/group.h index 3a58b66..6d1f658 100644 --- a/src/group.h +++ b/src/group.h @@ -21,8 +21,6 @@ #include -#include - #include "widget.h" #include "field.h" diff --git a/src/widget.c b/src/widget.c index ddd4cc0..2fe9ba3 100644 --- a/src/widget.c +++ b/src/widget.c @@ -26,8 +26,6 @@ #include -#include - #include "form.h" #include "widget.h" #include "field.h" diff --git a/src/widget.h b/src/widget.h index e2462eb..391e1d3 100644 --- a/src/widget.h +++ b/src/widget.h @@ -22,6 +22,7 @@ #include #include +#include G_BEGIN_DECLS diff --git a/src/widgetcombobox.h b/src/widgetcombobox.h index e3435e5..4d28236 100644 --- a/src/widgetcombobox.h +++ b/src/widgetcombobox.h @@ -19,8 +19,6 @@ #ifndef __LIBGTK_FORM_WIDGET_COMBO_BOX_H__ #define __LIBGTK_FORM_WIDGET_COMBO_BOX_H__ -#include - #include "widget.h" diff --git a/test/from_xml_with_db.c b/test/from_xml_with_db.c index bba0d93..1b1729f 100644 --- a/test/from_xml_with_db.c +++ b/test/from_xml_with_db.c @@ -20,7 +20,7 @@ #include -#include +#include #include "form.h" #include "field.h"