]> saetta.ns0.it Git - libgtkform/commitdiff
Migrated to libgdaex 0.3.0. 0.3.0
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Mon, 13 Jun 2011 07:15:04 +0000 (09:15 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Mon, 13 Jun 2011 07:15:04 +0000 (09:15 +0200)
12 files changed:
configure.ac
src/field.h
src/fieldboolean.h
src/fielddatetime.h
src/fieldfloat.h
src/fieldinteger.h
src/fieldtext.h
src/group.h
src/widget.c
src/widget.h
src/widgetcombobox.h
test/from_xml_with_db.c

index cb2f1b8c1542c85996762ab1ff80a24b227650d1..73a036e35b6050bf7b47999cb97fd40617aefd5e 100644 (file)
@@ -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)
index 92b8d36ade28e3e900ffcf873ce1abcd3dd284ed..1e6f68df98690d2fc9ebbfc6556c7ee64f6d487f 100644 (file)
@@ -21,7 +21,7 @@
 
 #include <glib.h>
 
-#include <libgdaex.h>
+#include <libgdaex/libgdaex.h>
 
 #include "widget.h"
 
index 303be5b2e4d388b88614d8d2598e3e4f522d67da..84ca86048f38786ec7df018ca6de5f51eb9a8503 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __LIBGTK_FORM_FIELD_BOOLEAN_H__
 #define __LIBGTK_FORM_FIELD_BOOLEAN_H__
 
-#include <libgdaex.h>
-
 #include "field.h"
 
 
index 4faee2cf028076599fd902439d7e6f9530b33a1e..d645ea5b49d9eae24f81c30be04ec542986c4565 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __LIBGTK_FORM_FIELD_DATETIME_H__
 #define __LIBGTK_FORM_FIELD_DATETIME_H__
 
-#include <libgdaex.h>
-
 #include "field.h"
 
 
index fd211083b89f340f1bee0c6d8a3b8cb232beb94d..62fcc3b64ed4c829790caba2330d1a5873397661 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __LIBGTK_FORM_FIELD_FLOAT_H__
 #define __LIBGTK_FORM_FIELD_FLOAT_H__
 
-#include <libgdaex.h>
-
 #include "field.h"
 
 
index 8f635b8dc577fbd4cd7b8ff4f4568051b5006eeb..4ca3ca74348b488bfac34af84141e62d46d91a45 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __LIBGTK_FORM_FIELD_INTEGER_H__
 #define __LIBGTK_FORM_FIELD_INTEGER_H__
 
-#include <libgdaex.h>
-
 #include "field.h"
 
 
index 885eded6d2f76f5b7eb5da655bf5a87661f4d50f..f005ca5ae66ddf2e7e65400c3f862a1c59227068 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __LIBGTK_FORM_FIELD_TEXT_H__
 #define __LIBGTK_FORM_FIELD_TEXT_H__
 
-#include <libgdaex.h>
-
 #include "field.h"
 
 
index 3a58b66e5944b18f35f48113aa18b5f3fd32efe0..6d1f658b618563977bc53ebd2fb13f91777f7ba8 100644 (file)
@@ -21,8 +21,6 @@
 
 #include <glib.h>
 
-#include <libgdaex.h>
-
 #include "widget.h"
 #include "field.h"
 
index ddd4cc0dda9b43707f00e59210da905743b7b9b7..2fe9ba3b03c90ebcf23055541f37bd616b95f132 100644 (file)
@@ -26,8 +26,6 @@
 
 #include <sql-parser/gda-sql-parser.h>
 
-#include <libgdaex.h>
-
 #include "form.h"
 #include "widget.h"
 #include "field.h"
index e2462eb989eba0852dccb01ec1a773198a8ae6d8..391e1d32174de8bbb9ee85bf397a4dba9346f160 100644 (file)
@@ -22,6 +22,7 @@
 #include <glib.h>
 #include <gtk/gtk.h>
 
+#include <libgdaex/libgdaex.h>
 
 G_BEGIN_DECLS
 
index e3435e51a221fd5c55190c387b4cb6fa40955263..4d282360e1b215b7662e7657d71500b61c375823 100644 (file)
@@ -19,8 +19,6 @@
 #ifndef __LIBGTK_FORM_WIDGET_COMBO_BOX_H__
 #define __LIBGTK_FORM_WIDGET_COMBO_BOX_H__
 
-#include <libgdaex.h>
-
 #include "widget.h"
 
 
index bba0d93fbe09a05b1953faa60c9e283f75eefa75..1b1729fe61b172e5b1c1ed9305475d8baf6d8494 100644 (file)
@@ -20,7 +20,7 @@
 
 #include <gtk/gtk.h>
 
-#include <libgdaex.h>
+#include <libgdaex/libgdaex.h>
 
 #include "form.h"
 #include "field.h"