diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-05-18 02:17:25 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-05-18 02:17:25 +0100 |
commit | 5ecd214cddf18cc0542f4318f5ae85820e422237 (patch) | |
tree | 6b024388410eb7cc231056acd963c67ad97ef16c | |
parent | 9967f3de4643ff3d65decbe813a93fc6e482235e (diff) | |
download | xine-lib-5ecd214cddf18cc0542f4318f5ae85820e422237.tar.gz xine-lib-5ecd214cddf18cc0542f4318f5ae85820e422237.tar.bz2 |
Re-enable syncfb in .debs, but only when building for Linux.
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 92b42b66c..8247e8ff7 100755 --- a/debian/rules +++ b/debian/rules @@ -58,6 +58,11 @@ ifeq (,$(findstring optimize,$(DEB_BUILD_OPTIONS))) DEB_BUILD_CONFIG_OPTIONS += --build=$(DEB_BUILD_GNU_TYPE) endif +# enable SyncFB video output plugin on Linux +ifeq (linux,$(filter linux,$(subst -, ,$(DEB_BUILD_GNU_TYPE)))) + DEB_BUILD_CONFIG_OPTIONS += --enable-syncfb +endif + # --mandir - remove after etch released (autoconf >= 2.59c gets it right) CONFIGURE_FLAGS := --prefix=/usr \ --mandir=\$${prefix}/share/man \ |