diff options
author | siretart <siretart@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-09-04 16:47:39 +0000 |
---|---|---|
committer | siretart <siretart@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-09-04 16:47:39 +0000 |
commit | 4dce1a366200cf3b1217d875c707d83cc4808e6f (patch) | |
tree | 7375e17e1bd40105505707364d046dbf371ca8d0 /configure | |
parent | b35e5d8bcfa6f0e8311f35aef78df2301f104e5f (diff) | |
download | lcd4linux-4dce1a366200cf3b1217d875c707d83cc4808e6f.tar.gz |
[lcd4linux @ 2006-09-04 16:47:39 by siretart]
These changes were necessary to make lcd4linux build on current debian etch/unstable
systems. I cannot really imagine how this was supposed to work, so I replaced
the old modified python.m4 with an uptodate version of ac_python_devel.m4 from
autoconf_archive. both .m4 files seem to have a common anchestor, but ac_python_devel.m4
has clearly seen a lot of more love, so let's better stay with upstream
(autoconf archive), so we can blame them if anything breaks.
Moreover, this actually works
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@705 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index ca233da..6cdb068 100644 --- a/configure.in +++ b/configure.in @@ -46,6 +46,7 @@ sinclude(curses.m4) AC_CHECK_CURSES # Checks for X11 +AC_PATH_X AC_PATH_XTRA # double-check for X11 if test "$no_x" != "yes"; then @@ -77,8 +78,8 @@ AC_ARG_WITH(python, [ --with-python enable python support [[default=no]]], [AC_MSG_RESULT($withval)], [AC_MSG_RESULT(no)]) if test "$with_python" = "yes"; then - sinclude(python.m4) - PYTHON__DEVEL + sinclude(ac_python_devel.m4) + AC_PYTHON_DEVEL fi # drivers |