Subversion Repositories pike-old

Compare Revisions

Ignore whitespace Rev 26 → Rev 27

/branches/7.6/debian/changelog
3,6 → 3,8
* The latest downloadable "beta" release of the 7.6 branch.
* Modify debian/watch to track the beta download directory.
* Update debian/copyright.
* debian/rules: Handle DEB_*_GNU_TYPE and modify quoting of strings
inside the long string of configure arguments.
 
-- Magnus Holmgren <holmgren@debian.org> Fri, 16 May 2008 20:09:19 +0200
 
/branches/7.6/debian/rules
23,6 → 23,9
DEB_BUILD_ARCH=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
endif
 
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
CFLAGS_EXTRA = -g
CPPFLAGS_EXTRA = -DDEBIAN
 
86,8 → 89,10
endif
 
CFARGS=$(CFARGSEXTRA) \
--with-cflags=\\'$(CFLAGS_EXTRA)\\' \
--with-cppflags=\\'$(CPPFLAGS_EXTRA)\\' \
--host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
--with-cflags='$(CFLAGS_EXTRA)' \
--with-cppflags='$(CPPFLAGS_EXTRA)' \
--with-bignums \
--with-gmp \
--with-poll \