Subversion Repositories pike

Compare Revisions

Ignore whitespace Rev 69 → Rev 70

/branches/7.6-stable/debian/control
3,7 → 3,7
Priority: optional
Maintainer: Magnus Holmgren <holmgren@debian.org>
Uploaders: Henrik Andreasson <debian@han.pp.se>
Standards-Version: 3.7.3
Standards-Version: 3.8.3
Build-Depends: debhelper (>= 5), dpatch, bison, sharutils, bc,
libgmp3-dev, nettle-dev, libfftw3-dev,
zlib1g-dev | libz-dev, libbz2-dev, libreadline5-dev,
/branches/7.6-stable/debian/changelog
15,8 → 15,9
directly anyway.
* Point Vcs-Svn and Vcs-Browser at svn.debian.org.
* Add debian/README.source.
* Use $(filter) instead of $(findstring) to parse DEB_BUILD_OPTIONS.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 23 Aug 2009 18:42:50 +0200
-- Magnus Holmgren <holmgren@debian.org> Sun, 23 Aug 2009 19:00:52 +0200
 
pike7.6 (7.6.112-4) unstable; urgency=low
 
/branches/7.6-stable/debian/rules
32,13 → 32,13
 
CFARGSEXTRA = --with-cdebug
 
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFARGSEXTRA += --without-copt
else
CFARGSEXTRA += --with-copt
endif
 
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
CFARGSEXTRA += --with-rtldebug
else
CFARGSEXTRA += --without-rtldebug
50,7 → 50,7
CFLAGS_EXTRA += -ffunction-sections
endif
 
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif