diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-07-02 06:27:09 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-07-02 06:27:09 (GMT) |
commit | d3c74213cf2306453b21779c80d05d121fbffe66 (patch) | |
tree | 4222409777f72f77238c95adba34ed5b07746567 /configure.ac | |
parent | 21788df2799eb8976c1c68cd84abf0ffe92a7a45 (diff) |
Ensure minimal desktop support for icon and name.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fe4a45f..6bf6ca1 100644 --- a/configure.ac +++ b/configure.ac @@ -434,6 +434,18 @@ else fi +PKG_CHECK_MODULES(LIBGIOUNIX,gio-unix-2.0 >= 2.74.6,[libgiounix_found=yes],[libgiounix_found=no]) + +if test "$libgiounix_found" = "yes"; then + libgiounix_version=`pkg-config gio-unix-2.0 --modversion` +else + libgiounix_version='-' +fi + +AC_SUBST(LIBGIOUNIX_CFLAGS) +AC_SUBST(LIBGIOUNIX_LIBS) + + #--- Checks for libxml2 PKG_CHECK_MODULES(LIBXML,libxml-2.0 >= 2.6.11,[libxml_found=yes],[libxml_found=no]) @@ -852,6 +864,7 @@ echo The thread support for GLib.................. : $libgthread_version echo The dynamic module loader for GLib........... : $libgmod_version echo The GNU Image Manipulation Program Toolkit... : $libgtk_version echo The GNU Image Manipulation Program Toolkit.4. : $libgtk4_version +echo The GIO UNIX specific APIs................... : $libgiounix_version echo The XML C parser and toolkit of Gnome........ : $libxml_version echo The flexible interface for archives I/O...... : $libarchive_version echo The small, fast and reliable database engine. : $libsqlite_version |