The PKGBUILD : # # KDEmod : a modular kde package set for arch linux # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published # by the Free Software Foundation; either version 2 of the License, # or (at your option) any later version. # # original author: Jan Mette (funkyou) # maintainer (i686): Jan Mette (funkyou) # maintainer (x86_64): Johannes Schriewer (dunkelstern) # # USE MAKEPKG-ARCH INSIDE THE _BUILDSYSTEM DIRECTORY!!! # # EXTRA VARIABLES (NEED TO DEFINED FIRST) # THIS BITES THE ARCH PACKAGING STANDARD, BUT EASES MAINTENANCE A LOT # _kdever=3.5.10 _mirror="ftp.fu-berlin.de/pub/unix/X11/gui/kde" _origname=kdelibs # # PACKAGE DATA # pkgname=${_origname}3 pkgdesc="KDE Core Libraries" arch=(i686 x86_64) pkgver=3.5.10 pkgrel=3 url="http://www.kde.org" license="GPL" groups=('kde3') provides=() conflicts=() makedepends=('pkgconfig' 'cups') depends=('db>=4.6' 'libxslt' 'pcre' 'libart-lgpl' 'openexr' 'avahi>=0.6.20' 'jasper>=1.900.1' 'fam' 'bzip2' 'openssl' 'libidn' 'perl' 'aspell' 'acl' 'libtiff' 'qt3-enhanced>=3.3.8' 'ca-certificates') source=(ftp://$_mirror/stable/$_kdever/src/$_origname-$pkgver.tar.bz2 \ # avahi stuff http://www.archlinux.org/~jgc/kdnssd-avahi-20060319.tar.bz2 \ fileshareset-wrapper.c \ # main patchset 01-kdemod_tag.patch \ 02-kip_rounded_selection_box.patch \ 03-kip_rubberband.patch \ 04-execute_feedback.patch \ 05-applications_menu.patch \ 06-inotify.patch \ 07-kfile_beagle.patch \ 08-konqueror_kwallet_simplify_string.patch \ 09-no-progress-for-beagle-status-query.patch \ 10-kde_menu.patch \ 11-xinerama.patch \ 12-kspell_spellcheck_default_utf8.patch \ 13-konqueror_textcompletion_editor.patch \ 14-flash_installer.patch \ 15-kde4_applications.patch \ # 17-kmenu-wine_entry.patch # backports & bugfixes fix-async_configfile.patch \ fix-gmail_html_elemtimpl.patch \ fix-kicker_crash.patch \ fix-kwallet.patch \ # Additional Arch patches openssl.patch \ acinclude.patch \ kdelibs3-missing-include.patch \ # post-build stuff post-build-kdeprintrc.patch) # # START BUILDING # build() { # # source the QT and KDE profile # [ "$QTDIR" = "" ] && source /etc/profile.d/qt3.sh [ "$KDEDIR" = "" ] && source /etc/profile.d/kde3.sh # # add patches # cd $startdir/src/$_origname-$pkgver msg "applying main patchset..." # patch -p1 -i $startdir/src/01-kdemod_tag.patch || return 1 # patch -p1 -i $startdir/src/02-kip_rounded_selection_box.patch || return 1 # patch -p1 -i $startdir/src/03-kip_rubberband.patch || return 1 # patch -p1 -i $startdir/src/04-execute_feedback.patch || return 1 patch -p1 -i $startdir/src/05-applications_menu.patch || return 1 patch -p1 -i $startdir/src/06-inotify.patch || return 1 patch -p1 -i $startdir/src/07-kfile_beagle.patch || return 1 patch -p1 -i $startdir/src/08-konqueror_kwallet_simplify_string.patch || return 1 patch -p1 -i $startdir/src/09-no-progress-for-beagle-status-query.patch || return 1 patch -p1 -i $startdir/src/10-kde_menu.patch || return 1 patch -p1 -i $startdir/src/11-xinerama.patch || return 1 patch -p1 -i $startdir/src/12-kspell_spellcheck_default_utf8.patch || return 1 patch -p1 -i $startdir/src/13-konqueror_textcompletion_editor.patch || return 1 patch -p0 -i $startdir/src/14-flash_installer.patch || return 1 patch -p0 -i $startdir/src/15-kde4_applications.patch || return 1 # Does not work for everybody # patch -p0 -i $startdir/src/17-kmenu-wine_entry.patch || return 1 msg "applying bugfixes..." patch -p1 -i $startdir/src/fix-async_configfile.patch || return 1 patch -p1 -i $startdir/src/fix-kicker_crash.patch || return 1 patch -p1 -i $startdir/src/fix-kwallet.patch || return 1 patch -p1 -i $startdir/src/fix-gmail_html_elemtimpl.patch || return 1 #patch -p4 -i $startdir/src/fix-post-3.5.9-kate_fix_pasting_of_multiline_blocks_r777286.patch || return 1 #patch -p4 -i $startdir/src/fix-post-3.5.9-kdeinit-new-startup.patch || return 1 # Additional Arch patches patch -p1 -i $startdir/src/openssl.patch || return 1 patch -p1 -i $startdir/src/acinclude.patch || return 1 patch -p0 -i $startdir/src/kdelibs3-missing-include.patch || return 1 # # replace dns-sd implementation with avahi implementation # msg "including avahi stuff..." rm dnssd/* cp -v -r ${startdir}/src/kdnssd-avahi-20060319/* dnssd/ rm -v dnssd/configure{,.in} sed -i -e 's/kdnssd-avahi/dnssd/g' dnssd/configure.in.in sed -i -e 's|ksocketaddress\.h|network/ksocketaddress\.h|' dnssd/publicservice.cpp # Fix for issues with newer automake versions, taken from Arch sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh # # needed for updated kdnssd-avahi and inotify patch # msg "regenerating makefiles..." UNSERMAKE=no make -f admin/Makefile.common dist # # configure # msg "starting configure & make..." ./configure --prefix=/opt/kde --with-distribution="Arch Linux" --with-alsa \ --disable-dependency-tracking --disable-debug --without-arts \ --disable-dnotify --enable-inotify --enable-sendfile --x-libraries=/usr/share \ --without-lua-dir --without-lua-includes --without-lua-libraries \ --without-hspell --enable-gcc-hidden-visibility --enable-final \ --enable-new-ldflags LDFLAGS="${LDFLAGS} -L/opt/qt/lib" # # build # make || return 1 # # install # make DESTDIR=$startdir/pkg install || return 1 # # post installation # # set cups as default printing system cd $startdir/pkg/opt/kde/share/config patch -Np0 -i $startdir/src/post-build-kdeprintrc.patch || return 1 # fix fileshareset suid stuff mv $startdir/pkg/opt/kde/bin/fileshareset $startdir/pkg/opt/kde/bin/fileshareset.pl gcc -Wall $startdir/src/fileshareset-wrapper.c -o $startdir/pkg/opt/kde/bin/fileshareset chmod 0755 $startdir/pkg/opt/kde/bin/fileshareset.pl chmod 4755 $startdir/pkg/opt/kde/bin/fileshareset rm $startdir/pkg/opt/kde/bin/filesharelist cd $startdir/pkg/opt/kde/bin/ ln -s fileshareset.pl filesharelist # Remove KDEui UI files (provided in separate package) rm -rf $startdir/pkg/opt/kde/share/apps/kdeui/about # cert bundle seems to be hardcoded # link it to the one from ca-certificates rm -f $pkgdir/opt/kde/share/apps/kssl/ca-bundle.crt ln -sf /etc/ssl/certs/ca-certificates.crt $pkgdir/opt/kde/share/apps/kssl/ca-bundle.crt } --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- The issue : [alex@schreiberstein kdelibs]$ makepkg ==> Making package: kdelibs3 3.5.10-3 (Sat Jul 28 23:05:18 UTC 2012) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving Sources... -> Found kdelibs-3.5.10.tar.bz2 -> Found kdnssd-avahi-20060319.tar.bz2 -> Found fileshareset-wrapper.c -> Found 01-kdemod_tag.patch -> Found 02-kip_rounded_selection_box.patch -> Found 03-kip_rubberband.patch -> Found 04-execute_feedback.patch -> Found 05-applications_menu.patch -> Found 06-inotify.patch -> Found 07-kfile_beagle.patch -> Found 08-konqueror_kwallet_simplify_string.patch -> Found 09-no-progress-for-beagle-status-query.patch -> Found 10-kde_menu.patch -> Found 11-xinerama.patch -> Found 12-kspell_spellcheck_default_utf8.patch -> Found 13-konqueror_textcompletion_editor.patch -> Found 14-flash_installer.patch -> Found 15-kde4_applications.patch -> Found fix-async_configfile.patch -> Found fix-gmail_html_elemtimpl.patch -> Found fix-kicker_crash.patch -> Found fix-kwallet.patch -> Found openssl.patch -> Found acinclude.patch -> Found kdelibs3-missing-include.patch -> Found post-build-kdeprintrc.patch ==> Validating source files with md5sums... kdelibs-3.5.10.tar.bz2 ... Passed kdnssd-avahi-20060319.tar.bz2 ... Passed fileshareset-wrapper.c ... Passed 01-kdemod_tag.patch ... Passed 02-kip_rounded_selection_box.patch ... Passed 03-kip_rubberband.patch ... Passed 04-execute_feedback.patch ... Passed 05-applications_menu.patch ... Passed 06-inotify.patch ... Passed 07-kfile_beagle.patch ... Passed 08-konqueror_kwallet_simplify_string.patch ... Passed 09-no-progress-for-beagle-status-query.patch ... Passed 10-kde_menu.patch ... Passed 11-xinerama.patch ... Passed 12-kspell_spellcheck_default_utf8.patch ... Passed 13-konqueror_textcompletion_editor.patch ... Passed 14-flash_installer.patch ... Passed 15-kde4_applications.patch ... Passed fix-async_configfile.patch ... Passed fix-gmail_html_elemtimpl.patch ... Passed fix-kicker_crash.patch ... Passed fix-kwallet.patch ... Passed openssl.patch ... Passed acinclude.patch ... Passed kdelibs3-missing-include.patch ... Passed post-build-kdeprintrc.patch ... Passed ==> Extracting Sources... -> Extracting kdelibs-3.5.10.tar.bz2 with bsdtar -> Extracting kdnssd-avahi-20060319.tar.bz2 with bsdtar ==> Entering fakeroot environment... ==> Starting build()... ==> applying main patchset... patching file kded/Makefile.am patching file kded/Makefile.in Hunk #2 succeeded at 1173 with fuzz 1 (offset -1 lines). patching file kded/kde-applications.menu patching file kio/kio/configure.in.in patching file kio/kio/kdirwatch.cpp patching file kio/kfile/kfiledialog.cpp patching file kio/kfile/kurlbar.cpp patching file khtml/html/html_formimpl.cpp patching file kio/kio/netaccess.cpp patching file kded/kbuildsycoca.cpp patching file kdecore/kstartupinfo.cpp Hunk #1 succeeded at 1109 (offset 4 lines). Hunk #2 succeeded at 1121 (offset 4 lines). Hunk #3 succeeded at 1153 (offset 4 lines). Hunk #4 succeeded at 1175 (offset 4 lines). Hunk #5 succeeded at 1207 (offset 4 lines). Hunk #6 succeeded at 1254 (offset 4 lines). Hunk #7 succeeded at 1428 (offset 4 lines). patching file kdecore/kstartupinfo.h patching file kdecore/netwm.cpp patching file kdecore/netwm_def.h patching file kio/kio/krun.cpp Hunk #9 succeeded at 644 (offset 6 lines). Hunk #10 succeeded at 664 (offset 6 lines). Hunk #11 succeeded at 683 (offset 6 lines). Hunk #12 succeeded at 744 (offset 6 lines). Hunk #13 succeeded at 780 (offset 6 lines). Hunk #14 succeeded at 794 (offset 6 lines). Hunk #15 succeeded at 837 (offset 6 lines). Hunk #16 succeeded at 893 (offset 6 lines). Hunk #17 succeeded at 994 (offset 6 lines). Hunk #18 succeeded at 1287 (offset 6 lines). Hunk #19 succeeded at 1302 (offset 6 lines). patching file kio/kio/krun.h patching file kdeui/ksconfig.cpp patching file kdeui/ksyntaxhighlighter.cpp patching file kdeui/kcombobox.cpp patching file kdeui/kcombobox.h patching file khtml/khtmlview.cpp Hunk #1 succeeded at 3061 (offset 4 lines). patching file khtml/khtmlview.h patching file khtml/rendering/render_form.cpp patching file khtml/rendering/render_form.h patching file khtml/misc/knsplugininstaller.cpp patching file khtml/misc/Makefile.am patching file khtml/misc/knsplugininstaller.h patching file khtml/rendering/render_frames.cpp patching file kio/kio/kservice.cpp Hunk #2 succeeded at 134 (offset 3 lines). Hunk #3 succeeded at 199 (offset 4 lines). Hunk #4 succeeded at 250 (offset -1 lines). Hunk #5 succeeded at 267 (offset -4 lines). patching file kio/kio/kservice.cpp Hunk #1 succeeded at 201 (offset 4 lines). patching file kio/kio/kservice.cpp Hunk #1 succeeded at 268 with fuzz 2 (offset -3 lines). ==> applying bugfixes... patching file kdecore/kconfigbackend.cpp patching file kdecore/kconfigbackend.h patching file kdecore/ksavefile.cpp patching file kdecore/ksavefile.h patching file kio/kio/kdirlister.cpp patching file kio/misc/kwalletd/kwalletd.cpp patching file khtml/html/html_elementimpl.cpp Hunk #1 succeeded at 565 (offset 4 lines). patching file kio/kssl/kopenssl.cc Hunk #2 succeeded at 409 (offset -26 lines). Hunk #3 succeeded at 578 (offset -26 lines). Hunk #4 succeeded at 966 (offset -26 lines). Hunk #5 succeeded at 984 (offset -26 lines). patching file kio/kssl/kopenssl.h patching file kio/kssl/ksmimecrypto.cc patching file kio/kssl/ksslcertificate.cc patching file admin/acinclude.m4.in patching file kdeprint/cups/cupsdconf2/cups-util.c ==> including avahi stuff... '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/Makefile.am' -> 'dnssd/Makefile.am' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/Makefile.in' -> 'dnssd/Makefile.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/README' -> 'dnssd/README' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/acinclude.m4' -> 'dnssd/acinclude.m4' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/aclocal.m4' -> 'dnssd/aclocal.m4' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin' -> 'dnssd/admin' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/config.sub' -> 'dnssd/admin/config.sub' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/bcheck.pl' -> 'dnssd/admin/bcheck.pl' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/missing' -> 'dnssd/admin/missing' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/depcomp' -> 'dnssd/admin/depcomp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/cvs.sh' -> 'dnssd/admin/cvs.sh' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/mkinstalldirs' -> 'dnssd/admin/mkinstalldirs' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/debianrules' -> 'dnssd/admin/debianrules' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/libtool.m4.in' -> 'dnssd/admin/libtool.m4.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/oldinclude.m4.in' -> 'dnssd/admin/oldinclude.m4.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/configure.in.bot.end' -> 'dnssd/admin/configure.in.bot.end' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/Doxyfile.global' -> 'dnssd/admin/Doxyfile.global' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/Doxyfile.am' -> 'dnssd/admin/Doxyfile.am' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/compile' -> 'dnssd/admin/compile' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/ltmain.sh' -> 'dnssd/admin/ltmain.sh' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/configure.in.min' -> 'dnssd/admin/configure.in.min' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/doxygen.sh' -> 'dnssd/admin/doxygen.sh' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/detect-autoconf.pl' -> 'dnssd/admin/detect-autoconf.pl' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/config.guess' -> 'dnssd/admin/config.guess' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/deps.am' -> 'dnssd/admin/deps.am' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/install-sh' -> 'dnssd/admin/install-sh' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/config.pl' -> 'dnssd/admin/config.pl' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/pkg.m4.in' -> 'dnssd/admin/pkg.m4.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/acinclude.m4.in' -> 'dnssd/admin/acinclude.m4.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/conf.change.pl' -> 'dnssd/admin/conf.change.pl' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/Makefile.common' -> 'dnssd/admin/Makefile.common' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/nmcheck' -> 'dnssd/admin/nmcheck' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/am_edit' -> 'dnssd/admin/am_edit' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/ylwrap' -> 'dnssd/admin/ylwrap' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/config.h.in' -> 'dnssd/config.h.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure' -> 'dnssd/configure' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure.files' -> 'dnssd/configure.files' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure.in' -> 'dnssd/configure.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure.in.in' -> 'dnssd/configure.in.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/domainbrowser.cpp' -> 'dnssd/domainbrowser.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/domainbrowser.h' -> 'dnssd/domainbrowser.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/kcm_kdnssd.kcfg' -> 'dnssd/kcm_kdnssd.kcfg' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/publicservice.cpp' -> 'dnssd/publicservice.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/publicservice.h' -> 'dnssd/publicservice.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/query.cpp' -> 'dnssd/query.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/query.h' -> 'dnssd/query.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/remoteservice.cpp' -> 'dnssd/remoteservice.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/remoteservice.h' -> 'dnssd/remoteservice.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/responder.cpp' -> 'dnssd/responder.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/responder.h' -> 'dnssd/responder.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/sdevent.h' -> 'dnssd/sdevent.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebase.cpp' -> 'dnssd/servicebase.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebase.h' -> 'dnssd/servicebase.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebrowser.cpp' -> 'dnssd/servicebrowser.cpp' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebrowser.h' -> 'dnssd/servicebrowser.h' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/settings.kcfgc' -> 'dnssd/settings.kcfgc' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/stamp-h.in' -> 'dnssd/stamp-h.in' '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/subdirs' -> 'dnssd/subdirs' removed 'dnssd/configure' removed 'dnssd/configure.in' ==> regenerating makefiles... *** automake (GNU automake) 1.12.2 found. *** Creating acinclude.m4 make[1]: Entering directory `/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdelibs-3.5.10' make[1]: Nothing to be done for `acinclude.m4'. make[1]: Leaving directory `/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdelibs-3.5.10' cat: Binary: No such file or directory cat: file: No such file or directory cat: matches: No such file or directory *** Creating configure.files cat: Binary: No such file or directory cat: file: No such file or directory cat: (standard: No such file or directory cat: input): No such file or directory cat: matches: No such file or directory acinclude.m4:3725: warning: the serial number must appear before any macro definition acinclude.m4:3770: warning: the serial number must appear before any macro definition acinclude.m4:3815: warning: the serial number must appear before any macro definition acinclude.m4:6023: warning: the serial number must appear before any macro definition configure.in: error: no proper invocation of AM_INIT_AUTOMAKE was found. configure.in: You should verify that configure.in invokes AM_INIT_AUTOMAKE, configure.in: that aclocal.m4 is present in the top-level directory, configure.in: and that aclocal.m4 was recently regenerated (using aclocal) arts/Makefile.am:1: error: include_ARTS does not appear in AM_CONDITIONAL arts/kde/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined arts/kde/Makefile.am:4: The usual way to define 'LIBTOOL' is to add 'LT_INIT' arts/kde/Makefile.am:4: to 'configure.in' and run 'aclocal' and 'autoconf' again. arts/kde/Makefile.am:4: If 'LT_INIT' is in 'configure.in', make sure arts/kde/Makefile.am:4: its definition is in aclocal's search path. arts/kde/Makefile.am: error: required file './depcomp' not found arts/kde/Makefile.am: 'automake --add-missing' can install 'depcomp' /usr/share/automake-1.12/am/depend2.am: error: am__fastdepCXX does not appear in AM_CONDITIONAL /usr/share/automake-1.12/am/depend2.am: The usual way to define 'am__fastdepCXX' is to add 'AC_PROG_CXX' /usr/share/automake-1.12/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again /usr/share/automake-1.12/am/depend2.am: error: AMDEP does not appear in AM_CONDITIONAL /usr/share/automake-1.12/am/depend2.am: The usual way to define 'AMDEP' is to add one of the compiler tests /usr/share/automake-1.12/am/depend2.am: AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC, AC_PROG_OBJCXX, /usr/share/automake-1.12/am/depend2.am: AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC /usr/share/automake-1.12/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again arts/kde/Makefile.am: error: C++ source seen but 'CXX' is undefined arts/kde/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' arts/kde/Makefile.am: to 'configure.in' and run 'autoconf' again. arts/kde/mcop-dcop/Makefile.am:6: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined arts/kde/mcop-dcop/Makefile.am:8: warning: variable 'kmcop_la_SOURCES' is defined but no program or arts/kde/mcop-dcop/Makefile.am:8: library has 'kmcop_la' as canonical name (possible typo) arts/kde/mcop-dcop/Makefile.am:9: warning: variable 'kmcop_la_LIBADD' is defined but no program or arts/kde/mcop-dcop/Makefile.am:9: library has 'kmcop_la' as canonical name (possible typo) arts/kde/mcop-dcop/Makefile.am:10: warning: variable 'kmcop_la_LDFLAGS' is defined but no program or arts/kde/mcop-dcop/Makefile.am:10: library has 'kmcop_la' as canonical name (possible typo) arts/knotify/Makefile.am:9: error: include_ARTS does not appear in AM_CONDITIONAL arts/knotify/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined arts/knotify/Makefile.am: error: C++ source seen but 'CXX' is undefined arts/knotify/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' arts/knotify/Makefile.am: to 'configure.in' and run 'autoconf' again. arts/knotify/Makefile.am:8: warning: variable 'knotify_la_SOURCES' is defined but no program or arts/knotify/Makefile.am:8: library has 'knotify_la' as canonical name (possible typo) arts/knotify/Makefile.am:10: warning: variable 'knotify_la_LIBADD' is defined but no program or arts/knotify/Makefile.am:10: library has 'knotify_la' as canonical name (possible typo) arts/knotify/Makefile.am:12: warning: variable 'knotify_la_LDFLAGS' is defined but no program or arts/knotify/Makefile.am:12: library has 'knotify_la' as canonical name (possible typo) arts/message/Makefile.am: error: C++ source seen but 'CXX' is undefined arts/message/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' arts/message/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/KDE-ICE/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined dcop/KDE-ICE/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' dcop/KDE-ICE/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. dcop/KDE-ICE/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure dcop/KDE-ICE/Makefile.am:5: its definition is in aclocal's search path. /usr/share/automake-1.12/am/depend2.am: error: am__fastdepCC does not appear in AM_CONDITIONAL /usr/share/automake-1.12/am/depend2.am: The usual way to define 'am__fastdepCC' is to add 'AC_PROG_CC' /usr/share/automake-1.12/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again dcop/KDE-ICE/Makefile.am: error: C source seen but 'CC' is undefined dcop/KDE-ICE/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' dcop/KDE-ICE/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/Makefile.am:46: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined dcop/Makefile.am:32: error: Libtool library used but 'LIBTOOL' is undefined dcop/Makefile.am:32: The usual way to define 'LIBTOOL' is to add 'LT_INIT' dcop/Makefile.am:32: to 'configure.in' and run 'aclocal' and 'autoconf' again. dcop/Makefile.am:32: If 'LT_INIT' is in 'configure.in', make sure dcop/Makefile.am:32: its definition is in aclocal's search path. dcop/Makefile.am: error: C source seen but 'CC' is undefined dcop/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' dcop/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/Makefile.am: error: C++ source seen but 'CXX' is undefined dcop/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' dcop/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/Makefile.am:48: warning: variable 'dcopserver_la_SOURCES' is defined but no program or dcop/Makefile.am:48: library has 'dcopserver_la' as canonical name (possible typo) dcop/Makefile.am:49: warning: variable 'dcopserver_la_LIBADD' is defined but no program or dcop/Makefile.am:49: library has 'dcopserver_la' as canonical name (possible typo) dcop/Makefile.am:47: warning: variable 'dcopserver_la_LDFLAGS' is defined but no program or dcop/Makefile.am:47: library has 'dcopserver_la' as canonical name (possible typo) dcop/client/Makefile.am: error: C source seen but 'CC' is undefined dcop/client/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' dcop/client/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/client/Makefile.am: error: C++ source seen but 'CXX' is undefined dcop/client/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' dcop/client/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/dcopidl/Makefile.am: error: C++ source seen but 'CXX' is undefined dcop/dcopidl/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' dcop/dcopidl/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/dcopidl2cpp/Makefile.am: error: C++ source seen but 'CXX' is undefined dcop/dcopidl2cpp/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' dcop/dcopidl2cpp/Makefile.am: to 'configure.in' and run 'autoconf' again. dcop/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined dcop/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' dcop/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. dnssd/Makefile.am:9: error: Libtool library used but 'LIBTOOL' is undefined dnssd/Makefile.am:9: The usual way to define 'LIBTOOL' is to add 'LT_INIT' dnssd/Makefile.am:9: to 'configure.in' and run 'aclocal' and 'autoconf' again. dnssd/Makefile.am:9: If 'LT_INIT' is in 'configure.in', make sure dnssd/Makefile.am:9: its definition is in aclocal's search path. dnssd/Makefile.am: error: C++ source seen but 'CXX' is undefined dnssd/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' dnssd/Makefile.am: to 'configure.in' and run 'autoconf' again. interfaces/kimproxy/library/Makefile.am:17: error: Libtool library used but 'LIBTOOL' is undefined interfaces/kimproxy/library/Makefile.am:17: The usual way to define 'LIBTOOL' is to add 'LT_INIT' interfaces/kimproxy/library/Makefile.am:17: to 'configure.in' and run 'aclocal' and 'autoconf' again. interfaces/kimproxy/library/Makefile.am:17: If 'LT_INIT' is in 'configure.in', make sure interfaces/kimproxy/library/Makefile.am:17: its definition is in aclocal's search path. interfaces/kimproxy/library/Makefile.am: error: C++ source seen but 'CXX' is undefined interfaces/kimproxy/library/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' interfaces/kimproxy/library/Makefile.am: to 'configure.in' and run 'autoconf' again. interfaces/kmediaplayer/Makefile.am:1: error: include_ARTS does not appear in AM_CONDITIONAL interfaces/kmediaplayer/Makefile.am:8: error: Libtool library used but 'LIBTOOL' is undefined interfaces/kmediaplayer/Makefile.am:8: The usual way to define 'LIBTOOL' is to add 'LT_INIT' interfaces/kmediaplayer/Makefile.am:8: to 'configure.in' and run 'aclocal' and 'autoconf' again. interfaces/kmediaplayer/Makefile.am:8: If 'LT_INIT' is in 'configure.in', make sure interfaces/kmediaplayer/Makefile.am:8: its definition is in aclocal's search path. interfaces/kmediaplayer/Makefile.am: error: C++ source seen but 'CXX' is undefined interfaces/kmediaplayer/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' interfaces/kmediaplayer/Makefile.am: to 'configure.in' and run 'autoconf' again. interfaces/kmediaplayer/Makefile.am:18: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:6: warning: variable 'kfileaudiopreview_la_SOURCES' is defined but no program or interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:6: library has 'kfileaudiopreview_la' as canonical name (possible typo) interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:8: warning: variable 'kfileaudiopreview_la_LIBADD' is defined but no program or interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:8: library has 'kfileaudiopreview_la' as canonical name (possible typo) interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:7: warning: variable 'kfileaudiopreview_la_LDFLAGS' is defined but no program or interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:7: library has 'kfileaudiopreview_la' as canonical name (possible typo) interfaces/kscript/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined interfaces/kscript/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' interfaces/kscript/Makefile.am:6: to 'configure.in' and run 'aclocal' and 'autoconf' again. interfaces/kscript/Makefile.am:6: If 'LT_INIT' is in 'configure.in', make sure interfaces/kscript/Makefile.am:6: its definition is in aclocal's search path. interfaces/kscript/Makefile.am: error: C++ source seen but 'CXX' is undefined interfaces/kscript/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' interfaces/kscript/Makefile.am: to 'configure.in' and run 'autoconf' again. interfaces/kscript/sample/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined interfaces/kscript/sample/Makefile.am:5: warning: variable 'libshellscript_la_SOURCES' is defined but no program or interfaces/kscript/sample/Makefile.am:5: library has 'libshellscript_la' as canonical name (possible typo) interfaces/kscript/sample/Makefile.am:7: warning: variable 'libshellscript_la_LIBADD' is defined but no program or interfaces/kscript/sample/Makefile.am:7: library has 'libshellscript_la' as canonical name (possible typo) interfaces/kscript/sample/Makefile.am:6: warning: variable 'libshellscript_la_LDFLAGS' is defined but no program or interfaces/kscript/sample/Makefile.am:6: library has 'libshellscript_la' as canonical name (possible typo) interfaces/kspeech/Makefile.am:7: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined interfaces/ktexteditor/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined interfaces/ktexteditor/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' interfaces/ktexteditor/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. interfaces/ktexteditor/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure interfaces/ktexteditor/Makefile.am:3: its definition is in aclocal's search path. interfaces/ktexteditor/Makefile.am: error: C++ source seen but 'CXX' is undefined interfaces/ktexteditor/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' interfaces/ktexteditor/Makefile.am: to 'configure.in' and run 'autoconf' again. interfaces/terminal/test/Makefile.am: error: C++ source seen but 'CXX' is undefined interfaces/terminal/test/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' interfaces/terminal/test/Makefile.am: to 'configure.in' and run 'autoconf' again. kab/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kab/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kab/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kab/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kab/Makefile.am:3: its definition is in aclocal's search path. kab/Makefile.am: error: C++ source seen but 'CXX' is undefined kab/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kab/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined kabc/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure kabc/Makefile.am:22: its definition is in aclocal's search path. kabc/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/formats/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/formats/Makefile.am:5: warning: variable 'kabcformat_binary_la_SOURCES' is defined but no program or kabc/formats/Makefile.am:5: library has 'kabcformat_binary_la' as canonical name (possible typo) kabc/formats/Makefile.am:8: warning: variable 'kabcformat_binary_la_LIBADD' is defined but no program or kabc/formats/Makefile.am:8: library has 'kabcformat_binary_la' as canonical name (possible typo) kabc/formats/Makefile.am:6: warning: variable 'kabcformat_binary_la_LDFLAGS' is defined but no program or kabc/formats/Makefile.am:6: library has 'kabcformat_binary_la' as canonical name (possible typo) kabc/plugins/dir/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/plugins/dir/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined kabc/plugins/dir/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/plugins/dir/Makefile.am:6: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/plugins/dir/Makefile.am:6: If 'LT_INIT' is in 'configure.in', make sure kabc/plugins/dir/Makefile.am:6: its definition is in aclocal's search path. kabc/plugins/dir/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/plugins/dir/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/plugins/dir/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/plugins/dir/Makefile.am:13: warning: variable 'kabc_dir_la_SOURCES' is defined but no program or kabc/plugins/dir/Makefile.am:13: library has 'kabc_dir_la' as canonical name (possible typo) kabc/plugins/dir/Makefile.am:15: warning: variable 'kabc_dir_la_LIBADD' is defined but no program or kabc/plugins/dir/Makefile.am:15: library has 'kabc_dir_la' as canonical name (possible typo) kabc/plugins/dir/Makefile.am:14: warning: variable 'kabc_dir_la_LDFLAGS' is defined but no program or kabc/plugins/dir/Makefile.am:14: library has 'kabc_dir_la' as canonical name (possible typo) kabc/plugins/evolution/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/plugins/evolution/Makefile.am:8: warning: variable 'kabc_evo_la_SOURCES' is defined but no program or kabc/plugins/evolution/Makefile.am:8: library has 'kabc_evo_la' as canonical name (possible typo) kabc/plugins/evolution/Makefile.am:11: warning: variable 'kabc_evo_la_LIBADD' is defined but no program or kabc/plugins/evolution/Makefile.am:11: library has 'kabc_evo_la' as canonical name (possible typo) kabc/plugins/evolution/Makefile.am:10: warning: variable 'kabc_evo_la_LDFLAGS' is defined but no program or kabc/plugins/evolution/Makefile.am:10: library has 'kabc_evo_la' as canonical name (possible typo) kabc/plugins/file/Makefile.am:13: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/plugins/file/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined kabc/plugins/file/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/plugins/file/Makefile.am:6: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/plugins/file/Makefile.am:6: If 'LT_INIT' is in 'configure.in', make sure kabc/plugins/file/Makefile.am:6: its definition is in aclocal's search path. kabc/plugins/file/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/plugins/file/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/plugins/file/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/plugins/file/Makefile.am:14: warning: variable 'kabc_file_la_SOURCES' is defined but no program or kabc/plugins/file/Makefile.am:14: library has 'kabc_file_la' as canonical name (possible typo) kabc/plugins/file/Makefile.am:16: warning: variable 'kabc_file_la_LIBADD' is defined but no program or kabc/plugins/file/Makefile.am:16: library has 'kabc_file_la' as canonical name (possible typo) kabc/plugins/file/Makefile.am:15: warning: variable 'kabc_file_la_LDFLAGS' is defined but no program or kabc/plugins/file/Makefile.am:15: library has 'kabc_file_la' as canonical name (possible typo) kabc/plugins/ldapkio/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/plugins/ldapkio/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined kabc/plugins/ldapkio/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/plugins/ldapkio/Makefile.am:6: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/plugins/ldapkio/Makefile.am:6: If 'LT_INIT' is in 'configure.in', make sure kabc/plugins/ldapkio/Makefile.am:6: its definition is in aclocal's search path. kabc/plugins/ldapkio/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/plugins/ldapkio/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/plugins/ldapkio/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/plugins/ldapkio/Makefile.am:13: warning: variable 'kabc_ldapkio_la_SOURCES' is defined but no program or kabc/plugins/ldapkio/Makefile.am:13: library has 'kabc_ldapkio_la' as canonical name (possible typo) kabc/plugins/ldapkio/Makefile.am:15: warning: variable 'kabc_ldapkio_la_LIBADD' is defined but no program or kabc/plugins/ldapkio/Makefile.am:15: library has 'kabc_ldapkio_la' as canonical name (possible typo) kabc/plugins/ldapkio/Makefile.am:14: warning: variable 'kabc_ldapkio_la_LDFLAGS' is defined but no program or kabc/plugins/ldapkio/Makefile.am:14: library has 'kabc_ldapkio_la' as canonical name (possible typo) kabc/plugins/net/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/plugins/net/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined kabc/plugins/net/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/plugins/net/Makefile.am:6: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/plugins/net/Makefile.am:6: If 'LT_INIT' is in 'configure.in', make sure kabc/plugins/net/Makefile.am:6: its definition is in aclocal's search path. kabc/plugins/net/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/plugins/net/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/plugins/net/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/plugins/net/Makefile.am:13: warning: variable 'kabc_net_la_SOURCES' is defined but no program or kabc/plugins/net/Makefile.am:13: library has 'kabc_net_la' as canonical name (possible typo) kabc/plugins/net/Makefile.am:15: warning: variable 'kabc_net_la_LIBADD' is defined but no program or kabc/plugins/net/Makefile.am:15: library has 'kabc_net_la' as canonical name (possible typo) kabc/plugins/net/Makefile.am:14: warning: variable 'kabc_net_la_LDFLAGS' is defined but no program or kabc/plugins/net/Makefile.am:14: library has 'kabc_net_la' as canonical name (possible typo) kabc/plugins/sql/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kabc/plugins/sql/Makefile.am:8: warning: variable 'kabc_sql_la_SOURCES' is defined but no program or kabc/plugins/sql/Makefile.am:8: library has 'kabc_sql_la' as canonical name (possible typo) kabc/plugins/sql/Makefile.am:11: warning: variable 'kabc_sql_la_LIBADD' is defined but no program or kabc/plugins/sql/Makefile.am:11: library has 'kabc_sql_la' as canonical name (possible typo) kabc/plugins/sql/Makefile.am:10: warning: variable 'kabc_sql_la_LDFLAGS' is defined but no program or kabc/plugins/sql/Makefile.am:10: library has 'kabc_sql_la' as canonical name (possible typo) kabc/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/vcard/Makefile.am:7: error: Libtool library used but 'LIBTOOL' is undefined kabc/vcard/Makefile.am:7: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/vcard/Makefile.am:7: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/vcard/Makefile.am:7: If 'LT_INIT' is in 'configure.in', make sure kabc/vcard/Makefile.am:7: its definition is in aclocal's search path. kabc/vcard/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/vcard/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/vcard/Makefile.am: to 'configure.in' and run 'autoconf' again. kabc/vcardparser/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kabc/vcardparser/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kabc/vcardparser/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kabc/vcardparser/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kabc/vcardparser/Makefile.am:3: its definition is in aclocal's search path. kabc/vcardparser/Makefile.am: error: C++ source seen but 'CXX' is undefined kabc/vcardparser/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kabc/vcardparser/Makefile.am: to 'configure.in' and run 'autoconf' again. kate/data/Makefile.am:1: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kate/interfaces/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kate/interfaces/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kate/interfaces/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kate/interfaces/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kate/interfaces/Makefile.am:3: its definition is in aclocal's search path. kate/interfaces/Makefile.am: error: C++ source seen but 'CXX' is undefined kate/interfaces/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kate/interfaces/Makefile.am: to 'configure.in' and run 'autoconf' again. kate/part/Makefile.am:1: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kate/part/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kate/part/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kate/part/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kate/part/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kate/part/Makefile.am:3: its definition is in aclocal's search path. kate/part/Makefile.am: error: C++ source seen but 'CXX' is undefined kate/part/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kate/part/Makefile.am: to 'configure.in' and run 'autoconf' again. kate/part/Makefile.am:17: warning: variable 'libkatepart_la_SOURCES' is defined but no program or kate/part/Makefile.am:17: library has 'libkatepart_la' as canonical name (possible typo) kate/part/Makefile.am:21: warning: variable 'libkatepart_la_LDFLAGS' is defined but no program or kate/part/Makefile.am:21: library has 'libkatepart_la' as canonical name (possible typo) kate/plugins/autobookmarker/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kate/plugins/autobookmarker/Makefile.am:11: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kate/plugins/autobookmarker/Makefile.am:7: warning: variable 'ktexteditor_autobookmarker_la_SOURCES' is defined but no program or kate/plugins/autobookmarker/Makefile.am:7: library has 'ktexteditor_autobookmarker_la' as canonical name (possible typo) kate/plugins/autobookmarker/Makefile.am:8: warning: variable 'ktexteditor_autobookmarker_la_LIBADD' is defined but no program or kate/plugins/autobookmarker/Makefile.am:8: library has 'ktexteditor_autobookmarker_la' as canonical name (possible typo) kate/plugins/autobookmarker/Makefile.am:9: warning: variable 'ktexteditor_autobookmarker_la_LDFLAGS' is defined but no program or kate/plugins/autobookmarker/Makefile.am:9: library has 'ktexteditor_autobookmarker_la' as canonical name (possible typo) kate/plugins/insertfile/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kate/plugins/insertfile/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kate/plugins/insertfile/Makefile.am:7: warning: variable 'ktexteditor_insertfile_la_SOURCES' is defined but no program or kate/plugins/insertfile/Makefile.am:7: library has 'ktexteditor_insertfile_la' as canonical name (possible typo) kate/plugins/insertfile/Makefile.am:8: warning: variable 'ktexteditor_insertfile_la_LIBADD' is defined but no program or kate/plugins/insertfile/Makefile.am:8: library has 'ktexteditor_insertfile_la' as canonical name (possible typo) kate/plugins/insertfile/Makefile.am:9: warning: variable 'ktexteditor_insertfile_la_LDFLAGS' is defined but no program or kate/plugins/insertfile/Makefile.am:9: library has 'ktexteditor_insertfile_la' as canonical name (possible typo) kate/plugins/isearch/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kate/plugins/isearch/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kate/plugins/isearch/Makefile.am:7: warning: variable 'ktexteditor_isearch_la_SOURCES' is defined but no program or kate/plugins/isearch/Makefile.am:7: library has 'ktexteditor_isearch_la' as canonical name (possible typo) kate/plugins/isearch/Makefile.am:8: warning: variable 'ktexteditor_isearch_la_LIBADD' is defined but no program or kate/plugins/isearch/Makefile.am:8: library has 'ktexteditor_isearch_la' as canonical name (possible typo) kate/plugins/isearch/Makefile.am:9: warning: variable 'ktexteditor_isearch_la_LDFLAGS' is defined but no program or kate/plugins/isearch/Makefile.am:9: library has 'ktexteditor_isearch_la' as canonical name (possible typo) kate/plugins/kdatatool/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kate/plugins/kdatatool/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kate/plugins/kdatatool/Makefile.am:7: warning: variable 'ktexteditor_kdatatool_la_SOURCES' is defined but no program or kate/plugins/kdatatool/Makefile.am:7: library has 'ktexteditor_kdatatool_la' as canonical name (possible typo) kate/plugins/kdatatool/Makefile.am:8: warning: variable 'ktexteditor_kdatatool_la_LIBADD' is defined but no program or kate/plugins/kdatatool/Makefile.am:8: library has 'ktexteditor_kdatatool_la' as canonical name (possible typo) kate/plugins/kdatatool/Makefile.am:9: warning: variable 'ktexteditor_kdatatool_la_LDFLAGS' is defined but no program or kate/plugins/kdatatool/Makefile.am:9: library has 'ktexteditor_kdatatool_la' as canonical name (possible typo) kate/plugins/wordcompletion/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kate/plugins/wordcompletion/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kate/plugins/wordcompletion/Makefile.am:7: warning: variable 'ktexteditor_docwordcompletion_la_SOURCES' is defined but no program or kate/plugins/wordcompletion/Makefile.am:7: library has 'ktexteditor_docwordcompletion_la' as canonical name (possible typo) kate/plugins/wordcompletion/Makefile.am:8: warning: variable 'ktexteditor_docwordcompletion_la_LIBADD' is defined but no program or kate/plugins/wordcompletion/Makefile.am:8: library has 'ktexteditor_docwordcompletion_la' as canonical name (possible typo) kate/plugins/wordcompletion/Makefile.am:9: warning: variable 'ktexteditor_docwordcompletion_la_LDFLAGS' is defined but no program or kate/plugins/wordcompletion/Makefile.am:9: library has 'ktexteditor_docwordcompletion_la' as canonical name (possible typo) kcert/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kcert/Makefile.am:5: warning: variable 'libkcertpart_la_SOURCES' is defined but no program or kcert/Makefile.am:5: library has 'libkcertpart_la' as canonical name (possible typo) kcert/Makefile.am:8: warning: variable 'libkcertpart_la_LIBADD' is defined but no program or kcert/Makefile.am:8: library has 'libkcertpart_la' as canonical name (possible typo) kcert/Makefile.am:7: warning: variable 'libkcertpart_la_LDFLAGS' is defined but no program or kcert/Makefile.am:7: library has 'libkcertpart_la' as canonical name (possible typo) kcert/Makefile.am:9: warning: variable 'libkcertpart_la_DEPENDENCIES' is defined but no program or kcert/Makefile.am:9: library has 'libkcertpart_la' as canonical name (possible typo) kcmshell/Makefile.am:26: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kcmshell/Makefile.am:28: warning: variable 'kcmshell_la_SOURCES' is defined but no program or kcmshell/Makefile.am:28: library has 'kcmshell_la' as canonical name (possible typo) kcmshell/Makefile.am:29: warning: variable 'kcmshell_la_LIBADD' is defined but no program or kcmshell/Makefile.am:29: library has 'kcmshell_la' as canonical name (possible typo) kcmshell/Makefile.am:30: warning: variable 'kcmshell_la_LDFLAGS' is defined but no program or kcmshell/Makefile.am:30: library has 'kcmshell_la' as canonical name (possible typo) kconf_update/Makefile.am:23: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kconf_update/Makefile.am:25: warning: variable 'kconf_update_la_SOURCES' is defined but no program or kconf_update/Makefile.am:25: library has 'kconf_update_la' as canonical name (possible typo) kconf_update/Makefile.am:26: warning: variable 'kconf_update_la_LIBADD' is defined but no program or kconf_update/Makefile.am:26: library has 'kconf_update_la' as canonical name (possible typo) kconf_update/Makefile.am:27: warning: variable 'kconf_update_la_LDFLAGS' is defined but no program or kconf_update/Makefile.am:27: library has 'kconf_update_la' as canonical name (possible typo) kdecore/Makefile.am:25: error: include_SVGICONS does not appear in AM_CONDITIONAL kdecore/Makefile.am:37: error: library used but 'RANLIB' is undefined kdecore/Makefile.am:37: The usual way to define 'RANLIB' is to add 'AC_PROG_RANLIB' kdecore/Makefile.am:37: to 'configure.in' and run 'autoconf' again. kdecore/Makefile.am:36: error: Libtool library used but 'LIBTOOL' is undefined kdecore/Makefile.am:36: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdecore/Makefile.am:36: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdecore/Makefile.am:36: If 'LT_INIT' is in 'configure.in', make sure kdecore/Makefile.am:36: its definition is in aclocal's search path. kdecore/Makefile.am: error: C source seen but 'CC' is undefined kdecore/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdecore/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/kconfig_compiler/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/kconfig_compiler/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/kconfig_compiler/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/kconfig_compiler/example/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/kconfig_compiler/example/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/kconfig_compiler/example/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/kconfig_compiler/tests/Makefile.am:57: error: Libtool library used but 'LIBTOOL' is undefined kdecore/kconfig_compiler/tests/Makefile.am:57: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdecore/kconfig_compiler/tests/Makefile.am:57: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdecore/kconfig_compiler/tests/Makefile.am:57: If 'LT_INIT' is in 'configure.in', make sure kdecore/kconfig_compiler/tests/Makefile.am:57: its definition is in aclocal's search path. kdecore/kconfig_compiler/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/kconfig_compiler/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/kconfig_compiler/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/malloc/Makefile.am:27: error: Libtool library used but 'LIBTOOL' is undefined kdecore/malloc/Makefile.am:27: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdecore/malloc/Makefile.am:27: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdecore/malloc/Makefile.am:27: If 'LT_INIT' is in 'configure.in', make sure kdecore/malloc/Makefile.am:27: its definition is in aclocal's search path. kdecore/malloc/Makefile.am: error: C source seen but 'CC' is undefined kdecore/malloc/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdecore/malloc/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/network/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined kdecore/network/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdecore/network/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdecore/network/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure kdecore/network/Makefile.am:5: its definition is in aclocal's search path. kdecore/network/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/network/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/network/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/svgicons/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kdecore/svgicons/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdecore/svgicons/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdecore/svgicons/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kdecore/svgicons/Makefile.am:3: its definition is in aclocal's search path. kdecore/svgicons/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/svgicons/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/svgicons/Makefile.am: to 'configure.in' and run 'autoconf' again. kdecore/tests/Makefile.am:82: error: Libtool library used but 'LIBTOOL' is undefined kdecore/tests/Makefile.am:82: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdecore/tests/Makefile.am:82: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdecore/tests/Makefile.am:82: If 'LT_INIT' is in 'configure.in', make sure kdecore/tests/Makefile.am:82: its definition is in aclocal's search path. kdecore/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kdecore/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdecore/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kded/Makefile.am:23: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kded/Makefile.am: error: C++ source seen but 'CXX' is undefined kded/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kded/Makefile.am: to 'configure.in' and run 'autoconf' again. kded/Makefile.am:61: error: 'xdg_menu_DATA' is used but 'xdg_menudir' is undefined kded/Makefile.am:27: warning: variable 'kded_la_SOURCES' is defined but no program or kded/Makefile.am:27: library has 'kded_la' as canonical name (possible typo) kded/Makefile.am:31: warning: variable 'kbuildsycoca_la_SOURCES' is defined but no program or kded/Makefile.am:31: library has 'kbuildsycoca_la' as canonical name (possible typo) kded/Makefile.am:30: warning: variable 'kbuildsycoca_la_LIBADD' is defined but no program or kded/Makefile.am:30: library has 'kbuildsycoca_la' as canonical name (possible typo) kded/Makefile.am:26: warning: variable 'kded_la_LIBADD' is defined but no program or kded/Makefile.am:26: library has 'kded_la' as canonical name (possible typo) kded/Makefile.am:25: warning: variable 'kded_la_LDFLAGS' is defined but no program or kded/Makefile.am:25: library has 'kded_la' as canonical name (possible typo) kded/Makefile.am:29: warning: variable 'kbuildsycoca_la_LDFLAGS' is defined but no program or kded/Makefile.am:29: library has 'kbuildsycoca_la' as canonical name (possible typo) kded/test/Makefile.am:7: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kded/test/Makefile.am:9: warning: variable 'kded_test_la_SOURCES' is defined but no program or kded/test/Makefile.am:9: library has 'kded_test_la' as canonical name (possible typo) kded/test/Makefile.am:12: warning: variable 'kded_test_la_LIBADD' is defined but no program or kded/test/Makefile.am:12: library has 'kded_test_la' as canonical name (possible typo) kded/test/Makefile.am:11: warning: variable 'kded_test_la_LDFLAGS' is defined but no program or kded/test/Makefile.am:11: library has 'kded_test_la' as canonical name (possible typo) kdefx/Makefile.am:25: error: Libtool library used but 'LIBTOOL' is undefined kdefx/Makefile.am:25: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdefx/Makefile.am:25: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdefx/Makefile.am:25: If 'LT_INIT' is in 'configure.in', make sure kdefx/Makefile.am:25: its definition is in aclocal's search path. kdefx/Makefile.am: error: C++ source seen but 'CXX' is undefined kdefx/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdefx/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/Makefile.am:3: error: include_cups_SUBDIR does not appear in AM_CONDITIONAL kdeprint/Makefile.am:103: error: library used but 'RANLIB' is undefined kdeprint/Makefile.am:103: The usual way to define 'RANLIB' is to add 'AC_PROG_RANLIB' kdeprint/Makefile.am:103: to 'configure.in' and run 'autoconf' again. kdeprint/Makefile.am:11: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/Makefile.am:18: error: Libtool library used but 'LIBTOOL' is undefined kdeprint/Makefile.am:18: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdeprint/Makefile.am:18: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdeprint/Makefile.am:18: If 'LT_INIT' is in 'configure.in', make sure kdeprint/Makefile.am:18: its definition is in aclocal's search path. kdeprint/Makefile.am: error: C source seen but 'CC' is undefined kdeprint/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdeprint/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/Makefile.am: error: C++ source seen but 'CXX' is undefined kdeprint/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdeprint/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/Makefile.am:13: warning: variable 'kded_kdeprintd_la_SOURCES' is defined but no program or kdeprint/Makefile.am:13: library has 'kded_kdeprintd_la' as canonical name (possible typo) kdeprint/Makefile.am:14: warning: variable 'kded_kdeprintd_la_LIBADD' is defined but no program or kdeprint/Makefile.am:14: library has 'kded_kdeprintd_la' as canonical name (possible typo) kdeprint/Makefile.am:15: warning: variable 'kded_kdeprintd_la_LDFLAGS' is defined but no program or kdeprint/Makefile.am:15: library has 'kded_kdeprintd_la' as canonical name (possible typo) kdeprint/cups/Makefile.am:7: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/cups/Makefile.am: error: C source seen but 'CC' is undefined kdeprint/cups/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdeprint/cups/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/cups/Makefile.am:9: warning: variable 'kdeprint_cups_la_SOURCES' is defined but no program or kdeprint/cups/Makefile.am:9: library has 'kdeprint_cups_la' as canonical name (possible typo) kdeprint/cups/Makefile.am:18: warning: variable 'kdeprint_cups_la_LIBADD' is defined but no program or kdeprint/cups/Makefile.am:18: library has 'kdeprint_cups_la' as canonical name (possible typo) kdeprint/cups/Makefile.am:17: warning: variable 'kdeprint_cups_la_LDFLAGS' is defined but no program or kdeprint/cups/Makefile.am:17: library has 'kdeprint_cups_la' as canonical name (possible typo) kdeprint/cups/cupsdconf2/Makefile.am:7: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kdeprint/cups/cupsdconf2/Makefile.am:10: warning: variable 'cupsdconf_la_SOURCES' is defined but no program or kdeprint/cups/cupsdconf2/Makefile.am:10: library has 'cupsdconf_la' as canonical name (possible typo) kdeprint/cups/cupsdconf2/Makefile.am:18: warning: variable 'cupsdconf_la_LIBADD' is defined but no program or kdeprint/cups/cupsdconf2/Makefile.am:18: library has 'cupsdconf_la' as canonical name (possible typo) kdeprint/cups/cupsdconf2/Makefile.am:17: warning: variable 'cupsdconf_la_LDFLAGS' is defined but no program or kdeprint/cups/cupsdconf2/Makefile.am:17: library has 'cupsdconf_la' as canonical name (possible typo) kdeprint/ext/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/ext/Makefile.am:7: warning: variable 'kdeprint_ext_la_SOURCES' is defined but no program or kdeprint/ext/Makefile.am:7: library has 'kdeprint_ext_la' as canonical name (possible typo) kdeprint/ext/Makefile.am:9: warning: variable 'kdeprint_ext_la_LIBADD' is defined but no program or kdeprint/ext/Makefile.am:9: library has 'kdeprint_ext_la' as canonical name (possible typo) kdeprint/ext/Makefile.am:8: warning: variable 'kdeprint_ext_la_LDFLAGS' is defined but no program or kdeprint/ext/Makefile.am:8: library has 'kdeprint_ext_la' as canonical name (possible typo) kdeprint/foomatic/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/foomatic/Makefile.am: error: C source seen but 'CC' is undefined kdeprint/foomatic/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdeprint/foomatic/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/foomatic/Makefile.am:5: warning: variable 'kdeprint_foomatic_la_SOURCES' is defined but no program or kdeprint/foomatic/Makefile.am:5: library has 'kdeprint_foomatic_la' as canonical name (possible typo) kdeprint/foomatic/Makefile.am:9: warning: variable 'kdeprint_foomatic_la_LIBADD' is defined but no program or kdeprint/foomatic/Makefile.am:9: library has 'kdeprint_foomatic_la' as canonical name (possible typo) kdeprint/foomatic/Makefile.am:8: warning: variable 'kdeprint_foomatic_la_LDFLAGS' is defined but no program or kdeprint/foomatic/Makefile.am:8: library has 'kdeprint_foomatic_la' as canonical name (possible typo) kdeprint/lpd/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/lpd/Makefile.am: error: C source seen but 'CC' is undefined kdeprint/lpd/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdeprint/lpd/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/lpd/Makefile.am:5: warning: variable 'kdeprint_lpd_la_SOURCES' is defined but no program or kdeprint/lpd/Makefile.am:5: library has 'kdeprint_lpd_la' as canonical name (possible typo) kdeprint/lpd/Makefile.am:8: warning: variable 'kdeprint_lpd_la_LIBADD' is defined but no program or kdeprint/lpd/Makefile.am:8: library has 'kdeprint_lpd_la' as canonical name (possible typo) kdeprint/lpd/Makefile.am:7: warning: variable 'kdeprint_lpd_la_LDFLAGS' is defined but no program or kdeprint/lpd/Makefile.am:7: library has 'kdeprint_lpd_la' as canonical name (possible typo) kdeprint/lpdunix/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/lpdunix/Makefile.am:7: warning: variable 'kdeprint_lpdunix_la_SOURCES' is defined but no program or kdeprint/lpdunix/Makefile.am:7: library has 'kdeprint_lpdunix_la' as canonical name (possible typo) kdeprint/lpdunix/Makefile.am:9: warning: variable 'kdeprint_lpdunix_la_LIBADD' is defined but no program or kdeprint/lpdunix/Makefile.am:9: library has 'kdeprint_lpdunix_la' as canonical name (possible typo) kdeprint/lpdunix/Makefile.am:8: warning: variable 'kdeprint_lpdunix_la_LDFLAGS' is defined but no program or kdeprint/lpdunix/Makefile.am:8: library has 'kdeprint_lpdunix_la' as canonical name (possible typo) kdeprint/lpr/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/lpr/Makefile.am: error: C source seen but 'CC' is undefined kdeprint/lpr/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdeprint/lpr/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/lpr/Makefile.am:7: warning: variable 'kdeprint_lpr_la_SOURCES' is defined but no program or kdeprint/lpr/Makefile.am:7: library has 'kdeprint_lpr_la' as canonical name (possible typo) kdeprint/lpr/Makefile.am:16: warning: variable 'kdeprint_lpr_la_LIBADD' is defined but no program or kdeprint/lpr/Makefile.am:16: library has 'kdeprint_lpr_la' as canonical name (possible typo) kdeprint/lpr/Makefile.am:15: warning: variable 'kdeprint_lpr_la_LDFLAGS' is defined but no program or kdeprint/lpr/Makefile.am:15: library has 'kdeprint_lpr_la' as canonical name (possible typo) kdeprint/management/Makefile.am:7: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kdeprint/management/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/management/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined kdeprint/management/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdeprint/management/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdeprint/management/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure kdeprint/management/Makefile.am:5: its definition is in aclocal's search path. kdeprint/management/Makefile.am: error: C++ source seen but 'CXX' is undefined kdeprint/management/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdeprint/management/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/management/Makefile.am:32: warning: variable 'libkdeprint_management_module_la_SOURCES' is defined but no program or kdeprint/management/Makefile.am:32: library has 'libkdeprint_management_module_la' as canonical name (possible typo) kdeprint/management/Makefile.am:10: warning: variable 'kaddprinterwizard_la_SOURCES' is defined but no program or kdeprint/management/Makefile.am:10: library has 'kaddprinterwizard_la' as canonical name (possible typo) kdeprint/management/Makefile.am:11: warning: variable 'kaddprinterwizard_la_LIBADD' is defined but no program or kdeprint/management/Makefile.am:11: library has 'kaddprinterwizard_la' as canonical name (possible typo) kdeprint/management/Makefile.am:34: warning: variable 'libkdeprint_management_module_la_LIBADD' is defined but no program or kdeprint/management/Makefile.am:34: library has 'libkdeprint_management_module_la' as canonical name (possible typo) kdeprint/management/Makefile.am:33: warning: variable 'libkdeprint_management_module_la_LDFLAGS' is defined but no program or kdeprint/management/Makefile.am:33: library has 'libkdeprint_management_module_la' as canonical name (possible typo) kdeprint/management/Makefile.am:12: warning: variable 'kaddprinterwizard_la_LDFLAGS' is defined but no program or kdeprint/management/Makefile.am:12: library has 'kaddprinterwizard_la' as canonical name (possible typo) kdeprint/rlpr/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/rlpr/Makefile.am:7: warning: variable 'kdeprint_rlpr_la_SOURCES' is defined but no program or kdeprint/rlpr/Makefile.am:7: library has 'kdeprint_rlpr_la' as canonical name (possible typo) kdeprint/rlpr/Makefile.am:10: warning: variable 'kdeprint_rlpr_la_LIBADD' is defined but no program or kdeprint/rlpr/Makefile.am:10: library has 'kdeprint_rlpr_la' as canonical name (possible typo) kdeprint/rlpr/Makefile.am:9: warning: variable 'kdeprint_rlpr_la_LDFLAGS' is defined but no program or kdeprint/rlpr/Makefile.am:9: library has 'kdeprint_rlpr_la' as canonical name (possible typo) kdeprint/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kdeprint/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdeprint/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeprint/tools/escputil/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeprint/tools/escputil/Makefile.am:4: warning: variable 'kdeprint_tool_escputil_la_SOURCES' is defined but no program or kdeprint/tools/escputil/Makefile.am:4: library has 'kdeprint_tool_escputil_la' as canonical name (possible typo) kdeprint/tools/escputil/Makefile.am:7: warning: variable 'kdeprint_tool_escputil_la_LIBADD' is defined but no program or kdeprint/tools/escputil/Makefile.am:7: library has 'kdeprint_tool_escputil_la' as canonical name (possible typo) kdeprint/tools/escputil/Makefile.am:6: warning: variable 'kdeprint_tool_escputil_la_LDFLAGS' is defined but no program or kdeprint/tools/escputil/Makefile.am:6: library has 'kdeprint_tool_escputil_la' as canonical name (possible typo) kdesu/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined kdesu/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdesu/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdesu/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure kdesu/Makefile.am:5: its definition is in aclocal's search path. kdesu/Makefile.am: error: C source seen but 'CC' is undefined kdesu/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kdesu/Makefile.am: to 'configure.in' and run 'autoconf' again. kdesu/Makefile.am: error: C++ source seen but 'CXX' is undefined kdesu/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdesu/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeui/Makefile.am:29: error: Libtool library used but 'LIBTOOL' is undefined kdeui/Makefile.am:29: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdeui/Makefile.am:29: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdeui/Makefile.am:29: If 'LT_INIT' is in 'configure.in', make sure kdeui/Makefile.am:29: its definition is in aclocal's search path. kdeui/Makefile.am: error: C++ source seen but 'CXX' is undefined kdeui/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdeui/Makefile.am: to 'configure.in' and run 'autoconf' again. kdeui/kdetrayproxy/Makefile.am:1: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdeui/kdetrayproxy/Makefile.am:4: warning: variable 'kded_kdetrayproxy_la_SOURCES' is defined but no program or kdeui/kdetrayproxy/Makefile.am:4: library has 'kded_kdetrayproxy_la' as canonical name (possible typo) kdeui/kdetrayproxy/Makefile.am:6: warning: variable 'kded_kdetrayproxy_la_LIBADD' is defined but no program or kdeui/kdetrayproxy/Makefile.am:6: library has 'kded_kdetrayproxy_la' as canonical name (possible typo) kdeui/kdetrayproxy/Makefile.am:5: warning: variable 'kded_kdetrayproxy_la_LDFLAGS' is defined but no program or kdeui/kdetrayproxy/Makefile.am:5: library has 'kded_kdetrayproxy_la' as canonical name (possible typo) kdeui/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kdeui/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdeui/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kdewidgets/Makefile.am:31: error: 'kde_widget_LTLIBRARIES' is used but 'kde_widgetdir' is undefined kdewidgets/Makefile.am: error: C++ source seen but 'CXX' is undefined kdewidgets/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdewidgets/Makefile.am: to 'configure.in' and run 'autoconf' again. kdewidgets/Makefile.am:34: warning: variable 'kdewidgets_la_SOURCES' is defined but no program or kdewidgets/Makefile.am:34: library has 'kdewidgets_la' as canonical name (possible typo) kdewidgets/Makefile.am:33: warning: variable 'kdewidgets_la_LIBADD' is defined but no program or kdewidgets/Makefile.am:33: library has 'kdewidgets_la' as canonical name (possible typo) kdewidgets/Makefile.am:32: warning: variable 'kdewidgets_la_LDFLAGS' is defined but no program or kdewidgets/Makefile.am:32: library has 'kdewidgets_la' as canonical name (possible typo) kdoctools/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kdoctools/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined kdoctools/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kdoctools/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. kdoctools/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure kdoctools/Makefile.am:5: its definition is in aclocal's search path. kdoctools/Makefile.am: error: C++ source seen but 'CXX' is undefined kdoctools/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kdoctools/Makefile.am: to 'configure.in' and run 'autoconf' again. kdoctools/Makefile.am:18: warning: variable 'kio_ghelp_la_SOURCES' is defined but no program or kdoctools/Makefile.am:18: library has 'kio_ghelp_la' as canonical name (possible typo) kdoctools/Makefile.am:14: warning: variable 'kio_help_la_SOURCES' is defined but no program or kdoctools/Makefile.am:14: library has 'kio_help_la' as canonical name (possible typo) kdoctools/Makefile.am:19: warning: variable 'kio_ghelp_la_LIBADD' is defined but no program or kdoctools/Makefile.am:19: library has 'kio_ghelp_la' as canonical name (possible typo) kdoctools/Makefile.am:15: warning: variable 'kio_help_la_LIBADD' is defined but no program or kdoctools/Makefile.am:15: library has 'kio_help_la' as canonical name (possible typo) kdoctools/Makefile.am:16: warning: variable 'kio_help_la_LDFLAGS' is defined but no program or kdoctools/Makefile.am:16: library has 'kio_help_la' as canonical name (possible typo) kdoctools/Makefile.am:20: warning: variable 'kio_ghelp_la_LDFLAGS' is defined but no program or kdoctools/Makefile.am:20: library has 'kio_ghelp_la' as canonical name (possible typo) khtml/Makefile.am:22: error: DOJAVA does not appear in AM_CONDITIONAL khtml/Makefile.am:48: error: include_VERSION_SCRIPT does not appear in AM_CONDITIONAL khtml/Makefile.am:32: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined khtml/Makefile.am:31: error: Libtool library used but 'LIBTOOL' is undefined khtml/Makefile.am:31: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/Makefile.am:31: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/Makefile.am:31: If 'LT_INIT' is in 'configure.in', make sure khtml/Makefile.am:31: its definition is in aclocal's search path. khtml/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/Makefile.am:78: warning: variable 'khtmlimagepart_la_SOURCES' is defined but no program or khtml/Makefile.am:78: library has 'khtmlimagepart_la' as canonical name (possible typo) khtml/Makefile.am:68: warning: variable 'libkhtmlpart_la_SOURCES' is defined but no program or khtml/Makefile.am:68: library has 'libkhtmlpart_la' as canonical name (possible typo) khtml/Makefile.am:70: warning: variable 'libkhtmlpart_la_LIBADD' is defined but no program or khtml/Makefile.am:70: library has 'libkhtmlpart_la' as canonical name (possible typo) khtml/Makefile.am:80: warning: variable 'khtmlimagepart_la_LIBADD' is defined but no program or khtml/Makefile.am:80: library has 'khtmlimagepart_la' as canonical name (possible typo) khtml/Makefile.am:79: warning: variable 'khtmlimagepart_la_LDFLAGS' is defined but no program or khtml/Makefile.am:79: library has 'khtmlimagepart_la' as canonical name (possible typo) khtml/Makefile.am:69: warning: variable 'libkhtmlpart_la_LDFLAGS' is defined but no program or khtml/Makefile.am:69: library has 'libkhtmlpart_la' as canonical name (possible typo) khtml/css/Makefile.am:24: error: Libtool library used but 'LIBTOOL' is undefined khtml/css/Makefile.am:24: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/css/Makefile.am:24: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/css/Makefile.am:24: If 'LT_INIT' is in 'configure.in', make sure khtml/css/Makefile.am:24: its definition is in aclocal's search path. khtml/css/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/css/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/css/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/dom/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined khtml/dom/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/dom/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/dom/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure khtml/dom/Makefile.am:22: its definition is in aclocal's search path. khtml/dom/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/dom/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/dom/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/ecma/Makefile.am:23: error: Libtool library used but 'LIBTOOL' is undefined khtml/ecma/Makefile.am:23: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/ecma/Makefile.am:23: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/ecma/Makefile.am:23: If 'LT_INIT' is in 'configure.in', make sure khtml/ecma/Makefile.am:23: its definition is in aclocal's search path. khtml/ecma/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/ecma/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/ecma/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/html/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined khtml/html/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/html/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/html/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure khtml/html/Makefile.am:22: its definition is in aclocal's search path. khtml/html/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/html/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/html/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/java/Makefile.am:29: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined khtml/java/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined khtml/java/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/java/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/java/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure khtml/java/Makefile.am:3: its definition is in aclocal's search path. khtml/java/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/java/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/java/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/java/Makefile.am:37: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined khtml/java/Makefile.am:30: warning: variable 'kjavaappletviewer_la_SOURCES' is defined but no program or khtml/java/Makefile.am:30: library has 'kjavaappletviewer_la' as canonical name (possible typo) khtml/java/Makefile.am:35: warning: variable 'kjavaappletviewer_la_LIBADD' is defined but no program or khtml/java/Makefile.am:35: library has 'kjavaappletviewer_la' as canonical name (possible typo) khtml/java/Makefile.am:34: warning: variable 'kjavaappletviewer_la_LDFLAGS' is defined but no program or khtml/java/Makefile.am:34: library has 'kjavaappletviewer_la' as canonical name (possible typo) khtml/java/dummy/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined khtml/java/dummy/Makefile.am:2: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/java/dummy/Makefile.am:2: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/java/dummy/Makefile.am:2: If 'LT_INIT' is in 'configure.in', make sure khtml/java/dummy/Makefile.am:2: its definition is in aclocal's search path. khtml/java/dummy/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/java/dummy/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/java/dummy/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/java/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/java/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/java/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/kmultipart/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined khtml/kmultipart/Makefile.am:16: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined khtml/kmultipart/Makefile.am:7: warning: variable 'libkmultipart_la_SOURCES' is defined but no program or khtml/kmultipart/Makefile.am:7: library has 'libkmultipart_la' as canonical name (possible typo) khtml/kmultipart/Makefile.am:8: warning: variable 'libkmultipart_la_LIBADD' is defined but no program or khtml/kmultipart/Makefile.am:8: library has 'libkmultipart_la' as canonical name (possible typo) khtml/kmultipart/Makefile.am:10: warning: variable 'libkmultipart_la_LDFLAGS' is defined but no program or khtml/kmultipart/Makefile.am:10: library has 'libkmultipart_la' as canonical name (possible typo) khtml/kmultipart/Makefile.am:9: warning: variable 'libkmultipart_la_DEPENDENCIES' is defined but no program or khtml/kmultipart/Makefile.am:9: library has 'libkmultipart_la' as canonical name (possible typo) khtml/misc/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined khtml/misc/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/misc/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/misc/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure khtml/misc/Makefile.am:22: its definition is in aclocal's search path. khtml/misc/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/misc/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/misc/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/rendering/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined khtml/rendering/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/rendering/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/rendering/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure khtml/rendering/Makefile.am:22: its definition is in aclocal's search path. khtml/rendering/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/rendering/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/rendering/Makefile.am: to 'configure.in' and run 'autoconf' again. khtml/xml/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined khtml/xml/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' khtml/xml/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. khtml/xml/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure khtml/xml/Makefile.am:22: its definition is in aclocal's search path. khtml/xml/Makefile.am: error: C++ source seen but 'CXX' is undefined khtml/xml/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' khtml/xml/Makefile.am: to 'configure.in' and run 'autoconf' again. kimgio/Makefile.am:2: error: include_TIFF_MODULES does not appear in AM_CONDITIONAL kimgio/Makefile.am:7: error: include_JP2_MODULES does not appear in AM_CONDITIONAL kimgio/Makefile.am:12: error: include_EXR_MODULES does not appear in AM_CONDITIONAL kimgio/Makefile.am:19: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kimgio/Makefile.am:54: warning: variable 'kimg_tga_la_SOURCES' is defined but no program or kimgio/Makefile.am:54: library has 'kimg_tga_la' as canonical name (possible typo) kimgio/Makefile.am:58: warning: variable 'kimg_rgb_la_SOURCES' is defined but no program or kimgio/Makefile.am:58: library has 'kimg_rgb_la' as canonical name (possible typo) kimgio/Makefile.am:42: warning: variable 'kimg_ico_la_SOURCES' is defined but no program or kimgio/Makefile.am:42: library has 'kimg_ico_la' as canonical name (possible typo) kimgio/Makefile.am:34: warning: variable 'kimg_xview_la_SOURCES' is defined but no program or kimgio/Makefile.am:34: library has 'kimg_xview_la' as canonical name (possible typo) kimgio/Makefile.am:78: warning: variable 'kimg_hdr_la_SOURCES' is defined but no program or kimgio/Makefile.am:78: library has 'kimg_hdr_la' as canonical name (possible typo) kimgio/Makefile.am:50: warning: variable 'kimg_pcx_la_SOURCES' is defined but no program or kimgio/Makefile.am:50: library has 'kimg_pcx_la' as canonical name (possible typo) kimgio/Makefile.am:38: warning: variable 'kimg_eps_la_SOURCES' is defined but no program or kimgio/Makefile.am:38: library has 'kimg_eps_la' as canonical name (possible typo) kimgio/Makefile.am:26: warning: variable 'kimg_tiff_la_SOURCES' is defined but no program or kimgio/Makefile.am:26: library has 'kimg_tiff_la' as canonical name (possible typo) kimgio/Makefile.am:46: warning: variable 'kimg_jp2_la_SOURCES' is defined but no program or kimgio/Makefile.am:46: library has 'kimg_jp2_la' as canonical name (possible typo) kimgio/Makefile.am:70: warning: variable 'kimg_dds_la_SOURCES' is defined but no program or kimgio/Makefile.am:70: library has 'kimg_dds_la' as canonical name (possible typo) kimgio/Makefile.am:62: warning: variable 'kimg_xcf_la_SOURCES' is defined but no program or kimgio/Makefile.am:62: library has 'kimg_xcf_la' as canonical name (possible typo) kimgio/Makefile.am:74: warning: variable 'kimg_psd_la_SOURCES' is defined but no program or kimgio/Makefile.am:74: library has 'kimg_psd_la' as canonical name (possible typo) kimgio/Makefile.am:66: warning: variable 'kimg_exr_la_SOURCES' is defined but no program or kimgio/Makefile.am:66: library has 'kimg_exr_la' as canonical name (possible typo) kimgio/Makefile.am:80: warning: variable 'kimg_hdr_la_LIBADD' is defined but no program or kimgio/Makefile.am:80: library has 'kimg_hdr_la' as canonical name (possible typo) kimgio/Makefile.am:64: warning: variable 'kimg_xcf_la_LIBADD' is defined but no program or kimgio/Makefile.am:64: library has 'kimg_xcf_la' as canonical name (possible typo) kimgio/Makefile.am:76: warning: variable 'kimg_psd_la_LIBADD' is defined but no program or kimgio/Makefile.am:76: library has 'kimg_psd_la' as canonical name (possible typo) kimgio/Makefile.am:52: warning: variable 'kimg_pcx_la_LIBADD' is defined but no program or kimgio/Makefile.am:52: library has 'kimg_pcx_la' as canonical name (possible typo) kimgio/Makefile.am:44: warning: variable 'kimg_ico_la_LIBADD' is defined but no program or kimgio/Makefile.am:44: library has 'kimg_ico_la' as canonical name (possible typo) kimgio/Makefile.am:60: warning: variable 'kimg_rgb_la_LIBADD' is defined but no program or kimgio/Makefile.am:60: library has 'kimg_rgb_la' as canonical name (possible typo) kimgio/Makefile.am:28: warning: variable 'kimg_tiff_la_LIBADD' is defined but no program or kimgio/Makefile.am:28: library has 'kimg_tiff_la' as canonical name (possible typo) kimgio/Makefile.am:36: warning: variable 'kimg_xview_la_LIBADD' is defined but no program or kimgio/Makefile.am:36: library has 'kimg_xview_la' as canonical name (possible typo) kimgio/Makefile.am:56: warning: variable 'kimg_tga_la_LIBADD' is defined but no program or kimgio/Makefile.am:56: library has 'kimg_tga_la' as canonical name (possible typo) kimgio/Makefile.am:48: warning: variable 'kimg_jp2_la_LIBADD' is defined but no program or kimgio/Makefile.am:48: library has 'kimg_jp2_la' as canonical name (possible typo) kimgio/Makefile.am:72: warning: variable 'kimg_dds_la_LIBADD' is defined but no program or kimgio/Makefile.am:72: library has 'kimg_dds_la' as canonical name (possible typo) kimgio/Makefile.am:68: warning: variable 'kimg_exr_la_LIBADD' is defined but no program or kimgio/Makefile.am:68: library has 'kimg_exr_la' as canonical name (possible typo) kimgio/Makefile.am:40: warning: variable 'kimg_eps_la_LIBADD' is defined but no program or kimgio/Makefile.am:40: library has 'kimg_eps_la' as canonical name (possible typo) kimgio/Makefile.am:55: warning: variable 'kimg_tga_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:55: library has 'kimg_tga_la' as canonical name (possible typo) kimgio/Makefile.am:63: warning: variable 'kimg_xcf_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:63: library has 'kimg_xcf_la' as canonical name (possible typo) kimgio/Makefile.am:59: warning: variable 'kimg_rgb_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:59: library has 'kimg_rgb_la' as canonical name (possible typo) kimgio/Makefile.am:79: warning: variable 'kimg_hdr_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:79: library has 'kimg_hdr_la' as canonical name (possible typo) kimgio/Makefile.am:71: warning: variable 'kimg_dds_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:71: library has 'kimg_dds_la' as canonical name (possible typo) kimgio/Makefile.am:67: warning: variable 'kimg_exr_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:67: library has 'kimg_exr_la' as canonical name (possible typo) kimgio/Makefile.am:43: warning: variable 'kimg_ico_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:43: library has 'kimg_ico_la' as canonical name (possible typo) kimgio/Makefile.am:75: warning: variable 'kimg_psd_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:75: library has 'kimg_psd_la' as canonical name (possible typo) kimgio/Makefile.am:35: warning: variable 'kimg_xview_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:35: library has 'kimg_xview_la' as canonical name (possible typo) kimgio/Makefile.am:39: warning: variable 'kimg_eps_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:39: library has 'kimg_eps_la' as canonical name (possible typo) kimgio/Makefile.am:47: warning: variable 'kimg_jp2_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:47: library has 'kimg_jp2_la' as canonical name (possible typo) kimgio/Makefile.am:51: warning: variable 'kimg_pcx_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:51: library has 'kimg_pcx_la' as canonical name (possible typo) kimgio/Makefile.am:27: warning: variable 'kimg_tiff_la_LDFLAGS' is defined but no program or kimgio/Makefile.am:27: library has 'kimg_tiff_la' as canonical name (possible typo) kinit/Makefile.am:26: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kinit/Makefile.am: error: C source seen but 'CC' is undefined kinit/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kinit/Makefile.am: to 'configure.in' and run 'autoconf' again. kinit/Makefile.am: error: C++ source seen but 'CXX' is undefined kinit/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kinit/Makefile.am: to 'configure.in' and run 'autoconf' again. kinit/Makefile.am:60: warning: variable 'klauncher_la_SOURCES' is defined but no program or kinit/Makefile.am:60: library has 'klauncher_la' as canonical name (possible typo) kinit/Makefile.am:59: warning: variable 'klauncher_la_LIBADD' is defined but no program or kinit/Makefile.am:59: library has 'klauncher_la' as canonical name (possible typo) kinit/Makefile.am:58: warning: variable 'klauncher_la_LDFLAGS' is defined but no program or kinit/Makefile.am:58: library has 'klauncher_la' as canonical name (possible typo) kinit/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kinit/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kinit/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/Makefile.am:25: error: Libtool library used but 'LIBTOOL' is undefined kio/Makefile.am:25: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/Makefile.am:25: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/Makefile.am:25: If 'LT_INIT' is in 'configure.in', make sure kio/Makefile.am:25: its definition is in aclocal's search path. kio/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/Makefile.am:37: error: 'kde_mime_DATA' is used but 'kde_mimedir' is undefined kio/Makefile.am:38: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined kio/bookmarks/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined kio/bookmarks/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/bookmarks/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/bookmarks/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure kio/bookmarks/Makefile.am:22: its definition is in aclocal's search path. kio/bookmarks/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/bookmarks/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/bookmarks/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/httpfilter/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kio/httpfilter/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/httpfilter/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/httpfilter/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kio/httpfilter/Makefile.am:3: its definition is in aclocal's search path. kio/httpfilter/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/httpfilter/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/httpfilter/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/kfile/Makefile.am:23: error: Libtool library used but 'LIBTOOL' is undefined kio/kfile/Makefile.am:23: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/kfile/Makefile.am:23: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/kfile/Makefile.am:23: If 'LT_INIT' is in 'configure.in', make sure kio/kfile/Makefile.am:23: its definition is in aclocal's search path. kio/kfile/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/kfile/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/kfile/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/kfile/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/kfile/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/kfile/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/kio/Makefile.am:23: error: Libtool library used but 'LIBTOOL' is undefined kio/kio/Makefile.am:23: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/kio/Makefile.am:23: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/kio/Makefile.am:23: If 'LT_INIT' is in 'configure.in', make sure kio/kio/Makefile.am:23: its definition is in aclocal's search path. kio/kio/Makefile.am: error: C source seen but 'CC' is undefined kio/kio/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kio/kio/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/kio/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/kio/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/kio/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/kioexec/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/kioexec/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/kioexec/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/kpasswdserver/Makefile.am:8: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kio/kpasswdserver/Makefile.am:10: warning: variable 'kded_kpasswdserver_la_SOURCES' is defined but no program or kio/kpasswdserver/Makefile.am:10: library has 'kded_kpasswdserver_la' as canonical name (possible typo) kio/kpasswdserver/Makefile.am:13: warning: variable 'kded_kpasswdserver_la_LIBADD' is defined but no program or kio/kpasswdserver/Makefile.am:13: library has 'kded_kpasswdserver_la' as canonical name (possible typo) kio/kpasswdserver/Makefile.am:12: warning: variable 'kded_kpasswdserver_la_LDFLAGS' is defined but no program or kio/kpasswdserver/Makefile.am:12: library has 'kded_kpasswdserver_la' as canonical name (possible typo) kio/kssl/Makefile.am:8: error: Libtool library used but 'LIBTOOL' is undefined kio/kssl/Makefile.am:8: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/kssl/Makefile.am:8: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/kssl/Makefile.am:8: If 'LT_INIT' is in 'configure.in', make sure kio/kssl/Makefile.am:8: its definition is in aclocal's search path. kio/kssl/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/kssl/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/kssl/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/Makefile.am:26: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kio/misc/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/misc/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/misc/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/Makefile.am:37: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kio/misc/Makefile.am:31: warning: variable 'kio_uiserver_la_SOURCES' is defined but no program or kio/misc/Makefile.am:31: library has 'kio_uiserver_la' as canonical name (possible typo) kio/misc/Makefile.am:32: warning: variable 'kio_uiserver_la_LIBADD' is defined but no program or kio/misc/Makefile.am:32: library has 'kio_uiserver_la' as canonical name (possible typo) kio/misc/Makefile.am:33: warning: variable 'kio_uiserver_la_LDFLAGS' is defined but no program or kio/misc/Makefile.am:33: library has 'kio_uiserver_la' as canonical name (possible typo) kio/misc/kdesasl/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kio/misc/kdesasl/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/misc/kdesasl/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/misc/kdesasl/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kio/misc/kdesasl/Makefile.am:3: its definition is in aclocal's search path. kio/misc/kdesasl/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/misc/kdesasl/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/misc/kdesasl/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/kfile/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/misc/kfile/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/misc/kfile/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/kntlm/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kio/misc/kntlm/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/misc/kntlm/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/misc/kntlm/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kio/misc/kntlm/Makefile.am:3: its definition is in aclocal's search path. kio/misc/kntlm/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/misc/kntlm/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/misc/kntlm/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/kpac/Makefile.am:2: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kio/misc/kpac/Makefile.am: error: C source seen but 'CC' is undefined kio/misc/kpac/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' kio/misc/kpac/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/kpac/Makefile.am:10: warning: variable 'kded_proxyscout_la_SOURCES' is defined but no program or kio/misc/kpac/Makefile.am:10: library has 'kded_proxyscout_la' as canonical name (possible typo) kio/misc/kpac/Makefile.am:13: warning: variable 'kded_proxyscout_la_LIBADD' is defined but no program or kio/misc/kpac/Makefile.am:13: library has 'kded_proxyscout_la' as canonical name (possible typo) kio/misc/kpac/Makefile.am:12: warning: variable 'kded_proxyscout_la_LDFLAGS' is defined but no program or kio/misc/kpac/Makefile.am:12: library has 'kded_proxyscout_la' as canonical name (possible typo) kio/misc/ksendbugmail/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/misc/ksendbugmail/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/misc/ksendbugmail/Makefile.am: to 'configure.in' and run 'autoconf' again. kio/misc/kssld/Makefile.am:21: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kio/misc/kssld/Makefile.am:25: warning: variable 'kded_kssld_la_SOURCES' is defined but no program or kio/misc/kssld/Makefile.am:25: library has 'kded_kssld_la' as canonical name (possible typo) kio/misc/kssld/Makefile.am:24: warning: variable 'kded_kssld_la_LIBADD' is defined but no program or kio/misc/kssld/Makefile.am:24: library has 'kded_kssld_la' as canonical name (possible typo) kio/misc/kssld/Makefile.am:23: warning: variable 'kded_kssld_la_LDFLAGS' is defined but no program or kio/misc/kssld/Makefile.am:23: library has 'kded_kssld_la' as canonical name (possible typo) kio/misc/kwalletd/Makefile.am:21: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kio/misc/kwalletd/Makefile.am:25: warning: variable 'kded_kwalletd_la_SOURCES' is defined but no program or kio/misc/kwalletd/Makefile.am:25: library has 'kded_kwalletd_la' as canonical name (possible typo) kio/misc/kwalletd/Makefile.am:24: warning: variable 'kded_kwalletd_la_LIBADD' is defined but no program or kio/misc/kwalletd/Makefile.am:24: library has 'kded_kwalletd_la' as canonical name (possible typo) kio/misc/kwalletd/Makefile.am:23: warning: variable 'kded_kwalletd_la_LDFLAGS' is defined but no program or kio/misc/kwalletd/Makefile.am:23: library has 'kded_kwalletd_la' as canonical name (possible typo) kio/tests/Makefile.am:78: error: Libtool library used but 'LIBTOOL' is undefined kio/tests/Makefile.am:78: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kio/tests/Makefile.am:78: to 'configure.in' and run 'aclocal' and 'autoconf' again. kio/tests/Makefile.am:78: If 'LT_INIT' is in 'configure.in', make sure kio/tests/Makefile.am:78: its definition is in aclocal's search path. kio/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kio/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kio/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kioslave/Makefile.am:19: error: include_bzip2 does not appear in AM_CONDITIONAL kioslave/bzip2/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/bzip2/Makefile.am:10: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kioslave/bzip2/Makefile.am:6: warning: variable 'kbzip2filter_la_SOURCES' is defined but no program or kioslave/bzip2/Makefile.am:6: library has 'kbzip2filter_la' as canonical name (possible typo) kioslave/bzip2/Makefile.am:7: warning: variable 'kbzip2filter_la_LIBADD' is defined but no program or kioslave/bzip2/Makefile.am:7: library has 'kbzip2filter_la' as canonical name (possible typo) kioslave/bzip2/Makefile.am:8: warning: variable 'kbzip2filter_la_LDFLAGS' is defined but no program or kioslave/bzip2/Makefile.am:8: library has 'kbzip2filter_la' as canonical name (possible typo) kioslave/file/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/file/Makefile.am:11: warning: variable 'kio_file_la_SOURCES' is defined but no program or kioslave/file/Makefile.am:11: library has 'kio_file_la' as canonical name (possible typo) kioslave/file/Makefile.am:12: warning: variable 'kio_file_la_LIBADD' is defined but no program or kioslave/file/Makefile.am:12: library has 'kio_file_la' as canonical name (possible typo) kioslave/file/Makefile.am:13: warning: variable 'kio_file_la_LDFLAGS' is defined but no program or kioslave/file/Makefile.am:13: library has 'kio_file_la' as canonical name (possible typo) kioslave/ftp/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/ftp/Makefile.am:7: warning: variable 'kio_ftp_la_SOURCES' is defined but no program or kioslave/ftp/Makefile.am:7: library has 'kio_ftp_la' as canonical name (possible typo) kioslave/ftp/Makefile.am:8: warning: variable 'kio_ftp_la_LIBADD' is defined but no program or kioslave/ftp/Makefile.am:8: library has 'kio_ftp_la' as canonical name (possible typo) kioslave/ftp/Makefile.am:9: warning: variable 'kio_ftp_la_LDFLAGS' is defined but no program or kioslave/ftp/Makefile.am:9: library has 'kio_ftp_la' as canonical name (possible typo) kioslave/gzip/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/gzip/Makefile.am:11: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined kioslave/gzip/Makefile.am:7: warning: variable 'kgzipfilter_la_SOURCES' is defined but no program or kioslave/gzip/Makefile.am:7: library has 'kgzipfilter_la' as canonical name (possible typo) kioslave/gzip/Makefile.am:8: warning: variable 'kgzipfilter_la_LIBADD' is defined but no program or kioslave/gzip/Makefile.am:8: library has 'kgzipfilter_la' as canonical name (possible typo) kioslave/gzip/Makefile.am:9: warning: variable 'kgzipfilter_la_LDFLAGS' is defined but no program or kioslave/gzip/Makefile.am:9: library has 'kgzipfilter_la' as canonical name (possible typo) kioslave/http/Makefile.am:13: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kioslave/http/Makefile.am:14: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/http/Makefile.am:21: warning: variable 'kio_http_cache_cleaner_la_SOURCES' is defined but no program or kioslave/http/Makefile.am:21: library has 'kio_http_cache_cleaner_la' as canonical name (possible typo) kioslave/http/Makefile.am:16: warning: variable 'kio_http_la_SOURCES' is defined but no program or kioslave/http/Makefile.am:16: library has 'kio_http_la' as canonical name (possible typo) kioslave/http/Makefile.am:22: warning: variable 'kio_http_cache_cleaner_la_LIBADD' is defined but no program or kioslave/http/Makefile.am:22: library has 'kio_http_cache_cleaner_la' as canonical name (possible typo) kioslave/http/Makefile.am:18: warning: variable 'kio_http_la_LIBADD' is defined but no program or kioslave/http/Makefile.am:18: library has 'kio_http_la' as canonical name (possible typo) kioslave/http/Makefile.am:19: warning: variable 'kio_http_la_LDFLAGS' is defined but no program or kioslave/http/Makefile.am:19: library has 'kio_http_la' as canonical name (possible typo) kioslave/http/Makefile.am:23: warning: variable 'kio_http_cache_cleaner_la_LDFLAGS' is defined but no program or kioslave/http/Makefile.am:23: library has 'kio_http_cache_cleaner_la' as canonical name (possible typo) kioslave/http/kcookiejar/Makefile.am:10: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined kioslave/http/kcookiejar/Makefile.am:11: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/http/kcookiejar/Makefile.am:18: warning: variable 'kded_kcookiejar_la_SOURCES' is defined but no program or kioslave/http/kcookiejar/Makefile.am:18: library has 'kded_kcookiejar_la' as canonical name (possible typo) kioslave/http/kcookiejar/Makefile.am:13: warning: variable 'kcookiejar_la_SOURCES' is defined but no program or kioslave/http/kcookiejar/Makefile.am:13: library has 'kcookiejar_la' as canonical name (possible typo) kioslave/http/kcookiejar/Makefile.am:16: warning: variable 'kcookiejar_la_LIBADD' is defined but no program or kioslave/http/kcookiejar/Makefile.am:16: library has 'kcookiejar_la' as canonical name (possible typo) kioslave/http/kcookiejar/Makefile.am:21: warning: variable 'kded_kcookiejar_la_LIBADD' is defined but no program or kioslave/http/kcookiejar/Makefile.am:21: library has 'kded_kcookiejar_la' as canonical name (possible typo) kioslave/http/kcookiejar/Makefile.am:20: warning: variable 'kded_kcookiejar_la_LDFLAGS' is defined but no program or kioslave/http/kcookiejar/Makefile.am:20: library has 'kded_kcookiejar_la' as canonical name (possible typo) kioslave/http/kcookiejar/Makefile.am:15: warning: variable 'kcookiejar_la_LDFLAGS' is defined but no program or kioslave/http/kcookiejar/Makefile.am:15: library has 'kcookiejar_la' as canonical name (possible typo) kioslave/http/kcookiejar/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kioslave/http/kcookiejar/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kioslave/http/kcookiejar/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kioslave/metainfo/Makefile.am:8: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kioslave/metainfo/Makefile.am:10: warning: variable 'kio_metainfo_la_SOURCES' is defined but no program or kioslave/metainfo/Makefile.am:10: library has 'kio_metainfo_la' as canonical name (possible typo) kioslave/metainfo/Makefile.am:11: warning: variable 'kio_metainfo_la_LIBADD' is defined but no program or kioslave/metainfo/Makefile.am:11: library has 'kio_metainfo_la' as canonical name (possible typo) kioslave/metainfo/Makefile.am:12: warning: variable 'kio_metainfo_la_LDFLAGS' is defined but no program or kioslave/metainfo/Makefile.am:12: library has 'kio_metainfo_la' as canonical name (possible typo) kjs/Makefile.am:47: error: include_VERSION_SCRIPT does not appear in AM_CONDITIONAL kjs/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined kjs/Makefile.am:22: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kjs/Makefile.am:22: to 'configure.in' and run 'aclocal' and 'autoconf' again. kjs/Makefile.am:22: If 'LT_INIT' is in 'configure.in', make sure kjs/Makefile.am:22: its definition is in aclocal's search path. kjs/Makefile.am: error: C++ source seen but 'CXX' is undefined kjs/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kjs/Makefile.am: to 'configure.in' and run 'autoconf' again. kmdi/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined kmdi/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kmdi/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. kmdi/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure kmdi/Makefile.am:5: its definition is in aclocal's search path. kmdi/Makefile.am: error: C++ source seen but 'CXX' is undefined kmdi/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kmdi/Makefile.am: to 'configure.in' and run 'autoconf' again. kmdi/kmdi/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kmdi/kmdi/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kmdi/kmdi/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kmdi/kmdi/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kmdi/kmdi/Makefile.am:3: its definition is in aclocal's search path. kmdi/kmdi/Makefile.am: error: C++ source seen but 'CXX' is undefined kmdi/kmdi/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kmdi/kmdi/Makefile.am: to 'configure.in' and run 'autoconf' again. kmdi/test/Makefile.am: error: C++ source seen but 'CXX' is undefined kmdi/test/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kmdi/test/Makefile.am: to 'configure.in' and run 'autoconf' again. knewstuff/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined knewstuff/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' knewstuff/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. knewstuff/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure knewstuff/Makefile.am:5: its definition is in aclocal's search path. knewstuff/Makefile.am: error: C++ source seen but 'CXX' is undefined knewstuff/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' knewstuff/Makefile.am: to 'configure.in' and run 'autoconf' again. knewstuff/Makefile.am:32: error: 'kde_conf_DATA' is used but 'kde_confdir' is undefined kparts/Makefile.am:15: error: Libtool library used but 'LIBTOOL' is undefined kparts/Makefile.am:15: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kparts/Makefile.am:15: to 'configure.in' and run 'aclocal' and 'autoconf' again. kparts/Makefile.am:15: If 'LT_INIT' is in 'configure.in', make sure kparts/Makefile.am:15: its definition is in aclocal's search path. kparts/Makefile.am: error: C++ source seen but 'CXX' is undefined kparts/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kparts/Makefile.am: to 'configure.in' and run 'autoconf' again. kparts/tests/Makefile.am:17: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kparts/tests/Makefile.am:27: error: Libtool library used but 'LIBTOOL' is undefined kparts/tests/Makefile.am:27: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kparts/tests/Makefile.am:27: to 'configure.in' and run 'aclocal' and 'autoconf' again. kparts/tests/Makefile.am:27: If 'LT_INIT' is in 'configure.in', make sure kparts/tests/Makefile.am:27: its definition is in aclocal's search path. kparts/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kparts/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kparts/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kparts/tests/Makefile.am:19: warning: variable 'libspellcheckplugin_la_SOURCES' is defined but no program or kparts/tests/Makefile.am:19: library has 'libspellcheckplugin_la' as canonical name (possible typo) kparts/tests/Makefile.am:23: warning: variable 'libnotepadpart_la_SOURCES' is defined but no program or kparts/tests/Makefile.am:23: library has 'libnotepadpart_la' as canonical name (possible typo) kparts/tests/Makefile.am:20: warning: variable 'libspellcheckplugin_la_LIBADD' is defined but no program or kparts/tests/Makefile.am:20: library has 'libspellcheckplugin_la' as canonical name (possible typo) kparts/tests/Makefile.am:24: warning: variable 'libnotepadpart_la_LIBADD' is defined but no program or kparts/tests/Makefile.am:24: library has 'libnotepadpart_la' as canonical name (possible typo) kparts/tests/Makefile.am:21: warning: variable 'libspellcheckplugin_la_LDFLAGS' is defined but no program or kparts/tests/Makefile.am:21: library has 'libspellcheckplugin_la' as canonical name (possible typo) kparts/tests/Makefile.am:25: warning: variable 'libnotepadpart_la_LDFLAGS' is defined but no program or kparts/tests/Makefile.am:25: library has 'libnotepadpart_la' as canonical name (possible typo) kresources/Makefile.am:31: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kresources/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined kresources/Makefile.am:5: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kresources/Makefile.am:5: to 'configure.in' and run 'aclocal' and 'autoconf' again. kresources/Makefile.am:5: If 'LT_INIT' is in 'configure.in', make sure kresources/Makefile.am:5: its definition is in aclocal's search path. kresources/Makefile.am: error: C++ source seen but 'CXX' is undefined kresources/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kresources/Makefile.am: to 'configure.in' and run 'autoconf' again. kresources/Makefile.am:44: error: 'xdg_apps_DATA' is used but 'xdg_appsdir' is undefined kresources/Makefile.am:33: warning: variable 'kcm_kresources_la_SOURCES' is defined but no program or kresources/Makefile.am:33: library has 'kcm_kresources_la' as canonical name (possible typo) kresources/Makefile.am:35: warning: variable 'kcm_kresources_la_LIBADD' is defined but no program or kresources/Makefile.am:35: library has 'kcm_kresources_la' as canonical name (possible typo) kresources/Makefile.am:34: warning: variable 'kcm_kresources_la_LDFLAGS' is defined but no program or kresources/Makefile.am:34: library has 'kcm_kresources_la' as canonical name (possible typo) kspell2/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined kspell2/Makefile.am:4: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kspell2/Makefile.am:4: to 'configure.in' and run 'aclocal' and 'autoconf' again. kspell2/Makefile.am:4: If 'LT_INIT' is in 'configure.in', make sure kspell2/Makefile.am:4: its definition is in aclocal's search path. kspell2/Makefile.am: error: C++ source seen but 'CXX' is undefined kspell2/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kspell2/Makefile.am: to 'configure.in' and run 'autoconf' again. kspell2/plugins/Makefile.am:1: error: include_aspell_plugin does not appear in AM_CONDITIONAL kspell2/plugins/Makefile.am:5: error: include_hspell_plugin does not appear in AM_CONDITIONAL kspell2/plugins/aspell/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kspell2/plugins/aspell/Makefile.am:11: warning: variable 'kspell_aspell_la_SOURCES' is defined but no program or kspell2/plugins/aspell/Makefile.am:11: library has 'kspell_aspell_la' as canonical name (possible typo) kspell2/plugins/aspell/Makefile.am:14: warning: variable 'kspell_aspell_la_LIBADD' is defined but no program or kspell2/plugins/aspell/Makefile.am:14: library has 'kspell_aspell_la' as canonical name (possible typo) kspell2/plugins/aspell/Makefile.am:13: warning: variable 'kspell_aspell_la_LDFLAGS' is defined but no program or kspell2/plugins/aspell/Makefile.am:13: library has 'kspell_aspell_la' as canonical name (possible typo) kspell2/plugins/hspell/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kspell2/plugins/hspell/Makefile.am:11: warning: variable 'kspell_hspell_la_SOURCES' is defined but no program or kspell2/plugins/hspell/Makefile.am:11: library has 'kspell_hspell_la' as canonical name (possible typo) kspell2/plugins/hspell/Makefile.am:14: warning: variable 'kspell_hspell_la_LIBADD' is defined but no program or kspell2/plugins/hspell/Makefile.am:14: library has 'kspell_hspell_la' as canonical name (possible typo) kspell2/plugins/hspell/Makefile.am:13: warning: variable 'kspell_hspell_la_LDFLAGS' is defined but no program or kspell2/plugins/hspell/Makefile.am:13: library has 'kspell_hspell_la' as canonical name (possible typo) kspell2/plugins/ispell/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kspell2/plugins/ispell/Makefile.am:11: warning: variable 'kspell_ispell_la_SOURCES' is defined but no program or kspell2/plugins/ispell/Makefile.am:11: library has 'kspell_ispell_la' as canonical name (possible typo) kspell2/plugins/ispell/Makefile.am:21: warning: variable 'kspell_ispell_la_LIBADD' is defined but no program or kspell2/plugins/ispell/Makefile.am:21: library has 'kspell_ispell_la' as canonical name (possible typo) kspell2/plugins/ispell/Makefile.am:20: warning: variable 'kspell_ispell_la_LDFLAGS' is defined but no program or kspell2/plugins/ispell/Makefile.am:20: library has 'kspell_ispell_la' as canonical name (possible typo) kspell2/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kspell2/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kspell2/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kspell2/ui/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined kspell2/ui/Makefile.am:3: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kspell2/ui/Makefile.am:3: to 'configure.in' and run 'aclocal' and 'autoconf' again. kspell2/ui/Makefile.am:3: If 'LT_INIT' is in 'configure.in', make sure kspell2/ui/Makefile.am:3: its definition is in aclocal's search path. kspell2/ui/Makefile.am: error: C++ source seen but 'CXX' is undefined kspell2/ui/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kspell2/ui/Makefile.am: to 'configure.in' and run 'autoconf' again. kstyles/highcolor/Makefile.am:25: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined kstyles/highcolor/Makefile.am:28: warning: variable 'highcolor_la_SOURCES' is defined but no program or kstyles/highcolor/Makefile.am:28: library has 'highcolor_la' as canonical name (possible typo) kstyles/highcolor/Makefile.am:27: warning: variable 'highcolor_la_LIBADD' is defined but no program or kstyles/highcolor/Makefile.am:27: library has 'highcolor_la' as canonical name (possible typo) kstyles/highcolor/Makefile.am:26: warning: variable 'highcolor_la_LDFLAGS' is defined but no program or kstyles/highcolor/Makefile.am:26: library has 'highcolor_la' as canonical name (possible typo) kstyles/highcontrast/Makefile.am:35: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined kstyles/highcontrast/Makefile.am:36: warning: variable 'highcontrast_la_SOURCES' is defined but no program or kstyles/highcontrast/Makefile.am:36: library has 'highcontrast_la' as canonical name (possible typo) kstyles/highcontrast/Makefile.am:38: warning: variable 'highcontrast_la_LIBADD' is defined but no program or kstyles/highcontrast/Makefile.am:38: library has 'highcontrast_la' as canonical name (possible typo) kstyles/highcontrast/Makefile.am:37: warning: variable 'highcontrast_la_LDFLAGS' is defined but no program or kstyles/highcontrast/Makefile.am:37: library has 'highcontrast_la' as canonical name (possible typo) kstyles/highcontrast/config/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kstyles/highcontrast/config/Makefile.am:7: warning: variable 'kstyle_highcontrast_config_la_SOURCES' is defined but no program or kstyles/highcontrast/config/Makefile.am:7: library has 'kstyle_highcontrast_config_la' as canonical name (possible typo) kstyles/highcontrast/config/Makefile.am:6: warning: variable 'kstyle_highcontrast_config_la_LIBADD' is defined but no program or kstyles/highcontrast/config/Makefile.am:6: library has 'kstyle_highcontrast_config_la' as canonical name (possible typo) kstyles/highcontrast/config/Makefile.am:5: warning: variable 'kstyle_highcontrast_config_la_LDFLAGS' is defined but no program or kstyles/highcontrast/config/Makefile.am:5: library has 'kstyle_highcontrast_config_la' as canonical name (possible typo) kstyles/keramik/Makefile.am:7: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined kstyles/keramik/Makefile.am: error: C++ source seen but 'CXX' is undefined kstyles/keramik/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kstyles/keramik/Makefile.am: to 'configure.in' and run 'autoconf' again. kstyles/keramik/Makefile.am:10: warning: variable 'keramik_la_SOURCES' is defined but no program or kstyles/keramik/Makefile.am:10: library has 'keramik_la' as canonical name (possible typo) kstyles/keramik/Makefile.am:9: warning: variable 'keramik_la_LIBADD' is defined but no program or kstyles/keramik/Makefile.am:9: library has 'keramik_la' as canonical name (possible typo) kstyles/keramik/Makefile.am:8: warning: variable 'keramik_la_LDFLAGS' is defined but no program or kstyles/keramik/Makefile.am:8: library has 'keramik_la' as canonical name (possible typo) kstyles/klegacy/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined kstyles/klegacy/Makefile.am:4: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kstyles/klegacy/Makefile.am:4: to 'configure.in' and run 'aclocal' and 'autoconf' again. kstyles/klegacy/Makefile.am:4: If 'LT_INIT' is in 'configure.in', make sure kstyles/klegacy/Makefile.am:4: its definition is in aclocal's search path. kstyles/klegacy/Makefile.am: error: C++ source seen but 'CXX' is undefined kstyles/klegacy/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kstyles/klegacy/Makefile.am: to 'configure.in' and run 'autoconf' again. kstyles/kthemestyle/Makefile.am:25: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined kstyles/kthemestyle/Makefile.am:28: warning: variable 'kthemestyle_la_SOURCES' is defined but no program or kstyles/kthemestyle/Makefile.am:28: library has 'kthemestyle_la' as canonical name (possible typo) kstyles/kthemestyle/Makefile.am:27: warning: variable 'kthemestyle_la_LIBADD' is defined but no program or kstyles/kthemestyle/Makefile.am:27: library has 'kthemestyle_la' as canonical name (possible typo) kstyles/kthemestyle/Makefile.am:26: warning: variable 'kthemestyle_la_LDFLAGS' is defined but no program or kstyles/kthemestyle/Makefile.am:26: library has 'kthemestyle_la' as canonical name (possible typo) kstyles/light/Makefile.am:25: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined kstyles/light/Makefile.am:28: warning: variable 'light_la_SOURCES' is defined but no program or kstyles/light/Makefile.am:28: library has 'light_la' as canonical name (possible typo) kstyles/light/Makefile.am:27: warning: variable 'light_la_LIBADD' is defined but no program or kstyles/light/Makefile.am:27: library has 'light_la' as canonical name (possible typo) kstyles/light/Makefile.am:26: warning: variable 'light_la_LDFLAGS' is defined but no program or kstyles/light/Makefile.am:26: library has 'light_la' as canonical name (possible typo) kstyles/plastik/Makefile.am:16: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined kstyles/plastik/Makefile.am:17: warning: variable 'plastik_la_SOURCES' is defined but no program or kstyles/plastik/Makefile.am:17: library has 'plastik_la' as canonical name (possible typo) kstyles/plastik/Makefile.am:19: warning: variable 'plastik_la_LIBADD' is defined but no program or kstyles/plastik/Makefile.am:19: library has 'plastik_la' as canonical name (possible typo) kstyles/plastik/Makefile.am:18: warning: variable 'plastik_la_LDFLAGS' is defined but no program or kstyles/plastik/Makefile.am:18: library has 'plastik_la' as canonical name (possible typo) kstyles/plastik/config/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined kstyles/plastik/config/Makefile.am:7: warning: variable 'kstyle_plastik_config_la_SOURCES' is defined but no program or kstyles/plastik/config/Makefile.am:7: library has 'kstyle_plastik_config_la' as canonical name (possible typo) kstyles/plastik/config/Makefile.am:6: warning: variable 'kstyle_plastik_config_la_LIBADD' is defined but no program or kstyles/plastik/config/Makefile.am:6: library has 'kstyle_plastik_config_la' as canonical name (possible typo) kstyles/plastik/config/Makefile.am:5: warning: variable 'kstyle_plastik_config_la_LDFLAGS' is defined but no program or kstyles/plastik/config/Makefile.am:5: library has 'kstyle_plastik_config_la' as canonical name (possible typo) kstyles/themes/Makefile.am:11: error: 'kde_conf_DATA' is used but 'kde_confdir' is undefined kstyles/utils/installtheme/Makefile.am: error: C++ source seen but 'CXX' is undefined kstyles/utils/installtheme/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kstyles/utils/installtheme/Makefile.am: to 'configure.in' and run 'autoconf' again. kstyles/web/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined kstyles/web/Makefile.am:2: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kstyles/web/Makefile.am:2: to 'configure.in' and run 'aclocal' and 'autoconf' again. kstyles/web/Makefile.am:2: If 'LT_INIT' is in 'configure.in', make sure kstyles/web/Makefile.am:2: its definition is in aclocal's search path. kstyles/web/Makefile.am: error: C++ source seen but 'CXX' is undefined kstyles/web/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kstyles/web/Makefile.am: to 'configure.in' and run 'autoconf' again. kunittest/Makefile.am:19: error: Libtool library used but 'LIBTOOL' is undefined kunittest/Makefile.am:19: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kunittest/Makefile.am:19: to 'configure.in' and run 'aclocal' and 'autoconf' again. kunittest/Makefile.am:19: If 'LT_INIT' is in 'configure.in', make sure kunittest/Makefile.am:19: its definition is in aclocal's search path. kunittest/Makefile.am: error: C++ source seen but 'CXX' is undefined kunittest/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kunittest/Makefile.am: to 'configure.in' and run 'autoconf' again. kutils/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined kutils/Makefile.am:4: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kutils/Makefile.am:4: to 'configure.in' and run 'aclocal' and 'autoconf' again. kutils/Makefile.am:4: If 'LT_INIT' is in 'configure.in', make sure kutils/Makefile.am:4: its definition is in aclocal's search path. kutils/Makefile.am: error: C++ source seen but 'CXX' is undefined kutils/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kutils/Makefile.am: to 'configure.in' and run 'autoconf' again. kutils/Makefile.am:24: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined kutils/ksettings/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined kutils/ksettings/Makefile.am:2: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kutils/ksettings/Makefile.am:2: to 'configure.in' and run 'aclocal' and 'autoconf' again. kutils/ksettings/Makefile.am:2: If 'LT_INIT' is in 'configure.in', make sure kutils/ksettings/Makefile.am:2: its definition is in aclocal's search path. kutils/ksettings/Makefile.am: error: C++ source seen but 'CXX' is undefined kutils/ksettings/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kutils/ksettings/Makefile.am: to 'configure.in' and run 'autoconf' again. kutils/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kutils/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kutils/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kwallet/backend/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined kwallet/backend/Makefile.am:4: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kwallet/backend/Makefile.am:4: to 'configure.in' and run 'aclocal' and 'autoconf' again. kwallet/backend/Makefile.am:4: If 'LT_INIT' is in 'configure.in', make sure kwallet/backend/Makefile.am:4: its definition is in aclocal's search path. kwallet/backend/Makefile.am: error: C++ source seen but 'CXX' is undefined kwallet/backend/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kwallet/backend/Makefile.am: to 'configure.in' and run 'autoconf' again. kwallet/backend/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kwallet/backend/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kwallet/backend/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. kwallet/client/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined kwallet/client/Makefile.am:4: The usual way to define 'LIBTOOL' is to add 'LT_INIT' kwallet/client/Makefile.am:4: to 'configure.in' and run 'aclocal' and 'autoconf' again. kwallet/client/Makefile.am:4: If 'LT_INIT' is in 'configure.in', make sure kwallet/client/Makefile.am:4: its definition is in aclocal's search path. kwallet/client/Makefile.am: error: C++ source seen but 'CXX' is undefined kwallet/client/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kwallet/client/Makefile.am: to 'configure.in' and run 'autoconf' again. kwallet/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined kwallet/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' kwallet/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. libkmid/Makefile.am:14: error: Libtool library used but 'LIBTOOL' is undefined libkmid/Makefile.am:14: The usual way to define 'LIBTOOL' is to add 'LT_INIT' libkmid/Makefile.am:14: to 'configure.in' and run 'aclocal' and 'autoconf' again. libkmid/Makefile.am:14: If 'LT_INIT' is in 'configure.in', make sure libkmid/Makefile.am:14: its definition is in aclocal's search path. libkmid/Makefile.am: error: C++ source seen but 'CXX' is undefined libkmid/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' libkmid/Makefile.am: to 'configure.in' and run 'autoconf' again. libkmid/tests/Makefile.am: error: C source seen but 'CC' is undefined libkmid/tests/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' libkmid/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. libkmid/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined libkmid/tests/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' libkmid/tests/Makefile.am: to 'configure.in' and run 'autoconf' again. libkscreensaver/Makefile.am:4: error: undefined_symbols_allowed does not appear in AM_CONDITIONAL libkscreensaver/Makefile.am:1: error: Libtool library used but 'LIBTOOL' is undefined libkscreensaver/Makefile.am:1: The usual way to define 'LIBTOOL' is to add 'LT_INIT' libkscreensaver/Makefile.am:1: to 'configure.in' and run 'aclocal' and 'autoconf' again. libkscreensaver/Makefile.am:1: If 'LT_INIT' is in 'configure.in', make sure libkscreensaver/Makefile.am:1: its definition is in aclocal's search path. libkscreensaver/Makefile.am: error: C++ source seen but 'CXX' is undefined libkscreensaver/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' libkscreensaver/Makefile.am: to 'configure.in' and run 'autoconf' again. libltdl/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined libltdl/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' libltdl/Makefile.am:6: to 'configure.in' and run 'aclocal' and 'autoconf' again. libltdl/Makefile.am:6: If 'LT_INIT' is in 'configure.in', make sure libltdl/Makefile.am:6: its definition is in aclocal's search path. libltdl/Makefile.am: error: C source seen but 'CC' is undefined libltdl/Makefile.am: The usual way to define 'CC' is to add 'AC_PROG_CC' libltdl/Makefile.am: to 'configure.in' and run 'autoconf' again. pics/Makefile.am:5: error: include_SVGICONS does not appear in AM_CONDITIONAL pics/Makefile.am: error: C++ source seen but 'CXX' is undefined pics/Makefile.am: The usual way to define 'CXX' is to add 'AC_PROG_CXX' pics/Makefile.am: to 'configure.in' and run 'autoconf' again. make: *** [dist] Error 1 ==> ERROR: A failure occurred in build(). Aborting...