tags 348498 patch
thanks
Hi,
Running the am_edit script on Makefile.in under src fixes it. The
attached patch changes the top-level Makefile.in to run it for every
Makefile.in.
kitty also FTBFS due to an error in kitty_articleedit.cpp:117, the
setSizePolicy() function declaration seems to have changed. The second
attached patch fixes that.
I will do an NMU (as part of my NM process) with these patches very soon
unless you respond to this bug.
Regards,
--
Mattias Nordstrom
--- kitty-0.9.2/Makefile.in 2006-04-03 20:40:49.000000000 +0300
+++ kitty-0.9.2.new/Makefile.in 2006-04-03 20:41:35.000000000 +0300
@@ -343,7 +343,7 @@
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu Makefile
- cd $(top_srcdir) && perl admin/am_edit Makefile.in
+ cd $(top_srcdir) && perl admin/am_edit
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
--- kitty-0.9.2/src/kitty_articleedit.cpp 2005-10-24 22:28:39.000000000
+0300
+++ kitty-0.9.2.new/src/kitty_articleedit.cpp 2006-04-03 18:37:28.000000000
+0300
@@ -114,7 +114,7 @@
videolabel->setMinimumHeight(150);
videolabel->setMinimumWidth(200);
videolabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
- videolabel->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Fixed);
+ videolabel->setSizePolicy(QSizePolicy(QSizePolicy::Minimum,
QSizePolicy::Fixed));
videolabel->setBackgroundColor(Qt::darkGray);
if (myfeed.items[myarticle].dlstatus=="downloaded") {
videourl=locateLocal("appdata",
myfeed.key+"-data/"+myfeed.items[myarticle].key);