Commit d2d862e6 authored by Lasse Karstensen's avatar Lasse Karstensen

Merge pull request #31 from nigoroll/master

use the python we found in case it's not called "python"
parents 1007e84d 19a9785d
......@@ -24,7 +24,11 @@ Makefile.in
/ltmain.sh
/missing
/stamp-h1
/m4/
/m4/libtool.m4
/m4/ltoptions.m4
/m4/ltsugar.m4
/m4/ltversion.m4
/m4/lt~obsolete.m4
/src/vcc_if.c
/src/vcc_if.h
......
......@@ -19,6 +19,12 @@ if test "x$ac_cv_prog_cc_c99" = xno; then
fi
AC_PROG_CPP
AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
LIBS="$PTHREAD_LIBS $LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
CC="$PTHREAD_CC"
LT_INIT([disable-static])
AC_PROG_INSTALL
AC_PROG_LIBTOOL
......
This diff is collapsed.
......@@ -21,7 +21,7 @@ vmod_example.3: vmod_example.man.rst
vmod_example.lo vmod_example.man.rst: vcc
vcc: @VMODTOOL@ $(top_srcdir)/src/vmod_example.vcc
@VMODTOOL@ $(top_srcdir)/src/vmod_example.vcc
@PYTHON@ @VMODTOOL@ $(top_srcdir)/src/vmod_example.vcc
VMOD_TESTS = $(top_srcdir)/src/tests/*.vtc
.PHONY: $(VMOD_TESTS) vcc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment