diff options
author | Brian P. Hinz <bphinz@users.sf.net> | 2014-10-22 22:36:25 -0400 |
---|---|---|
committer | Brian P. Hinz <bphinz@users.sf.net> | 2014-10-22 22:36:25 -0400 |
commit | 5e3467b8cd7e6a17d9656ab5273e56f895a78d32 (patch) | |
tree | f9efec456bbfb78605663b69355ef06a3525febf /contrib/packages/deb | |
parent | 7f8f3ea2c4349bd78f2c2279c4d04a9505fddf64 (diff) | |
download | tigervnc-5e3467b8cd7e6a17d9656ab5273e56f895a78d32.tar.gz tigervnc-5e3467b8cd7e6a17d9656ab5273e56f895a78d32.zip |
Set -DBUILD_STATIC=off for package builds.
Commit f95272d set the BUILD_STATIC flag on by default, which is unnecessary for package builds.
Diffstat (limited to 'contrib/packages/deb')
-rwxr-xr-x | contrib/packages/deb/ubuntu-precise/debian/rules | 1 | ||||
-rwxr-xr-x | contrib/packages/deb/ubuntu-trusty/debian/rules | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/contrib/packages/deb/ubuntu-precise/debian/rules b/contrib/packages/deb/ubuntu-precise/debian/rules index b338f725..29f5632f 100755 --- a/contrib/packages/deb/ubuntu-precise/debian/rules +++ b/contrib/packages/deb/ubuntu-precise/debian/rules @@ -51,6 +51,7 @@ config-stamp: -DOPTION_BUILD_EXAMPLES=off \ -DOPTION_USE_SYSTEM_LIBPNG=on;make) cmake -G"Unix Makefiles" \ + -DBUILD_STATIC=off \ -DCMAKE_INSTALL_PREFIX=/usr \ -DFLTK_LIBRARIES="$(CURDIR)/fltk-1.3.2/lib/libfltk.a;$(CURDIR)/fltk-1.3.2/lib/libfltk_images.a;-lpng" \ -DFLTK_INCLUDE_DIR=$(CURDIR)/fltk-1.3.2 diff --git a/contrib/packages/deb/ubuntu-trusty/debian/rules b/contrib/packages/deb/ubuntu-trusty/debian/rules index f9f731b1..515cf2fa 100755 --- a/contrib/packages/deb/ubuntu-trusty/debian/rules +++ b/contrib/packages/deb/ubuntu-trusty/debian/rules @@ -58,6 +58,7 @@ config-stamp: ./configure --enable-shared=no --enable-cairo --enable-cp936 \ --with-optim="$(CFLAGS) $(XCFLAGS)" --libdir=$(libdir);make) cmake -G"Unix Makefiles" \ + -DBUILD_STATIC=off \ -DCMAKE_INSTALL_PREFIX=/usr \ -DFLTK_LIBRARIES="$(CURDIR)/fltk-1.3.2/lib/libfltk.a;$(CURDIR)/fltk-1.3.2/lib/libfltk_images.a;-lpng" \ -DFLTK_INCLUDE_DIR=$(CURDIR)/fltk-1.3.2 |