From ad869e1460b9db56de0ac506c0eb569b6a0c8d72 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Tue, 17 Jul 2007 00:57:29 +0000 Subject: [PATCH] remove autotools stuff that obviously arent happening in 0.5.x trunk --- configure.ac | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 configure.ac diff --git a/configure.ac b/configure.ac deleted file mode 100644 index e9ec08cda..000000000 --- a/configure.ac +++ /dev/null @@ -1,29 +0,0 @@ -AC_INIT([deluge], [0.5.2], [zach@collegegeek.org]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign]) - -m4_define(required_pygtk_version, 2.8.0) -m4_define(required_python_abi, 2.4) - -AM_PATH_PYTHON_VERSION(2.4, 2.4.0, 2.5, 2.5.0) - -dnl Check for correctly installed pygtk -AC_MSG_CHECKING(for pygtk required_pygtk_version installed for python required_python_abi) -prog=" -import pygtk; pygtk.require('2.0') -import gtk -assert gtk.pygtk_version >= tuple(map(int, 'required_pygtk_version'.split('.'))) -" -if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC; then - AC_MSG_RESULT(found) -else - AC_MSG_RESULT(not found) - AC_MSG_ERROR(required pygtk version not found) -fi - -AC_PROG_CC -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([ - Makefile - src/Makefile -]) -AC_OUTPUT