Subversion Repositories pike

Compare Revisions

Ignore whitespace Rev 98 → Rev 99

/trunk/debian/patches/00list
2,6 → 2,7
02_smartlink_rpath
#04_make_variables_fpic
#05_install.pike
no_dump_modules
07_dynamic_module_makefile.in-libgcc
10_misplaced_MAXPATHLEN
11_pthread_stub
/trunk/debian/patches/no_dump_modules.dpatch
0,0 → 1,17
#! /bin/sh /usr/share/dpatch/dpatch-run
## no_dump_modules.dpatch
##
## DP: Make install.pike not dump modules; we do that in postinst
 
@DPATCH@
diff -urNad trunk~/bin/install.pike trunk/bin/install.pike
--- trunk~/bin/install.pike 2008-08-19 13:51:08.000000000 +0200
+++ trunk/bin/install.pike 2010-07-28 16:12:19.000000000 +0200
@@ -2942,7 +2942,6 @@
{
do_export();
}else{
- dump_modules();
// Delete any .pmod files that would shadow the .so
// files that we just installed. For a new installation
/trunk/debian/changelog
16,8 → 16,10
reflect the fact that it provides GTK+ 2.0 bindings.
* Disable --with-relocatable-dumped-modules; it doesn't seem that we
need it and it doesn't seem to work 100% properly.
* no_dump_modules.dpatch (new): Patch install.pike not to dump modules
at build time (thus no need to exclude master.pike.o in debian/rules).
 
-- Magnus Holmgren <holmgren@debian.org> Wed, 28 Jul 2010 15:37:23 +0200
-- Magnus Holmgren <holmgren@debian.org> Wed, 28 Jul 2010 16:15:17 +0200
 
pike7.8 (7.8.352-dfsg-1) experimental; urgency=low
 
/trunk/debian/rules
136,7 → 136,7
excluded_modules:=Ssleay Mird Msql msql PDF Ffmpeg Oracle oracle sybase DVB Java TTF PV.pike Gnome GDK GTKSupport
# This is tricky. Note that it's only possible for an exclusion to match the last
# component specified in an .install file or on the command line, and below.
DH_EXCLUDE:=$(addprefix -X,$(excluded_modules) master.pike.o)
DH_EXCLUDE:=$(addprefix -X,$(excluded_modules))
DH_ALREADY=`for p in $(MODULE_PACKAGES); do \
find debian/$$p/usr/lib/pike?.?/* -type f -printf "-X%P "; done`