*** empty log message ***

(Old svn revision: 530)
This commit is contained in:
Johannes Zellner
2005-01-31 08:43:35 +00:00
parent c85ed7d484
commit 430cef9e8c
2 changed files with 31 additions and 4079 deletions

4079
configure vendored

File diff suppressed because it is too large Load Diff

31
configure.in Normal file
View File

@@ -0,0 +1,31 @@
dnl --------------------------------
dnl Initialization macros.
dnl --------------------------------
AC_INIT(src/main.c)
dnl -----------------------------------------------
dnl Package name and version number (user defined)
dnl -----------------------------------------------
AM_INIT_AUTOMAKE(xfce4-taskmanager, 0.1.0)
dnl -----------------------------------------------
dnl Checks for programs.
dnl -----------------------------------------------
AC_PROG_CC
dnl -----------------------------------------------
dnl Checks for libraries.
dnl -----------------------------------------------
PKG_CHECK_MODULES(DEPS, gtk+-2.0 >= 2.4 glib-2.0 >= 2.4 libxfcegui4-1.0 >= 4.1)
AC_SUBST(DEPS_CFLAGS)
AC_SUBST(DEPS_LIBS)
dnl -----------------------------------------------
dnl Generates Makefiles.
dnl -----------------------------------------------
AC_OUTPUT(Makefile src/Makefile)