diff --git a/debian/changelog b/debian/changelog index 3754099..84f9153 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,24 @@ freerdp2 (2.0.0~git20170725.1.1648deb+dfsg1-2~bpo9+1) stretch-backports; urgency -- Matteo F. Vescovi Thu, 12 Oct 2017 21:04:11 +0200 +freerdp2 (2.0.0~git20170725.1.1648deb+dfsg1-4) unstable; urgency=medium + + * debian/control: + + Fix typo in newly added dependency for freerdp2-dev. + * debian/rules: + + Improve fix for build support on armel. Thanks to Adrian Bunk. (Closes: + #874164). + + -- Mike Gabriel Mon, 09 Oct 2017 15:55:42 +0200 + +freerdp2 (2.0.0~git20170725.1.1648deb+dfsg1-3) unstable; urgency=medium + + * debian/control: + + Add D (freerdp-dev): libfreerdp-shadow-subsystem2-2 (same binary version}. + (Closes: #877456). + + -- Mike Gabriel Mon, 09 Oct 2017 11:15:16 +0200 + freerdp2 (2.0.0~git20170725.1.1648deb+dfsg1-2) unstable; urgency=medium * debian/changelog: diff --git a/debian/control b/debian/control index 709083a..72b7723 100644 --- a/debian/control +++ b/debian/control @@ -184,6 +184,7 @@ Depends: libfreerdp-server2-2 (= ${binary:Version}), libfreerdp-client2-2 (= ${binary:Version}), libfreerdp-shadow2-2 (= ${binary:Version}), + libfreerdp-shadow-subsystem2-2 (= ${binary:Version}), winpr-utils (= ${binary:Version}), Description: Free Remote Desktop Protocol library (development files) FreeRDP is a libre client/server implementation of the Remote diff --git a/debian/rules b/debian/rules index 3aa71da..bd40883 100755 --- a/debian/rules +++ b/debian/rules @@ -7,15 +7,10 @@ CFLAGS+=$(CPPFLAGS) CXXFLAGS+=$(CPPFLAGS) DEB_HOST_ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH) -ifneq (,$(filter armhf,$(DEB_HOST_ARCH))) -ARM_FLOAT_ABI = -DARM_FP_ABI=hard -else -ARM_FLOAT_ABI = -endif ifneq (,$(filter armel,$(DEB_HOST_ARCH))) -ARM_FLOAT_ABI = -DARM_FP_ABI=hard -DWITH_NEON=off +WITH_NEON = -DWITH_NEON=OFF else -ARM_FLOAT_ABI = +WITH_NEON = endif NULL = @@ -49,7 +44,7 @@ DEB_CMAKE_EXTRA_FLAGS := -DCMAKE_INSTALL_INCLUDEDIR=include/$(shell dpkg-archit -DCMAKE_BUILD_TYPE=RELWITHDEBINFO \ -DWITH_WAYLAND=ON \ -DWITH_CLIENT_INTERFACE=OFF \ - $(ARM_FLOAT_ABI) \ + $(WITH_NEON) \ $(NULL) %: dh $@ --parallel