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
# 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)
/*
- * 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
#include <gtk/gtk.h>
-#include <libaute.h>
+#include <libzakauthe.h>
static GtkBuilder *gtkbuilder;
static gchar *guidir;
{
GError *error;
- Aute *aute;
+ ZakAuthe *aute;
gchar **aute_params;
gsize n_aute_params;
GSList *sl_aute_params;
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)
{
}
else if (g_strcmp0 (utente, "") == 0)
{
- return 0;
+ return 0;
}
else
{
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);