#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@ --with autoreconf

# Note: --enable-sse2 does not work right now due to bugs in upstream
# configure.ac. Currently we hack around this via a patch to configure.ac
override_dh_auto_configure:
	dh_auto_configure -- \
	  --disable-hardware-specific-code \
	  --enable-sse2
