all repos — fluxbox @ 3c3f80fb867d0496a37160f0422a9914eb438a9c

custom fork of the fluxbox windowmanager

fixed xpm support
fluxgen fluxgen
commit

3c3f80fb867d0496a37160f0422a9914eb438a9c

parent

41c0ea543c68b54fd4eef78a773d8d8d179963fd

1 files changed, 19 insertions(+), 1 deletions(-)

jump to
M configure.inconfigure.in

@@ -263,7 +263,7 @@ fi

AM_CONDITIONAL(XFT, test x$XFT = xtrue) -AC_MSG_CHECKING([wheter to have Xrender (transparent) support]) +AC_MSG_CHECKING([whether to have Xrender (transparent) support]) AC_ARG_ENABLE( xrender, [ --enable-xrender Xrender (transparent) support [default=yes]],

@@ -279,6 +279,24 @@ AC_MSG_RESULT([yes])

AC_CHECK_LIB(Xrender, XRenderCreatePicture, AC_DEFINE(HAVE_XRENDER, 1, "Xrender support") LIBS="$LIBS -lXrender") +) + +AC_MSG_CHECKING([whether to have Xpm (pixmap themes) support]) +AC_ARG_ENABLE( + xpm, +[ --enable-xpm Xpm (pixmap themes) support [default=yes]], + if test x$enableval = "xyes"; then + AC_MSG_RESULT([yes]) + AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, + AC_DEFINE(HAVE_XPM, 1, "Xpm support") + LIBS="$LIBS -lXpm") + else + AC_MSG_RESULT([no]) + fi, + AC_MSG_RESULT([yes]) + AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, + AC_DEFINE(HAVE_XPM, 1, "Xpm support") + LIBS="$LIBS -lXpm") )