1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-10 18:45:47 +01:00

fixed bug with icons of different sizes

made Apply work in window inspector for windows with no WM_CLASS
This commit is contained in:
kojima
2000-01-20 11:51:42 +00:00
parent ae354fc758
commit 34cd5125e3
22 changed files with 1101 additions and 707 deletions

View File

@@ -441,6 +441,22 @@ if test "$shape" = yes; then
fi
dnl XINERAMA support
dnl ================
xinerama=yes
AC_ARG_ENABLE(xinerama,
[ --disable-xinerama disable XInerama extension support],
xinerama=$enableval, xinerama=yes)
if test "$xinerama" = yes; then
AC_CHECK_LIB(Xext, X, [XLIBS="-lXext $XLIBS"
added_xext=yes
AC_DEFINE(XINERAMA)], xinerama=no, $XLFLAGS $XLIBS)
fi
dnl MIT-SHM support
dnl ===============
shm=yes