Subversion Repositories pike

Compare Revisions

Ignore whitespace Rev 94 → Rev 93

/trunk/debian/changelog
8,11 → 8,8
* Drop apparently obsolete build-dep libgtkhtml2-dev.
* Don't run update-alternatives --remove on upgrade.
* Exclude Tools.PV, which requires GTK (not GTK2).
* debian/rules, unbreak_cross_compilation.dpatch: Use the right gcc
and pass --host=$(DEB_HOST_GNU_TYPE) to configure as necessary.
Fix various bugs preventing cross compilation. Thanks to Marc Dirix.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 06 Jun 2010 20:00:18 +0200
-- Magnus Holmgren <holmgren@debian.org> Sun, 06 Jun 2010 00:27:53 +0200
 
pike7.8 (7.8.352-dfsg-1) experimental; urgency=low
 
/trunk/debian/rules
20,16 → 20,6
CC=gcc
endif
 
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
CFARGSEXTRA = --with-cdebug
 
ifneq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
export CC=$(DEB_HOST_GNU_TYPE)-gcc
CFARGSEXTRA += --host=$(DEB_HOST_GNU_TYPE)
endif
 
ifeq (,$(DEB_BUILD_ARCH))
DEB_BUILD_ARCH=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
endif
41,6 → 31,8
SSP_FLAGS=-fstack-protector
endif
 
CFARGSEXTRA = --with-cdebug
 
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFARGSEXTRA += --without-copt
else
/trunk/debian/pike7.8-core.postinst
31,6 → 31,7
LOCAL_DIRS="lib/pike${PIKE}/modules lib/pike${PIKE}/include"
 
update_modules () {
$PIKEBIN -x dump $@ --distquiet -r /usr/lib/$PIKEBIN/modules
find /usr/lib/$PIKEBIN/modules -name '*.o' | sed 's/.o$//' |
while read f; do
if [ ! -f $f ]; then
37,7 → 38,6
rm -f $f.o
fi
done
$PIKEBIN -x dump $@ --distquiet -r /usr/lib/$PIKEBIN/modules
}
 
case "$1" in
/trunk/debian/patches/unbreak_cross_compilation.dpatch
File deleted
/trunk/debian/patches/00list
5,4 → 5,3
07_dynamic_module_makefile.in-libgcc
10_misplaced_MAXPATHLEN
11_pthread_stub
unbreak_cross_compilation