--- libgda-1.9.100/libgda/gda-data-model-hash.c~ 2006-05-03 23:04:11.000000000 +0200 +++ libgda-1.9.100/libgda/gda-data-model-hash.c 2006-05-03 23:04:11.000000000 +0200 @@ -70,7 +70,7 @@ return GDA_DATA_MODEL_HASH (model)->priv->number_of_columns; } -static GdaRow * +GdaRow * gda_data_model_hash_get_row (GdaDataModelBase *model, gint row) { gint hash_entry; --- libgda-1.9.100/libgda/gda-data-model-array.c~ 2006-05-03 22:48:02.000000000 +0200 +++ libgda-1.9.100/libgda/gda-data-model-array.c 2006-05-03 22:48:02.000000000 +0200 @@ -26,6 +26,7 @@ #include #include #include +#include #define PARENT_TYPE GDA_TYPE_DATA_MODEL_BASE @@ -430,7 +431,7 @@ } if (! cur) { - g_set_error (error, 0, 0, _("No specified in "), node->name); + g_set_error (error, 0, 0, _("No specified in ")); clean_field_specs (fields); return NULL; } --- libgda-1.9.100/libgda/gda-data-model-hash.h~ 2006-05-03 23:03:48.000000000 +0200 +++ libgda-1.9.100/libgda/gda-data-model-hash.h 2006-05-03 23:03:48.000000000 +0200 @@ -60,6 +60,7 @@ gint rownum, GdaRow *row); +GdaRow *gda_data_model_hash_get_row (GdaDataModelBase *model, gint row); G_END_DECLS --- libgda-1.9.100/providers/postgres/utils.c~ 2006-05-03 23:08:57.000000000 +0200 +++ libgda-1.9.100/providers/postgres/utils.c 2006-05-03 23:08:57.000000000 +0200 @@ -289,7 +289,7 @@ break; case GDA_VALUE_TYPE_BLOB : blob = gda_postgres_blob_new (cnc); - gda_postgres_blob_set_id (GDA_POSTRES_BLOB (blob), atoi (thevalue)); + gda_postgres_blob_set_id (GDA_POSTGRES_BLOB (blob), atoi (thevalue)); gda_value_set_blob (value, blob); break; default : --- libgda-1.9.100/providers/odbc/gda-odbc-provider.c~ 2006-05-03 23:06:12.000000000 +0200 +++ libgda-1.9.100/providers/odbc/gda-odbc-provider.c 2006-05-03 23:06:12.000000000 +0200 @@ -502,7 +502,7 @@ return FALSE; } - rc = SQLSetConnectOption( priv_data->hdbc, SQL_CURRENT_QUALIFIER, (UDWORD) name ); + rc = SQLSetConnectOption( priv_data->hdbc, SQL_CURRENT_QUALIFIER, (unsigned long) name ); if ( SQL_SUCCEEDED( rc )) { return TRUE; --- libgda-1.9.100/providers/sqlite/gda-sqlite-provider.c~ 2006-05-03 22:49:54.000000000 +0200 +++ libgda-1.9.100/providers/sqlite/gda-sqlite-provider.c 2006-05-03 22:49:54.000000000 +0200 @@ -882,7 +882,7 @@ { GdaDataModel *model = NULL; gchar *sql; - gchar reference = NULL; + gchar *reference = NULL; GList *reclist; /* use the SQLite PRAGMA command to get the list of FK keys for the table */ --- libgda-1.9.100/providers/sqlite/gda-sqlite-recordset.c~ 2006-05-03 22:50:39.000000000 +0200 +++ libgda-1.9.100/providers/sqlite/gda-sqlite-recordset.c 2006-05-03 22:50:39.000000000 +0200 @@ -24,6 +24,7 @@ #include #include +#include #include "gda-sqlite.h" #include "gda-sqlite-recordset.h" #include "gda-sqlite-provider.h" --- libgda-1.9.100/providers/bdb/libmain.c~ 2006-05-04 22:41:59.000000000 +0200 +++ libgda-1.9.100/providers/bdb/libmain.c 2006-05-04 22:41:59.000000000 +0200 @@ -20,6 +20,7 @@ */ #include +#include #include "gda-bdb.h" const gchar *plugin_get_name (void);