]> saetta.ns0.it Git - solipa/utenti/commitdiff
Changes due to libzakauthe name and namespace changes.
authorAndrea Zagli <azagli@libero.it>
Mon, 7 Sep 2015 14:57:12 +0000 (16:57 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 7 Sep 2015 14:57:12 +0000 (16:57 +0200)
.gitignore
configure.ac
src/main.c

index b431ed69f75999ef8f2883213f790db74931133e..e4759582db24bb18d775ec0edf6d6c60826f8996 100644 (file)
@@ -22,3 +22,4 @@ stamp-h1
 .anjuta*
 *exe
 *bak
+compile
\ No newline at end of file
index f3000507ef62790b9a65591720115a4f77e1c0ae..ffe2e8a44ff3879f522fd2febf3260195202944f 100644 (file)
@@ -6,7 +6,10 @@ AC_INIT([utenti], [0.0.3], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/main.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
 
 AC_CANONICAL_SYSTEM
@@ -17,7 +20,7 @@ AC_PROG_CXX
 
 # Checks for libraries.
 PKG_CHECK_MODULES(UTENTI, [gtk+-3.0 >= 3.0.0
-                           libaute >= 0.3.0])
+                           libzakauthe >= 0.5.0])
 
 AC_SUBST(UTENTI_CFLAGS)
 AC_SUBST(UTENTI_LIBS)
index ce2e19f0450c24c3fcb6d09a56431049ea2e26ac..364bf7057632f402eb93c908dd7b1c04e421f680 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2015 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
 
 #include <gtk/gtk.h>
 
-#include <libaute.h>
+#include <libzakauthe.h>
 
 static GtkBuilder *gtkbuilder;
 static gchar *guidir;
@@ -75,7 +75,7 @@ main (int argc, char **argv)
 {
        GError *error;
 
-       Aute *aute;
+       ZakAuthe *aute;
        gchar **aute_params;
        gsize n_aute_params;
        GSList *sl_aute_params;
@@ -119,12 +119,12 @@ main (int argc, char **argv)
        g_strfreev (aute_params);
 
        /* autenticazione */
-       aute = aute_new ();
-       aute_set_config (aute, sl_aute_params);
+       aute = zak_authe_new ();
+       zak_authe_set_config (aute, sl_aute_params);
 
        while (TRUE)
                {
-                       utente = aute_autentica (aute);
+                       utente = zak_authe_authe (aute);
 
                        if (utente == NULL)
                                {
@@ -132,7 +132,7 @@ main (int argc, char **argv)
                                }
                        else if (g_strcmp0 (utente, "") == 0)
                                {
-                                       return 0;                               
+                                       return 0;
                                }
                        else
                                {
@@ -176,7 +176,7 @@ main (int argc, char **argv)
 
        vbx_body_child = NULL;
 
-       GtkWidget *wgui = aute_get_management_gui (aute);
+       GtkWidget *wgui = zak_authe_get_management_gui (aute);
        if (wgui != NULL)
                {
                        utenti_set_vbx_body_child (wgui);