all repos — tint2 @ b6ca6149e54ece36c7d7561ec0db6178863b5895

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

Add AC_PREREQ for at least autoconf-2.61 (should be a good choice..).
Be more verbose when running autogen.sh.
Add realloc and alarm check to configure.ac.

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

b6ca6149e54ece36c7d7561ec0db6178863b5895

parent

c3b63e8c45c8f9deac20de5fc8828159e5060784

2 files changed, 4 insertions(+), 2 deletions(-)

jump to
M autogen.shautogen.sh

@@ -2,4 +2,4 @@ #!/bin/sh

[ ! -d m4 ] && mkdir m4 -autoreconf -i -s -f +autoreconf -i -s -f -v
M configure.acconfigure.ac

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

# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. +AC_PREREQ([2.61]) AC_INIT([tint2], [0.7.9-svn], [http://code.google.com/p/tint2/issues]) AM_INIT_AUTOMAKE

@@ -97,7 +98,8 @@

# Checks for library functions. AC_FUNC_FORK AC_FUNC_MALLOC -AC_CHECK_FUNCS([gettimeofday memset select setlocale strcasecmp strchr strdup]) +AC_FUNC_REALLOC +AC_CHECK_FUNCS([alarm gettimeofday memset select setlocale strcasecmp strchr strdup]) # tint2conf (experimental) if test "x$tint2conf" = xtrue;