all repos — tint2 @ deff762edfae1afa39611bd11e7e3bbe2e45eba9

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Ensure that Imlib2 has been built with X support.


git-svn-id: http://tint2.googlecode.com/svn/trunk@141 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
Spooky85@gmail.com Spooky85@gmail.com@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

deff762edfae1afa39611bd11e7e3bbe2e45eba9

parent

764618211319c8d3572d9b5ccb305c307443cd0a

2 files changed, 8 insertions(+), 1 deletions(-)

jump to
M README.sourceREADME.source

@@ -1,4 +1,4 @@

DEPENDENCIES: -cairo, pango, glib2, libX11, Xinerama, imlib2 +cairo (whit X support), pango, glib2, libX11, Xinerama, imlib2 (with X support) you might need -dev packages on debian
M configure.acconfigure.ac

@@ -10,6 +10,7 @@ AC_CONFIG_SRCDIR([src/tint.c])

AC_CONFIG_HEADERS([config.h]) # Checks for programs. +AC_LANG([C]) AC_PROG_CC # Checks for libraries.

@@ -44,6 +45,12 @@

PKG_CHECK_MODULES([IMLIB2], [imlib2]) AC_SUBST(IMLIB2_CFLAGS) AC_SUBST(IMLIB2_LIBS) + +# Ensure that Imlib2 has been built with X support and reset LIBS since AC_CHECK_LIB adds -lImlib2 on success. +LIBS_SAVED=$LIBS +AC_CHECK_LIB([Imlib2], [imlib_context_set_display], [], + AC_MSG_ERROR([Imlib2 must be built with X support])) +LIBS=$LIBS_SAVED # Checks for header files. AC_PATH_X