all repos — tint2 @ ac61a62958678f106ebe1ab3fb6acdc8d6a33a88

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

Update tint2conf part.


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

ac61a62958678f106ebe1ab3fb6acdc8d6a33a88

parent

b3be753bd4a7f1b9e99b302b78c3d3cea67c3555

2 files changed, 11 insertions(+), 0 deletions(-)

jump to
M configure.acconfigure.ac

@@ -109,6 +109,7 @@ # gtk/glib is a bit horrible because we have to add -I directives for various features (like cairo, pango etc.)

# even if we don't need them. # Sorry if that might be confusing %-) + AC_CHECK_FUNCS([strndup strrchr strstr]) # Save LIBS value and clear the variable, AC_CHECK_LIB will append all libs to LIBS on success. LIBS_SAVED=$LIBS LIBS=

@@ -130,6 +131,15 @@

TINT2CONF_CFLAGS="$(${PKG_CONFIG} --cflags gtk+-x11-2.0 glib-2.0 gobject-2.0 gthread-2.0)" AC_SUBST(TINT2CONF_CFLAGS) AC_SUBST(TINT2CONF_LIBS) + + # Python stuff + AC_PATH_PROG([__PYTHON], [python]) + if test -z "${__PYTHON}"; + then + AC_MSG_ERROR([tint2conf requires python to be installed]) + fi + + PKG_CHECK_EXISTS([pygtk-2.0],,[AC_MSG_ERROR([tint2conf requires >=pygtk-2.0])]) fi #
M src/tint2conf/Makefile.amsrc/tint2conf/Makefile.am

@@ -1,5 +1,6 @@

if ENABLE_TINT2CONF bin_PROGRAMS = tint2conf +dist_bin_SCRIPTS = tintwizard.py tint2conf_SOURCES = main.c ../util/common.c INCLUDES = -I../util