summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2008-05-31 12:48:57 +0000
committerdscho <dscho>2008-05-31 12:48:57 +0000
commitc5233839719d98e6de481fd8780bf191b638d3ee (patch)
tree521d69a5c19b406077af742121bc45e63e2274ce
parent1749faf2976eb3693fdbaabffad3fbc1d0896239 (diff)
downloadlibtdevnc-c5233839.tar.gz
libtdevnc-c5233839.zip
VisualNaCro: fix configure.ac
There was a misunderstanding as to the workings of AC_CHECK_PROG(). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-rw-r--r--VisualNaCro/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/VisualNaCro/configure.ac b/VisualNaCro/configure.ac
index d1f4bb6..1f78317 100644
--- a/VisualNaCro/configure.ac
+++ b/VisualNaCro/configure.ac
@@ -8,7 +8,7 @@ AC_CANONICAL_HOST
AM_INIT_AUTOMAKE
dnl Checks for programs.
-AC_CHECK_PROG(SWIG,swig)
+AC_CHECK_PROG(SWIG,swig,swig)
AC_CHECK_PROG(LIBVNCSERVERCONFIG,libvncserver-config,yes,no)
if test "$LIBVNCSERVERCONFIG" != "yes"; then
AC_MSG_ERROR([Need to have libvncserver-config in PATH])