#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

override_dh_auto_configure:
ifneq ($(filter $(DEB_HOST_ARCH), amd64 i386 kfreebsd-amd64 kfreebsd-i386 x32),)
	dh_auto_configure -- --enable-jit
else
	dh_auto_configure -- --disable-jit
endif

%:
	dh $@
