Dies ist eine mehrteilige Nachricht im MIME-Format. --------------31B6B5FF898A818C83C28520 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Waldo Bastian wrote: > > kdepim/libical works fine. Dunno why you can't open icalparameter.c.in, it's > in cvs. Seems to srcdir!=builddir problem. The attached patch fixes it for me. Could you please have a look and apply it? Thanks. > > kdetoys/kworldwatch is only broken for HEAD. The version in the > KDE_2_1_BRANCH works fine with --enable-final. I just fixed it for HEAD. > > I can't reproduce your problem of mpeglib in either 2.1 or HEAD. > (with SuSE 7.0) Same for kpackage. > For the mpeglib thing you need to have cdparanoia installed, do you? And I had the same problem with the version from SuSE 7.0 just a few days ago. Just checked out these modules with -r KDE_2_1_RELEASE and currently recompiling. Perhaps my checkout was not 2.1 enough. Greets Michael -- As the New Gnu knew very soon at the Zoo Guinness is good for you --------------31B6B5FF898A818C83C28520 Content-Type: text/plain; charset=us-ascii; name="libical.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="libical.diff" Index: Makefile.am =================================================================== RCS file: /home/kde/kdepim/libical/src/libical/Makefile.am,v retrieving revision 1.4 diff -b -u -p -r1.4 Makefile.am --- Makefile.am 2001/01/14 21:27:00 1.4 +++ Makefile.am 2001/02/26 12:06:43 @@ -103,11 +103,11 @@ PARAMETERDEPS = \ icalparameter.h.in icalparameter.h: $(PARAMETERDEPS) - $(PERL) $(ICALSCRIPTS)/mkderivedparameters.pl -i icalparameter.h.in -h $(DESIGNDATA)/param-c-types.txt > icalparameter.newh \ + $(PERL) $(ICALSCRIPTS)/mkderivedparameters.pl -i $(srcdir)/icalparameter.h.in -h $(DESIGNDATA)/param-c-types.txt > icalparameter.newh \ && mv icalparameter.newh icalparameter.h icalparameter.c: $(PARAMETERDEPS) icalparameter.h - $(PERL) $(ICALSCRIPTS)/mkderivedparameters.pl -i icalparameter.c.in -c $(DESIGNDATA)/param-c-types.txt > icalparameter.newc \ + $(PERL) $(ICALSCRIPTS)/mkderivedparameters.pl -i $(srcdir)/icalparameter.c.in -c $(DESIGNDATA)/param-c-types.txt > icalparameter.newc \ && mv icalparameter.newc icalparameter.c # properties @@ -121,12 +121,12 @@ PROPERTYDEPS = \ icalproperty.h: $(PROPERTYDEPS) - $(PERL) $(ICALSCRIPTS)/mkderivedproperties.pl -i icalproperty.h.in -h \ + $(PERL) $(ICALSCRIPTS)/mkderivedproperties.pl -i $(srcdir)/icalproperty.h.in -h \ $(DESIGNDATA)/prop-to-value.txt \ ${DESIGNDATA}/value-c-types.txt > icalproperty.h icalproperty.c: $(PROPERTYDEPS) icalproperty.h - $(PERL) $(ICALSCRIPTS)/mkderivedproperties.pl -i icalproperty.c.in -c \ + $(PERL) $(ICALSCRIPTS)/mkderivedproperties.pl -i $(srcdir)/icalproperty.c.in -c \ $(DESIGNDATA)/prop-to-value.txt \ ${DESIGNDATA}/value-c-types.txt > icalproperty.c @@ -138,7 +138,7 @@ RESTRICTIONDEPS = \ icalrestriction.c.in icalrestriction.c: $(RESTRICTIONDEPS) - $(PERL) $(ICALSCRIPTS)/mkrestrictiontable.pl -i icalrestriction.c.in \ + $(PERL) $(ICALSCRIPTS)/mkrestrictiontable.pl -i $(srcdir)/icalrestriction.c.in \ $(DESIGNDATA)/restrictions.csv > icalrestriction.c # values @@ -150,11 +150,11 @@ VALUEDEPS = \ icalvalue.h.in icalvalue.h: $(VALUEDEPS) - $(PERL) $(ICALSCRIPTS)/mkderivedvalues.pl -i icalvalue.h.in -h \ + $(PERL) $(ICALSCRIPTS)/mkderivedvalues.pl -i $(srcdir)/icalvalue.h.in -h \ $(DESIGNDATA)/value-c-types.txt > icalvalue.h icalvalue.c: $(VALUEDEPS) icalvalue.h - $(PERL) $(ICALSCRIPTS)/mkderivedvalues.pl -i icalvalue.c.in -c \ + $(PERL) $(ICALSCRIPTS)/mkderivedvalues.pl -i $(srcdir)/icalvalue.c.in -c \ $(DESIGNDATA)/value-c-types.txt > icalvalue.c --------------31B6B5FF898A818C83C28520--