mirror of
https://github.com/gryf/wmaker.git
synced 2026-03-21 10:53:31 +01:00
wmiv: add support for archive files and a new option to ignore unknown image format
This patch adds optional support for compressed files and a new --ignore-unknown option to ignore unknown image format. It also adds local filename drag-and-drop support. And a copy current image to clipboard feature with ctrl+c shortcut. It also fixes: - fullscreen issue on multi monitors setup by using randr - app icon advertised via _NET_WM_ICON - fix UTF-8 filename usage in window title
This commit is contained in:
committed by
Carlos R. Mafra
parent
7cfdf6bd68
commit
7e21785710
16
configure.ac
16
configure.ac
@@ -857,6 +857,22 @@ AM_CONDITIONAL([ICON_EXT_XPM], [test "x$ICONEXT" = "xxpm"])
|
||||
AM_CONDITIONAL([ICON_EXT_TIFF], [test "x$ICONEXT" = "xtiff"])
|
||||
|
||||
|
||||
dnl Archive Support for wmiv
|
||||
dnl =================================
|
||||
dnl Check for libarchive (comprehensive archive support)
|
||||
AC_CHECK_LIB([archive], [archive_read_new], [
|
||||
AC_CHECK_HEADER([archive.h], [
|
||||
AC_DEFINE([HAVE_LIBARCHIVE], [1], [Define if libarchive is available])
|
||||
LIBARCHIVE_LIBS="-larchive"
|
||||
], [
|
||||
AC_MSG_WARN([libarchive header not found, archive support disabled])
|
||||
])
|
||||
], [
|
||||
AC_MSG_WARN([libarchive not found, archive support disabled])
|
||||
])
|
||||
AC_SUBST([LIBARCHIVE_LIBS])
|
||||
|
||||
|
||||
dnl ==============================================
|
||||
dnl End of Graphic Format Libraries
|
||||
dnl ==============================================
|
||||
|
||||
Reference in New Issue
Block a user