diff -Nru libsdl2-ttf-2.0.12+dfsg1/debian/changelog libsdl2-ttf-2.0.12+dfsg1/debian/changelog --- libsdl2-ttf-2.0.12+dfsg1/debian/changelog 2013-08-13 20:53:39.000000000 +0000 +++ libsdl2-ttf-2.0.12+dfsg1/debian/changelog 2013-10-29 18:18:53.000000000 +0000 @@ -1,3 +1,12 @@ +libsdl2-ttf (2.0.12+dfsg1-2) unstable; urgency=low + + * Build-Depends on pkg-config + * Do not call dh_autoreconf with ./autogen.sh as parameter, to force + using new config.{sub,guess} files, which important when having new + architectures (Closes: #727437) + + -- Manuel A. Fernandez Montecelo Tue, 29 Oct 2013 18:18:49 +0000 + libsdl2-ttf (2.0.12+dfsg1-1) unstable; urgency=low * Initial release. (Closes: #719643) diff -Nru libsdl2-ttf-2.0.12+dfsg1/debian/control libsdl2-ttf-2.0.12+dfsg1/debian/control --- libsdl2-ttf-2.0.12+dfsg1/debian/control 2013-08-13 22:50:57.000000000 +0000 +++ libsdl2-ttf-2.0.12+dfsg1/debian/control 2013-10-18 21:05:03.000000000 +0000 @@ -7,7 +7,8 @@ Build-Depends: debhelper (>= 9~), dh-autoreconf, libfreetype6-dev, - libsdl2-dev (>= 2.0.0) + libsdl2-dev (>= 2.0.0), + pkg-config Homepage: http://www.libsdl.org/projects/SDL_ttf/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-sdl/packages/libsdl2-ttf.git Vcs-Git: git://anonscm.debian.org/pkg-sdl/packages/libsdl2-ttf.git diff -Nru libsdl2-ttf-2.0.12+dfsg1/debian/rules libsdl2-ttf-2.0.12+dfsg1/debian/rules --- libsdl2-ttf-2.0.12+dfsg1/debian/rules 2013-08-13 23:20:20.000000000 +0000 +++ libsdl2-ttf-2.0.12+dfsg1/debian/rules 2013-10-29 18:13:38.000000000 +0000 @@ -3,20 +3,22 @@ #export DH_VERBOSE=1 -export DEB_CFLAGS_MAINT_APPEND = -pipe -Wall -export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed +export DEB_CFLAGS_MAINT_APPEND := -pipe -Wall +export DEB_LDFLAGS_MAINT_APPEND := -Wl,--as-needed DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) -SHLIBVER = 2.0.0 +SHLIBVER := 2.0.0 %: dh $@ --with autoreconf --parallel override_dh_autoreconf: - AUTOMAKE="automake --foreign" dh_autoreconf --as-needed ./autogen.sh + # do not call with ./autogen.sh as parameter, to force new + # config.{sub,guess} + AUTOMAKE="automake --foreign" dh_autoreconf --as-needed override_dh_auto_configure: dh_auto_configure -- $(confflags)