diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-05-08 07:05:04 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-05-08 07:05:04 +0800 |
commit | 61b423d6e739109f967ac94062a25b8e93db5ce8 (patch) | |
tree | e46aaebf174a094aa793979024676a0023b2b51c /graphics | |
parent | 70f3324ed5e2fb33af956b3b8e11cfe86f4aad36 (diff) | |
download | freebsd-ports-gnome-61b423d6e739109f967ac94062a25b8e93db5ce8.tar.gz freebsd-ports-gnome-61b423d6e739109f967ac94062a25b8e93db5ce8.tar.zst freebsd-ports-gnome-61b423d6e739109f967ac94062a25b8e93db5ce8.zip |
Fix configure on 4.x
PR: 96910
Notified by: pointyhat via kris
Submitted by: Dmitry Marakasov <amdmi3@mail.ru> (maintainer)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/kudu/files/patch-configure | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/kudu/files/patch-configure b/graphics/kudu/files/patch-configure new file mode 100644 index 000000000000..e98299470c75 --- /dev/null +++ b/graphics/kudu/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.orig Fri Dec 23 12:57:26 2005 ++++ configure Sun May 7 16:03:41 2006 +@@ -3043,7 +3043,7 @@ + #define HAVE_PYTHON_H 1 + _ACEOF + +- let have_python+=1 ++ have_python=$(($have_python+1)) + fi + + # Check for Python library path +@@ -3063,7 +3063,7 @@ + #AC_MSG_ERROR([cannot find Python library path]) + have_python=0 + else +- let have_python+=1 ++ have_python=$(($have_python+1)) + + cat >>confdefs.h <<\_ACEOF + #define HAVE_LIBPYTHON 1 |