-libsolipa (0.5.0-2~7.gbpe7dc42) UNRELEASED; urgency=medium
+libsolipa (0.5.0-2~8.gbp775309) UNRELEASED; urgency=medium
- ** SNAPSHOT build @e7dc42380a01c9632a502a508e71eebb44f6d80d **
+ ** SNAPSHOT build @77530913ef12b64c87d870f742fab0266c6245b6 **
[ Andrea Zagli ]
* Initial release
* Debian pkg: updates from upstream.
* Aggiunta la funzione Solipa::gtk_tree_model_get_value_boolean.
* Debian pkg: updated from stream.
+ * Debian pkg: rebuild.
+ * Utilizzo di python3 se presente.
+ * Aggiustamenti di ooo per funzionare senza finestre gtk.
+ * Aggiunte funzioni OOO::[get|set]_[path|version|port|soffice].
+ * Aggiunta funzione OOO::get_cmd_apri_openoffice.
+ * Aggiunte le funzioni OOO::[g|s]et_transient.
+ * Nelle funzioni OOO::[s|g]et_* se il parametro รจ NULL deve reimpostare il default.
+ * OOO pubblicizzata la funzione per l'inizializzazione del python.
+ * Aggiunto il test ooo_no_aprichiudi.
+ * Esportazione variabile python per pkg-config.
+ * Aggiunta la funzione OOO::openoffice_in_esecuzione.
- -- tux <tux@develop64.example.tst> Tue, 12 Jun 2018 09:51:19 +0200
+ -- tux <tux@develop64.example.tst> Thu, 12 Jul 2018 09:08:35 +0200
index f6a0719..259be59 100644
--- a/configure.ac
+++ b/configure.ac
-@@ -57,7 +57,8 @@ PKG_CHECK_MODULES(CTPL, [ctpl])
+@@ -57,13 +57,14 @@ PKG_CHECK_MODULES(CTPL, [ctpl])
AC_SUBST(CTPL_CFLAGS)
AC_SUBST(CTPL_LIBS)
--PKG_CHECK_MODULES(PYTHON, [python])
+ PKG_CHECK_MODULES(PYTHON, [python-3.6], [python36_found=yes], [python36_found=no])
+ if test x$python36_found = xno; then
+- PKG_CHECK_MODULES(PYTHON, [python])
+AC_CHECK_PROG(PYTHON_CFLAGS, [python-config], `python-config --cflags`, [-I/c/Python26/include])
+AC_CHECK_PROG(PYTHON_LIBS, [python-config], `python-config --libs`, [-lpthread -lm -L/c/Python26/libs -lpython26])
+ PYTHON_PKGCONFIG="python"
+ else
+ PYTHON_PKGCONFIG="python-3.6"
+ fi
AC_SUBST(PYTHON_CFLAGS)
AC_SUBST(PYTHON_LIBS)