]> saetta.ns0.it Git - zakaudit/libzakaudit/commitdiff
Changes to compile with gtk3 and libgda5. 0.5.0
authorAndrea Zagli <azagli@libero.it>
Fri, 26 Jul 2013 08:27:05 +0000 (10:27 +0200)
committerAndrea Zagli <azagli@libero.it>
Fri, 26 Jul 2013 08:27:05 +0000 (10:27 +0200)
configure.ac
libzakaudit.pc.in
tests/test1.c

index e4315e21adfefc13d987f37b8fc639bb1d703cc7..6453556b4bdeef0fa19d43c6a0b83eef5da98991 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.59)
-AC_INIT([libzakaudit], [0.3.0], [azagli@libero.it])
+AC_INIT([libzakaudit], [0.5.0], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/audit.c])
 AC_CONFIG_HEADER([config.h])
 
@@ -20,7 +20,6 @@ AC_PROG_CC
 AC_PROG_LIBTOOL
 
 # Checks for libraries.
-GDAEX_REQUIRED=0.2.0
 
 dnl Check for pkgconfig first
 AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
@@ -30,8 +29,7 @@ if test "x$HAVE_PKGCONFIG" = "xno"; then
   AC_MSG_ERROR(you need to have pkgconfig installed !)
 fi
 
-PKG_CHECK_MODULES(LIBZAKAUDIT, gtk+-2.0 >= 2.20
-                               libgdaex >= $GDAEX_REQUIRED)
+PKG_CHECK_MODULES(LIBZAKAUDIT, [libgdaex >= 0.5.0])
 
 AC_SUBST(LIBZAKAUDIT_CFLAGS)
 AC_SUBST(LIBZAKAUDIT_LIBS)
index d0e9dc37fd07ea14b2c23227008fc0ff5c4b96eb..a7b5758132a1505e9cf892b2774fb7616a5e492f 100644 (file)
@@ -6,6 +6,6 @@ includedir=@includedir@
 Name: @PACKAGE_NAME@
 Description: Database auditing
 Version: @PACKAGE_VERSION@
-Requires: libgdaex
+Requires: libgdaex >= 0.5.0
 Libs: -L${libdir} -lzakaudit
 Cflags: -I${includedir}
index 58da167dc403300bf0c5a2ce59c495eb41e852a2..23727e83ecdba6929cd5304c53d2414051375796 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test1.c
  *
- * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2013 Andrea Zagli <azagli@libero.it>
  *
  *  This file is part of libaudit.
  *  
@@ -34,8 +34,6 @@ main (int argc, char *argv[])
        GdaSqlParser *parser;
        GdaStatement *stmt;
 
-       g_type_init ();
-
        audit = zak_audit_new_from_string ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=audit");
 
        if (audit == NULL)