diff -Nru phyml-20120412/debian/changelog phyml-20120412/debian/changelog --- phyml-20120412/debian/changelog 2013-07-31 12:03:43.000000000 +0000 +++ phyml-20120412/debian/changelog 2013-08-05 01:11:49.000000000 +0000 @@ -1,3 +1,11 @@ +phyml (2:20120412-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix "FTBFS on !x86" disabling sse on !x86. + (Closes: #718747) + + -- Hector Oron Mon, 05 Aug 2013 01:06:19 +0000 + phyml (2:20120412-1) unstable; urgency=low [ Charles Plessy ] diff -Nru phyml-20120412/debian/patches/718747.patch phyml-20120412/debian/patches/718747.patch --- phyml-20120412/debian/patches/718747.patch 1970-01-01 00:00:00.000000000 +0000 +++ phyml-20120412/debian/patches/718747.patch 2013-08-05 01:14:17.000000000 +0000 @@ -0,0 +1,32 @@ + phyml (2:20120412-1.1) unstable; urgency=low + . + * Non-maintainer upload. + * Fix "FTBFS on !x86" disabling sse on !x86. + (Closes: #718747) +Author: Hector Oron +Bug-Debian: http://bugs.debian.org/718747 + +--- phyml-20120412.orig/configure ++++ phyml-20120412/configure +@@ -4775,7 +4775,7 @@ fi + if test "x$enable_debug" = "xyes"; then : + CFLAGS="-ansi -pedantic -Wall -std=c99 -O0 -g" + else +- CFLAGS="-Wall -O2 -msse -fomit-frame-pointer -funroll-loops ${ARCH_flag}" ++ CFLAGS="-Wall -O2 -fomit-frame-pointer -funroll-loops ${ARCH_flag}" + fi + + +--- phyml-20120412.orig/configure.ac ++++ phyml-20120412/configure.ac +@@ -65,8 +65,8 @@ AC_ARG_ENABLE([debug], + [Remove optimization options and add debug informations.])]) + AS_IF([test "x$enable_debug" = "xyes"], + [CFLAGS="-ansi -pedantic -Wall -std=c99 -O0 -g"], +- dnl [CFLAGS="-ansi -pedantic -Wall -std=c99 -O2 -msse -fomit-frame-pointer -funroll-loops ${ARCH_flag}"]) +- [CFLAGS="-Wall -O2 -msse -fomit-frame-pointer -funroll-loops ${ARCH_flag}"]) ++ dnl [CFLAGS="-ansi -pedantic -Wall -std=c99 -O2 -fomit-frame-pointer -funroll-loops ${ARCH_flag}"]) ++ [CFLAGS="-Wall -O2 -fomit-frame-pointer -funroll-loops ${ARCH_flag}"]) + + + AC_ARG_ENABLE([mpi], diff -Nru phyml-20120412/debian/patches/series phyml-20120412/debian/patches/series --- phyml-20120412/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ phyml-20120412/debian/patches/series 2013-08-05 01:14:00.000000000 +0000 @@ -0,0 +1 @@ +718747.patch