PKG_CHECK_MODULES(SOLIPA, [libgdaex >= 0.5.0
libgtkform >= 0.5.0
gio-2.0 >= 2.36
- gio-windows-2.0 >= 2.36
- gtk+-3.0 >= 3.0
- gtk+-win32-3.0 >= 3.0])
+ gtk+-3.0 >= 3.0])
AC_SUBST(SOLIPA_CFLAGS)
AC_SUBST(SOLIPA_LIBS)
AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
+if test x$platform_win32 = xyes; then
+ PKG_CHECK_MODULES(SOLIPA_WIN32, [gio-windows-2.0 >= 2.36
+ gtk+-win32-3.0 >= 3.0])
+fi
+AC_SUBST(SOLIPA_WIN32_CFLAGS)
+AC_SUBST(SOLIPA_WIN32_LIBS)
+
# Output files
AC_CONFIG_FILES([
libsolipa.pc
gchar *curdir;
curdir = g_get_current_dir ();
- chdir (priv->ooo_path);
+ if (g_chdir (priv->ooo_path) == -1)
+ {
+ g_warning ("Unable to change directory");
+ return FALSE;
+ }
str = g_string_new (ENCODING "\n");
gtk_widget_destroy (dialog);
- chdir (curdir);
+ if (g_chdir (curdir) == -1)
+ {
+ g_warning ("Unable to change directory.");
+ }
g_free (curdir);
+
+ return TRUE;
}
static gboolean
const gchar *filename)
{
gchar *str;
- PyObject *obj;
-
- SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (ooo);
str = solipa_ooo_pycmd_salva_documento (ooo, filename);
PyRun_SimpleString (str);
const gchar *filename)
{
gchar *str;
- PyObject *obj;
-
- SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (ooo);
str = solipa_ooo_pycmd_salva_documento_pdf (ooo, filename);
str = g_string_new (solipa_ooo_pycmd_header (ooo));
- g_string_append_printf (str, body);
+ g_string_append (str, body);
/* creo il file temporaneo da eseguire */
stream = NULL;
g_output_stream_close (ostream, NULL, &error);
gchar *curdir = g_get_current_dir ();
- chdir (priv->ooo_path);
+ if (g_chdir (priv->ooo_path) == -1)
+ {
+ g_warning ("Unable to change directory.");
+ return;
+ }
tmp_path = g_file_get_path (gfile);
g_string_printf (str, "python.exe %s", tmp_path);
pclose (pipa);
- chdir (curdir);
+ if (g_chdir (curdir) == -1)
+ {
+ g_warning ("Unable to change directory.");
+ }
g_free (curdir);
/* elimino il file */