Subversion Repositories ssvnc

Compare Revisions

Ignore whitespace Rev 31 → Rev 32

/ssvnc/trunk/debian/changelog
10,8 → 10,12
* nostrip.patch: Remove strip command from the Makefile, allowing
DEB_BUILD_OPTONS=nostrip to work.
* Get CFLAGS and LDFLAGS from dpkg-buildflags.
* buildflags.patch: Pass CFLAGS and LDFLAGS through via ./Makefile as
CDEBUGFLAGS and LOCAL_LDFLAGS to vnc_unixsrc/*/Makefile. This results
in -fno-strict-aliasing (added by xmkmf by default) being dropped, but
that doesn't seem to cause any problems.
 
-- Magnus Holmgren <holmgren@debian.org> Thu, 10 Nov 2011 21:32:11 +0100
-- Magnus Holmgren <holmgren@debian.org> Thu, 10 Nov 2011 21:54:02 +0100
 
ssvnc (1.0.28-1) unstable; urgency=low
 
/ssvnc/trunk/debian/patches/series
1,3 → 1,4
confusing_-h.patch
ultraftp_path.patch
buildflags.patch
nostrip.patch
/ssvnc/trunk/debian/patches/buildflags.patch
0,0 → 1,13
--- a/Makefile
+++ b/Makefile
@@ -53,8 +53,8 @@ config:
@echo Now run: "'make all'"
all:
- cd $(VSRC)/libvncauth; $(MAKE)
- cd $(VSRC)/vncviewer; $(MAKE)
+ cd $(VSRC)/libvncauth; $(MAKE) CDEBUGFLAGS="$(CFLAGS)" LOCAL_LDFLAGS="$(LDFLAGS)"
+ cd $(VSRC)/vncviewer; $(MAKE) CDEBUGFLAGS="$(CFLAGS)" LOCAL_LDFLAGS="$(LDFLAGS)"
if [ "X$(JSRC)" != "X" ]; then cd $(JSRC); $(MAKE); fi
cd $(PSRC); $(MAKE)