Advertisement
schreiberstein

kdemod3-kdelibs3-autoconf-error

Jul 28th, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 135.69 KB | None | 0 0
  1. The PKGBUILD : #
  2. # KDEmod : a modular kde package set for arch linux
  3. #
  4. # This file is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published
  6. # by the Free Software Foundation; either version 2 of the License,
  7. # or (at your option) any later version.
  8. #
  9. # original author: Jan Mette (funkyou) <funkyou @ kdemod.ath.cx>
  10. # maintainer (i686): Jan Mette (funkyou) <funkyou @ kdemod.ath.cx>
  11. # maintainer (x86_64): Johannes Schriewer (dunkelstern) <dunkelstern @ kdemod.ath.cx>
  12. #
  13. # USE MAKEPKG-ARCH INSIDE THE _BUILDSYSTEM DIRECTORY!!!
  14.  
  15.  
  16.  
  17. #
  18. # EXTRA VARIABLES  (NEED TO DEFINED FIRST)
  19. # THIS BITES THE ARCH PACKAGING STANDARD, BUT EASES MAINTENANCE A LOT
  20. #
  21. _kdever=3.5.10
  22. _mirror="ftp.fu-berlin.de/pub/unix/X11/gui/kde"
  23. _origname=kdelibs
  24.  
  25.  
  26.  
  27. #
  28. # PACKAGE DATA
  29. #
  30. pkgname=${_origname}3
  31. pkgdesc="KDE Core Libraries"
  32. arch=(i686 x86_64)
  33.  
  34. pkgver=3.5.10
  35. pkgrel=3
  36.  
  37. url="http://www.kde.org"
  38. license="GPL"
  39.  
  40. groups=('kde3')
  41. provides=()
  42. conflicts=()
  43.  
  44. makedepends=('pkgconfig' 'cups')
  45. depends=('db>=4.6' 'libxslt' 'pcre' 'libart-lgpl' 'openexr'
  46.          'avahi>=0.6.20' 'jasper>=1.900.1' 'fam' 'bzip2' 'openssl' 'libidn' 'perl'
  47.      'aspell' 'acl' 'libtiff' 'qt3-enhanced>=3.3.8' 'ca-certificates')
  48.  
  49. source=(ftp://$_mirror/stable/$_kdever/src/$_origname-$pkgver.tar.bz2 \
  50.    
  51.     # avahi stuff
  52.     http://www.archlinux.org/~jgc/kdnssd-avahi-20060319.tar.bz2 \
  53.     fileshareset-wrapper.c \
  54.  
  55.     # main patchset
  56.     01-kdemod_tag.patch \
  57.     02-kip_rounded_selection_box.patch \
  58.     03-kip_rubberband.patch \
  59.     04-execute_feedback.patch \
  60.     05-applications_menu.patch \
  61.     06-inotify.patch \
  62.     07-kfile_beagle.patch \
  63.     08-konqueror_kwallet_simplify_string.patch \
  64.     09-no-progress-for-beagle-status-query.patch \
  65.     10-kde_menu.patch \
  66.     11-xinerama.patch \
  67.     12-kspell_spellcheck_default_utf8.patch \
  68.     13-konqueror_textcompletion_editor.patch \
  69.     14-flash_installer.patch \
  70.     15-kde4_applications.patch \
  71. #   17-kmenu-wine_entry.patch
  72.     # backports & bugfixes
  73.     fix-async_configfile.patch \
  74.     fix-gmail_html_elemtimpl.patch \
  75.     fix-kicker_crash.patch \
  76.     fix-kwallet.patch \
  77.     # Additional Arch patches
  78.     openssl.patch \
  79.     acinclude.patch \
  80.     kdelibs3-missing-include.patch \
  81.     # post-build stuff
  82.     post-build-kdeprintrc.patch)
  83.  
  84.  
  85.  
  86. #
  87. # START BUILDING
  88. #
  89. build() {
  90.  
  91.     #
  92.     # source the QT and KDE profile
  93.     #
  94.     [ "$QTDIR" = "" ] && source /etc/profile.d/qt3.sh
  95.     [ "$KDEDIR" = "" ] && source /etc/profile.d/kde3.sh
  96.    
  97.     #
  98.     # add patches
  99.     #
  100.     cd $startdir/src/$_origname-$pkgver
  101.  
  102.     msg "applying main patchset..."
  103. #   patch -p1 -i $startdir/src/01-kdemod_tag.patch || return 1
  104. #   patch -p1 -i $startdir/src/02-kip_rounded_selection_box.patch || return 1
  105. #   patch -p1 -i $startdir/src/03-kip_rubberband.patch || return 1
  106. #   patch -p1 -i $startdir/src/04-execute_feedback.patch || return 1
  107.     patch -p1 -i $startdir/src/05-applications_menu.patch || return 1
  108.     patch -p1 -i $startdir/src/06-inotify.patch || return 1
  109.     patch -p1 -i $startdir/src/07-kfile_beagle.patch || return 1
  110.     patch -p1 -i $startdir/src/08-konqueror_kwallet_simplify_string.patch || return 1
  111.     patch -p1 -i $startdir/src/09-no-progress-for-beagle-status-query.patch || return 1
  112.     patch -p1 -i $startdir/src/10-kde_menu.patch || return 1
  113.     patch -p1 -i $startdir/src/11-xinerama.patch || return 1
  114.     patch -p1 -i $startdir/src/12-kspell_spellcheck_default_utf8.patch || return 1
  115.     patch -p1 -i $startdir/src/13-konqueror_textcompletion_editor.patch || return 1
  116.     patch -p0 -i $startdir/src/14-flash_installer.patch || return 1
  117.     patch -p0 -i $startdir/src/15-kde4_applications.patch || return 1
  118.     # Does not work for everybody
  119. #   patch -p0 -i $startdir/src/17-kmenu-wine_entry.patch || return 1
  120.     msg "applying bugfixes..."
  121.     patch -p1 -i $startdir/src/fix-async_configfile.patch || return 1
  122.     patch -p1 -i $startdir/src/fix-kicker_crash.patch || return 1
  123.     patch -p1 -i $startdir/src/fix-kwallet.patch || return 1
  124.     patch -p1 -i $startdir/src/fix-gmail_html_elemtimpl.patch || return 1
  125.  
  126.     #patch -p4 -i $startdir/src/fix-post-3.5.9-kate_fix_pasting_of_multiline_blocks_r777286.patch || return 1
  127.     #patch -p4 -i $startdir/src/fix-post-3.5.9-kdeinit-new-startup.patch || return 1
  128.  
  129.     # Additional Arch patches
  130.     patch -p1 -i $startdir/src/openssl.patch || return 1
  131.     patch -p1 -i $startdir/src/acinclude.patch || return 1
  132.     patch -p0 -i $startdir/src/kdelibs3-missing-include.patch || return 1
  133.  
  134.     #
  135.     # replace dns-sd implementation with avahi implementation
  136.     #
  137.     msg "including avahi stuff..."
  138.     rm dnssd/*
  139.     cp -v -r ${startdir}/src/kdnssd-avahi-20060319/* dnssd/
  140.     rm -v dnssd/configure{,.in}
  141.     sed -i -e 's/kdnssd-avahi/dnssd/g' dnssd/configure.in.in
  142.     sed -i -e 's|ksocketaddress\.h|network/ksocketaddress\.h|' dnssd/publicservice.cpp
  143.    
  144.     # Fix for issues with newer automake versions, taken from Arch
  145.     sed -iautomake -e 's|automake\*1.10\*|automake\*1.1[0-5]\*|' admin/cvs.sh
  146.  
  147.     #
  148.     # needed for updated kdnssd-avahi and inotify patch
  149.     #
  150.  
  151.     msg "regenerating makefiles..."
  152.     UNSERMAKE=no
  153.     make -f admin/Makefile.common dist
  154.  
  155.     #
  156.     # configure
  157.     #
  158.     msg "starting configure & make..."
  159.     ./configure --prefix=/opt/kde --with-distribution="Arch Linux" --with-alsa \
  160.         --disable-dependency-tracking --disable-debug --without-arts \
  161.       --disable-dnotify --enable-inotify --enable-sendfile --x-libraries=/usr/share \
  162.          --without-lua-dir --without-lua-includes --without-lua-libraries \
  163.       --without-hspell --enable-gcc-hidden-visibility --enable-final \
  164.       --enable-new-ldflags LDFLAGS="${LDFLAGS} -L/opt/qt/lib"
  165.    
  166.     #
  167.     # build
  168.     #
  169.     make || return 1
  170.  
  171.     #
  172.     # install
  173.     #  
  174.     make DESTDIR=$startdir/pkg install || return 1
  175.  
  176.     #
  177.     # post installation
  178.     #  
  179.     # set cups as default printing system
  180.     cd $startdir/pkg/opt/kde/share/config
  181.     patch -Np0 -i $startdir/src/post-build-kdeprintrc.patch || return 1
  182.  
  183.     # fix fileshareset suid stuff
  184.     mv $startdir/pkg/opt/kde/bin/fileshareset $startdir/pkg/opt/kde/bin/fileshareset.pl
  185.     gcc -Wall $startdir/src/fileshareset-wrapper.c -o $startdir/pkg/opt/kde/bin/fileshareset
  186.     chmod 0755 $startdir/pkg/opt/kde/bin/fileshareset.pl
  187.     chmod 4755 $startdir/pkg/opt/kde/bin/fileshareset
  188.     rm $startdir/pkg/opt/kde/bin/filesharelist
  189.     cd $startdir/pkg/opt/kde/bin/
  190.     ln -s fileshareset.pl filesharelist
  191.  
  192.     # Remove KDEui UI files (provided in separate package)
  193.     rm -rf $startdir/pkg/opt/kde/share/apps/kdeui/about
  194.  
  195.     # cert bundle seems to be hardcoded
  196.     # link it to the one from ca-certificates
  197.     rm -f $pkgdir/opt/kde/share/apps/kssl/ca-bundle.crt
  198.     ln -sf /etc/ssl/certs/ca-certificates.crt $pkgdir/opt/kde/share/apps/kssl/ca-bundle.crt
  199. }
  200. ---------------------------------------------------------------------------------
  201. ---------------------------------------------------------------------------------
  202. ---------------------------------------------------------------------------------
  203. ---------------------------------------------------------------------------------
  204. ---------------------------------------------------------------------------------
  205. The issue :
  206. [alex@schreiberstein kdelibs]$ makepkg
  207. ==> Making package: kdelibs3 3.5.10-3 (Sat Jul 28 23:05:18 UTC 2012)
  208. ==> Checking runtime dependencies...
  209. ==> Checking buildtime dependencies...
  210. ==> Retrieving Sources...
  211.   -> Found kdelibs-3.5.10.tar.bz2
  212.   -> Found kdnssd-avahi-20060319.tar.bz2
  213.   -> Found fileshareset-wrapper.c
  214.   -> Found 01-kdemod_tag.patch
  215.   -> Found 02-kip_rounded_selection_box.patch
  216.   -> Found 03-kip_rubberband.patch
  217.   -> Found 04-execute_feedback.patch
  218.   -> Found 05-applications_menu.patch
  219.   -> Found 06-inotify.patch
  220.   -> Found 07-kfile_beagle.patch
  221.   -> Found 08-konqueror_kwallet_simplify_string.patch
  222.   -> Found 09-no-progress-for-beagle-status-query.patch
  223.   -> Found 10-kde_menu.patch
  224.   -> Found 11-xinerama.patch
  225.   -> Found 12-kspell_spellcheck_default_utf8.patch
  226.   -> Found 13-konqueror_textcompletion_editor.patch
  227.   -> Found 14-flash_installer.patch
  228.   -> Found 15-kde4_applications.patch
  229.   -> Found fix-async_configfile.patch
  230.   -> Found fix-gmail_html_elemtimpl.patch
  231.   -> Found fix-kicker_crash.patch
  232.   -> Found fix-kwallet.patch
  233.   -> Found openssl.patch
  234.   -> Found acinclude.patch
  235.   -> Found kdelibs3-missing-include.patch
  236.   -> Found post-build-kdeprintrc.patch
  237. ==> Validating source files with md5sums...
  238.     kdelibs-3.5.10.tar.bz2 ... Passed
  239.     kdnssd-avahi-20060319.tar.bz2 ... Passed
  240.     fileshareset-wrapper.c ... Passed
  241.     01-kdemod_tag.patch ... Passed
  242.     02-kip_rounded_selection_box.patch ... Passed
  243.     03-kip_rubberband.patch ... Passed
  244.     04-execute_feedback.patch ... Passed
  245.     05-applications_menu.patch ... Passed
  246.     06-inotify.patch ... Passed
  247.     07-kfile_beagle.patch ... Passed
  248.     08-konqueror_kwallet_simplify_string.patch ... Passed
  249.     09-no-progress-for-beagle-status-query.patch ... Passed
  250.     10-kde_menu.patch ... Passed
  251.     11-xinerama.patch ... Passed
  252.     12-kspell_spellcheck_default_utf8.patch ... Passed
  253.     13-konqueror_textcompletion_editor.patch ... Passed
  254.     14-flash_installer.patch ... Passed
  255.     15-kde4_applications.patch ... Passed
  256.     fix-async_configfile.patch ... Passed
  257.     fix-gmail_html_elemtimpl.patch ... Passed
  258.     fix-kicker_crash.patch ... Passed
  259.     fix-kwallet.patch ... Passed
  260.     openssl.patch ... Passed
  261.     acinclude.patch ... Passed
  262.     kdelibs3-missing-include.patch ... Passed
  263.     post-build-kdeprintrc.patch ... Passed
  264. ==> Extracting Sources...
  265.   -> Extracting kdelibs-3.5.10.tar.bz2 with bsdtar
  266.   -> Extracting kdnssd-avahi-20060319.tar.bz2 with bsdtar
  267. ==> Entering fakeroot environment...
  268. ==> Starting build()...
  269. ==> applying main patchset...
  270. patching file kded/Makefile.am
  271. patching file kded/Makefile.in
  272. Hunk #2 succeeded at 1173 with fuzz 1 (offset -1 lines).
  273. patching file kded/kde-applications.menu
  274. patching file kio/kio/configure.in.in
  275. patching file kio/kio/kdirwatch.cpp
  276. patching file kio/kfile/kfiledialog.cpp
  277. patching file kio/kfile/kurlbar.cpp
  278. patching file khtml/html/html_formimpl.cpp
  279. patching file kio/kio/netaccess.cpp
  280. patching file kded/kbuildsycoca.cpp
  281. patching file kdecore/kstartupinfo.cpp
  282. Hunk #1 succeeded at 1109 (offset 4 lines).
  283. Hunk #2 succeeded at 1121 (offset 4 lines).
  284. Hunk #3 succeeded at 1153 (offset 4 lines).
  285. Hunk #4 succeeded at 1175 (offset 4 lines).
  286. Hunk #5 succeeded at 1207 (offset 4 lines).
  287. Hunk #6 succeeded at 1254 (offset 4 lines).
  288. Hunk #7 succeeded at 1428 (offset 4 lines).
  289. patching file kdecore/kstartupinfo.h
  290. patching file kdecore/netwm.cpp
  291. patching file kdecore/netwm_def.h
  292. patching file kio/kio/krun.cpp
  293. Hunk #9 succeeded at 644 (offset 6 lines).
  294. Hunk #10 succeeded at 664 (offset 6 lines).
  295. Hunk #11 succeeded at 683 (offset 6 lines).
  296. Hunk #12 succeeded at 744 (offset 6 lines).
  297. Hunk #13 succeeded at 780 (offset 6 lines).
  298. Hunk #14 succeeded at 794 (offset 6 lines).
  299. Hunk #15 succeeded at 837 (offset 6 lines).
  300. Hunk #16 succeeded at 893 (offset 6 lines).
  301. Hunk #17 succeeded at 994 (offset 6 lines).
  302. Hunk #18 succeeded at 1287 (offset 6 lines).
  303. Hunk #19 succeeded at 1302 (offset 6 lines).
  304. patching file kio/kio/krun.h
  305. patching file kdeui/ksconfig.cpp
  306. patching file kdeui/ksyntaxhighlighter.cpp
  307. patching file kdeui/kcombobox.cpp
  308. patching file kdeui/kcombobox.h
  309. patching file khtml/khtmlview.cpp
  310. Hunk #1 succeeded at 3061 (offset 4 lines).
  311. patching file khtml/khtmlview.h
  312. patching file khtml/rendering/render_form.cpp
  313. patching file khtml/rendering/render_form.h
  314. patching file khtml/misc/knsplugininstaller.cpp
  315. patching file khtml/misc/Makefile.am
  316. patching file khtml/misc/knsplugininstaller.h
  317. patching file khtml/rendering/render_frames.cpp
  318. patching file kio/kio/kservice.cpp
  319. Hunk #2 succeeded at 134 (offset 3 lines).
  320. Hunk #3 succeeded at 199 (offset 4 lines).
  321. Hunk #4 succeeded at 250 (offset -1 lines).
  322. Hunk #5 succeeded at 267 (offset -4 lines).
  323. patching file kio/kio/kservice.cpp
  324. Hunk #1 succeeded at 201 (offset 4 lines).
  325. patching file kio/kio/kservice.cpp
  326. Hunk #1 succeeded at 268 with fuzz 2 (offset -3 lines).
  327. ==> applying bugfixes...
  328. patching file kdecore/kconfigbackend.cpp
  329. patching file kdecore/kconfigbackend.h
  330. patching file kdecore/ksavefile.cpp
  331. patching file kdecore/ksavefile.h
  332. patching file kio/kio/kdirlister.cpp
  333. patching file kio/misc/kwalletd/kwalletd.cpp
  334. patching file khtml/html/html_elementimpl.cpp
  335. Hunk #1 succeeded at 565 (offset 4 lines).
  336. patching file kio/kssl/kopenssl.cc
  337. Hunk #2 succeeded at 409 (offset -26 lines).
  338. Hunk #3 succeeded at 578 (offset -26 lines).
  339. Hunk #4 succeeded at 966 (offset -26 lines).
  340. Hunk #5 succeeded at 984 (offset -26 lines).
  341. patching file kio/kssl/kopenssl.h
  342. patching file kio/kssl/ksmimecrypto.cc
  343. patching file kio/kssl/ksslcertificate.cc
  344. patching file admin/acinclude.m4.in
  345. patching file kdeprint/cups/cupsdconf2/cups-util.c
  346. ==> including avahi stuff...
  347. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/Makefile.am' -> 'dnssd/Makefile.am'
  348. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/Makefile.in' -> 'dnssd/Makefile.in'
  349. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/README' -> 'dnssd/README'
  350. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/acinclude.m4' -> 'dnssd/acinclude.m4'
  351. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/aclocal.m4' -> 'dnssd/aclocal.m4'
  352. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin' -> 'dnssd/admin'
  353. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/config.sub' -> 'dnssd/admin/config.sub'
  354. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/bcheck.pl' -> 'dnssd/admin/bcheck.pl'
  355. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/missing' -> 'dnssd/admin/missing'
  356. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/depcomp' -> 'dnssd/admin/depcomp'
  357. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/cvs.sh' -> 'dnssd/admin/cvs.sh'
  358. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/mkinstalldirs' -> 'dnssd/admin/mkinstalldirs'
  359. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/debianrules' -> 'dnssd/admin/debianrules'
  360. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/libtool.m4.in' -> 'dnssd/admin/libtool.m4.in'
  361. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/oldinclude.m4.in' -> 'dnssd/admin/oldinclude.m4.in'
  362. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/configure.in.bot.end' -> 'dnssd/admin/configure.in.bot.end'
  363. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/Doxyfile.global' -> 'dnssd/admin/Doxyfile.global'
  364. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/Doxyfile.am' -> 'dnssd/admin/Doxyfile.am'
  365. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/compile' -> 'dnssd/admin/compile'
  366. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/ltmain.sh' -> 'dnssd/admin/ltmain.sh'
  367. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/configure.in.min' -> 'dnssd/admin/configure.in.min'
  368. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/doxygen.sh' -> 'dnssd/admin/doxygen.sh'
  369. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/detect-autoconf.pl' -> 'dnssd/admin/detect-autoconf.pl'
  370. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/config.guess' -> 'dnssd/admin/config.guess'
  371. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/deps.am' -> 'dnssd/admin/deps.am'
  372. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/install-sh' -> 'dnssd/admin/install-sh'
  373. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/config.pl' -> 'dnssd/admin/config.pl'
  374. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/pkg.m4.in' -> 'dnssd/admin/pkg.m4.in'
  375. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/acinclude.m4.in' -> 'dnssd/admin/acinclude.m4.in'
  376. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/conf.change.pl' -> 'dnssd/admin/conf.change.pl'
  377. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/Makefile.common' -> 'dnssd/admin/Makefile.common'
  378. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/nmcheck' -> 'dnssd/admin/nmcheck'
  379. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/am_edit' -> 'dnssd/admin/am_edit'
  380. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/admin/ylwrap' -> 'dnssd/admin/ylwrap'
  381. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/config.h.in' -> 'dnssd/config.h.in'
  382. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure' -> 'dnssd/configure'
  383. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure.files' -> 'dnssd/configure.files'
  384. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure.in' -> 'dnssd/configure.in'
  385. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/configure.in.in' -> 'dnssd/configure.in.in'
  386. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/domainbrowser.cpp' -> 'dnssd/domainbrowser.cpp'
  387. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/domainbrowser.h' -> 'dnssd/domainbrowser.h'
  388. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/kcm_kdnssd.kcfg' -> 'dnssd/kcm_kdnssd.kcfg'
  389. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/publicservice.cpp' -> 'dnssd/publicservice.cpp'
  390. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/publicservice.h' -> 'dnssd/publicservice.h'
  391. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/query.cpp' -> 'dnssd/query.cpp'
  392. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/query.h' -> 'dnssd/query.h'
  393. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/remoteservice.cpp' -> 'dnssd/remoteservice.cpp'
  394. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/remoteservice.h' -> 'dnssd/remoteservice.h'
  395. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/responder.cpp' -> 'dnssd/responder.cpp'
  396. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/responder.h' -> 'dnssd/responder.h'
  397. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/sdevent.h' -> 'dnssd/sdevent.h'
  398. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebase.cpp' -> 'dnssd/servicebase.cpp'
  399. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebase.h' -> 'dnssd/servicebase.h'
  400. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebrowser.cpp' -> 'dnssd/servicebrowser.cpp'
  401. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/servicebrowser.h' -> 'dnssd/servicebrowser.h'
  402. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/settings.kcfgc' -> 'dnssd/settings.kcfgc'
  403. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/stamp-h.in' -> 'dnssd/stamp-h.in'
  404. '/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdnssd-avahi-20060319/subdirs' -> 'dnssd/subdirs'
  405. removed 'dnssd/configure'
  406. removed 'dnssd/configure.in'
  407. ==> regenerating makefiles...
  408. *** automake (GNU automake) 1.12.2 found.
  409. *** Creating acinclude.m4
  410. make[1]: Entering directory `/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdelibs-3.5.10'
  411. make[1]: Nothing to be done for `acinclude.m4'.
  412. make[1]: Leaving directory `/home/alex/kdemod3-testing/kdemod/kdelibs/src/kdelibs-3.5.10'
  413. cat: Binary: No such file or directory
  414. cat: file: No such file or directory
  415. cat: matches: No such file or directory
  416. *** Creating configure.files
  417. cat: Binary: No such file or directory
  418. cat: file: No such file or directory
  419. cat: (standard: No such file or directory
  420. cat: input): No such file or directory
  421. cat: matches: No such file or directory
  422. acinclude.m4:3725: warning: the serial number must appear before any macro definition
  423. acinclude.m4:3770: warning: the serial number must appear before any macro definition
  424. acinclude.m4:3815: warning: the serial number must appear before any macro definition
  425. acinclude.m4:6023: warning: the serial number must appear before any macro definition
  426. configure.in: error: no proper invocation of AM_INIT_AUTOMAKE was found.
  427. configure.in: You should verify that configure.in invokes AM_INIT_AUTOMAKE,
  428. configure.in: that aclocal.m4 is present in the top-level directory,
  429. configure.in: and that aclocal.m4 was recently regenerated (using aclocal)
  430. arts/Makefile.am:1: error: include_ARTS does not appear in AM_CONDITIONAL
  431. arts/kde/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined
  432. arts/kde/Makefile.am:4:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  433. arts/kde/Makefile.am:4:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  434. arts/kde/Makefile.am:4:   If 'LT_INIT' is in 'configure.in', make sure
  435. arts/kde/Makefile.am:4:   its definition is in aclocal's search path.
  436. arts/kde/Makefile.am: error: required file './depcomp' not found
  437. arts/kde/Makefile.am:   'automake --add-missing' can install 'depcomp'
  438. /usr/share/automake-1.12/am/depend2.am: error: am__fastdepCXX does not appear in AM_CONDITIONAL
  439. /usr/share/automake-1.12/am/depend2.am:   The usual way to define 'am__fastdepCXX' is to add 'AC_PROG_CXX'
  440. /usr/share/automake-1.12/am/depend2.am:   to 'configure.in' and run 'aclocal' and 'autoconf' again
  441. /usr/share/automake-1.12/am/depend2.am: error: AMDEP does not appear in AM_CONDITIONAL
  442. /usr/share/automake-1.12/am/depend2.am:   The usual way to define 'AMDEP' is to add one of the compiler tests
  443. /usr/share/automake-1.12/am/depend2.am:     AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC, AC_PROG_OBJCXX,
  444. /usr/share/automake-1.12/am/depend2.am:     AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC
  445. /usr/share/automake-1.12/am/depend2.am:   to 'configure.in' and run 'aclocal' and 'autoconf' again
  446. arts/kde/Makefile.am: error: C++ source seen but 'CXX' is undefined
  447. arts/kde/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  448. arts/kde/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  449. arts/kde/mcop-dcop/Makefile.am:6: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  450. arts/kde/mcop-dcop/Makefile.am:8: warning: variable 'kmcop_la_SOURCES' is defined but no program or
  451. arts/kde/mcop-dcop/Makefile.am:8: library has 'kmcop_la' as canonical name (possible typo)
  452. arts/kde/mcop-dcop/Makefile.am:9: warning: variable 'kmcop_la_LIBADD' is defined but no program or
  453. arts/kde/mcop-dcop/Makefile.am:9: library has 'kmcop_la' as canonical name (possible typo)
  454. arts/kde/mcop-dcop/Makefile.am:10: warning: variable 'kmcop_la_LDFLAGS' is defined but no program or
  455. arts/kde/mcop-dcop/Makefile.am:10: library has 'kmcop_la' as canonical name (possible typo)
  456. arts/knotify/Makefile.am:9: error: include_ARTS does not appear in AM_CONDITIONAL
  457. arts/knotify/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  458. arts/knotify/Makefile.am: error: C++ source seen but 'CXX' is undefined
  459. arts/knotify/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  460. arts/knotify/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  461. arts/knotify/Makefile.am:8: warning: variable 'knotify_la_SOURCES' is defined but no program or
  462. arts/knotify/Makefile.am:8: library has 'knotify_la' as canonical name (possible typo)
  463. arts/knotify/Makefile.am:10: warning: variable 'knotify_la_LIBADD' is defined but no program or
  464. arts/knotify/Makefile.am:10: library has 'knotify_la' as canonical name (possible typo)
  465. arts/knotify/Makefile.am:12: warning: variable 'knotify_la_LDFLAGS' is defined but no program or
  466. arts/knotify/Makefile.am:12: library has 'knotify_la' as canonical name (possible typo)
  467. arts/message/Makefile.am: error: C++ source seen but 'CXX' is undefined
  468. arts/message/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  469. arts/message/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  470. dcop/KDE-ICE/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  471. dcop/KDE-ICE/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  472. dcop/KDE-ICE/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  473. dcop/KDE-ICE/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  474. dcop/KDE-ICE/Makefile.am:5:   its definition is in aclocal's search path.
  475. /usr/share/automake-1.12/am/depend2.am: error: am__fastdepCC does not appear in AM_CONDITIONAL
  476. /usr/share/automake-1.12/am/depend2.am:   The usual way to define 'am__fastdepCC' is to add 'AC_PROG_CC'
  477. /usr/share/automake-1.12/am/depend2.am:   to 'configure.in' and run 'aclocal' and 'autoconf' again
  478. dcop/KDE-ICE/Makefile.am: error: C source seen but 'CC' is undefined
  479. dcop/KDE-ICE/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  480. dcop/KDE-ICE/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  481. dcop/Makefile.am:46: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  482. dcop/Makefile.am:32: error: Libtool library used but 'LIBTOOL' is undefined
  483. dcop/Makefile.am:32:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  484. dcop/Makefile.am:32:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  485. dcop/Makefile.am:32:   If 'LT_INIT' is in 'configure.in', make sure
  486. dcop/Makefile.am:32:   its definition is in aclocal's search path.
  487. dcop/Makefile.am: error: C source seen but 'CC' is undefined
  488. dcop/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  489. dcop/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  490. dcop/Makefile.am: error: C++ source seen but 'CXX' is undefined
  491. dcop/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  492. dcop/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  493. dcop/Makefile.am:48: warning: variable 'dcopserver_la_SOURCES' is defined but no program or
  494. dcop/Makefile.am:48: library has 'dcopserver_la' as canonical name (possible typo)
  495. dcop/Makefile.am:49: warning: variable 'dcopserver_la_LIBADD' is defined but no program or
  496. dcop/Makefile.am:49: library has 'dcopserver_la' as canonical name (possible typo)
  497. dcop/Makefile.am:47: warning: variable 'dcopserver_la_LDFLAGS' is defined but no program or
  498. dcop/Makefile.am:47: library has 'dcopserver_la' as canonical name (possible typo)
  499. dcop/client/Makefile.am: error: C source seen but 'CC' is undefined
  500. dcop/client/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  501. dcop/client/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  502. dcop/client/Makefile.am: error: C++ source seen but 'CXX' is undefined
  503. dcop/client/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  504. dcop/client/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  505. dcop/dcopidl/Makefile.am: error: C++ source seen but 'CXX' is undefined
  506. dcop/dcopidl/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  507. dcop/dcopidl/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  508. dcop/dcopidl2cpp/Makefile.am: error: C++ source seen but 'CXX' is undefined
  509. dcop/dcopidl2cpp/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  510. dcop/dcopidl2cpp/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  511. dcop/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  512. dcop/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  513. dcop/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  514. dnssd/Makefile.am:9: error: Libtool library used but 'LIBTOOL' is undefined
  515. dnssd/Makefile.am:9:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  516. dnssd/Makefile.am:9:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  517. dnssd/Makefile.am:9:   If 'LT_INIT' is in 'configure.in', make sure
  518. dnssd/Makefile.am:9:   its definition is in aclocal's search path.
  519. dnssd/Makefile.am: error: C++ source seen but 'CXX' is undefined
  520. dnssd/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  521. dnssd/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  522. interfaces/kimproxy/library/Makefile.am:17: error: Libtool library used but 'LIBTOOL' is undefined
  523. interfaces/kimproxy/library/Makefile.am:17:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  524. interfaces/kimproxy/library/Makefile.am:17:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  525. interfaces/kimproxy/library/Makefile.am:17:   If 'LT_INIT' is in 'configure.in', make sure
  526. interfaces/kimproxy/library/Makefile.am:17:   its definition is in aclocal's search path.
  527. interfaces/kimproxy/library/Makefile.am: error: C++ source seen but 'CXX' is undefined
  528. interfaces/kimproxy/library/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  529. interfaces/kimproxy/library/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  530. interfaces/kmediaplayer/Makefile.am:1: error: include_ARTS does not appear in AM_CONDITIONAL
  531. interfaces/kmediaplayer/Makefile.am:8: error: Libtool library used but 'LIBTOOL' is undefined
  532. interfaces/kmediaplayer/Makefile.am:8:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  533. interfaces/kmediaplayer/Makefile.am:8:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  534. interfaces/kmediaplayer/Makefile.am:8:   If 'LT_INIT' is in 'configure.in', make sure
  535. interfaces/kmediaplayer/Makefile.am:8:   its definition is in aclocal's search path.
  536. interfaces/kmediaplayer/Makefile.am: error: C++ source seen but 'CXX' is undefined
  537. interfaces/kmediaplayer/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  538. interfaces/kmediaplayer/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  539. interfaces/kmediaplayer/Makefile.am:18: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined
  540. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  541. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:6: warning: variable 'kfileaudiopreview_la_SOURCES' is defined but no program or
  542. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:6: library has 'kfileaudiopreview_la' as canonical name (possible typo)
  543. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:8: warning: variable 'kfileaudiopreview_la_LIBADD' is defined but no program or
  544. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:8: library has 'kfileaudiopreview_la' as canonical name (possible typo)
  545. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:7: warning: variable 'kfileaudiopreview_la_LDFLAGS' is defined but no program or
  546. interfaces/kmediaplayer/kfileaudiopreview/Makefile.am:7: library has 'kfileaudiopreview_la' as canonical name (possible typo)
  547. interfaces/kscript/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined
  548. interfaces/kscript/Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  549. interfaces/kscript/Makefile.am:6:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  550. interfaces/kscript/Makefile.am:6:   If 'LT_INIT' is in 'configure.in', make sure
  551. interfaces/kscript/Makefile.am:6:   its definition is in aclocal's search path.
  552. interfaces/kscript/Makefile.am: error: C++ source seen but 'CXX' is undefined
  553. interfaces/kscript/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  554. interfaces/kscript/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  555. interfaces/kscript/sample/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  556. interfaces/kscript/sample/Makefile.am:5: warning: variable 'libshellscript_la_SOURCES' is defined but no program or
  557. interfaces/kscript/sample/Makefile.am:5: library has 'libshellscript_la' as canonical name (possible typo)
  558. interfaces/kscript/sample/Makefile.am:7: warning: variable 'libshellscript_la_LIBADD' is defined but no program or
  559. interfaces/kscript/sample/Makefile.am:7: library has 'libshellscript_la' as canonical name (possible typo)
  560. interfaces/kscript/sample/Makefile.am:6: warning: variable 'libshellscript_la_LDFLAGS' is defined but no program or
  561. interfaces/kscript/sample/Makefile.am:6: library has 'libshellscript_la' as canonical name (possible typo)
  562. interfaces/kspeech/Makefile.am:7: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined
  563. interfaces/ktexteditor/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  564. interfaces/ktexteditor/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  565. interfaces/ktexteditor/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  566. interfaces/ktexteditor/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  567. interfaces/ktexteditor/Makefile.am:3:   its definition is in aclocal's search path.
  568. interfaces/ktexteditor/Makefile.am: error: C++ source seen but 'CXX' is undefined
  569. interfaces/ktexteditor/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  570. interfaces/ktexteditor/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  571. interfaces/terminal/test/Makefile.am: error: C++ source seen but 'CXX' is undefined
  572. interfaces/terminal/test/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  573. interfaces/terminal/test/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  574. kab/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  575. kab/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  576. kab/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  577. kab/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  578. kab/Makefile.am:3:   its definition is in aclocal's search path.
  579. kab/Makefile.am: error: C++ source seen but 'CXX' is undefined
  580. kab/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  581. kab/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  582. kabc/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  583. kabc/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  584. kabc/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  585. kabc/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  586. kabc/Makefile.am:22:   its definition is in aclocal's search path.
  587. kabc/Makefile.am: error: C++ source seen but 'CXX' is undefined
  588. kabc/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  589. kabc/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  590. kabc/formats/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  591. kabc/formats/Makefile.am:5: warning: variable 'kabcformat_binary_la_SOURCES' is defined but no program or
  592. kabc/formats/Makefile.am:5: library has 'kabcformat_binary_la' as canonical name (possible typo)
  593. kabc/formats/Makefile.am:8: warning: variable 'kabcformat_binary_la_LIBADD' is defined but no program or
  594. kabc/formats/Makefile.am:8: library has 'kabcformat_binary_la' as canonical name (possible typo)
  595. kabc/formats/Makefile.am:6: warning: variable 'kabcformat_binary_la_LDFLAGS' is defined but no program or
  596. kabc/formats/Makefile.am:6: library has 'kabcformat_binary_la' as canonical name (possible typo)
  597. kabc/plugins/dir/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  598. kabc/plugins/dir/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined
  599. kabc/plugins/dir/Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  600. kabc/plugins/dir/Makefile.am:6:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  601. kabc/plugins/dir/Makefile.am:6:   If 'LT_INIT' is in 'configure.in', make sure
  602. kabc/plugins/dir/Makefile.am:6:   its definition is in aclocal's search path.
  603. kabc/plugins/dir/Makefile.am: error: C++ source seen but 'CXX' is undefined
  604. kabc/plugins/dir/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  605. kabc/plugins/dir/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  606. kabc/plugins/dir/Makefile.am:13: warning: variable 'kabc_dir_la_SOURCES' is defined but no program or
  607. kabc/plugins/dir/Makefile.am:13: library has 'kabc_dir_la' as canonical name (possible typo)
  608. kabc/plugins/dir/Makefile.am:15: warning: variable 'kabc_dir_la_LIBADD' is defined but no program or
  609. kabc/plugins/dir/Makefile.am:15: library has 'kabc_dir_la' as canonical name (possible typo)
  610. kabc/plugins/dir/Makefile.am:14: warning: variable 'kabc_dir_la_LDFLAGS' is defined but no program or
  611. kabc/plugins/dir/Makefile.am:14: library has 'kabc_dir_la' as canonical name (possible typo)
  612. kabc/plugins/evolution/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  613. kabc/plugins/evolution/Makefile.am:8: warning: variable 'kabc_evo_la_SOURCES' is defined but no program or
  614. kabc/plugins/evolution/Makefile.am:8: library has 'kabc_evo_la' as canonical name (possible typo)
  615. kabc/plugins/evolution/Makefile.am:11: warning: variable 'kabc_evo_la_LIBADD' is defined but no program or
  616. kabc/plugins/evolution/Makefile.am:11: library has 'kabc_evo_la' as canonical name (possible typo)
  617. kabc/plugins/evolution/Makefile.am:10: warning: variable 'kabc_evo_la_LDFLAGS' is defined but no program or
  618. kabc/plugins/evolution/Makefile.am:10: library has 'kabc_evo_la' as canonical name (possible typo)
  619. kabc/plugins/file/Makefile.am:13: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  620. kabc/plugins/file/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined
  621. kabc/plugins/file/Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  622. kabc/plugins/file/Makefile.am:6:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  623. kabc/plugins/file/Makefile.am:6:   If 'LT_INIT' is in 'configure.in', make sure
  624. kabc/plugins/file/Makefile.am:6:   its definition is in aclocal's search path.
  625. kabc/plugins/file/Makefile.am: error: C++ source seen but 'CXX' is undefined
  626. kabc/plugins/file/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  627. kabc/plugins/file/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  628. kabc/plugins/file/Makefile.am:14: warning: variable 'kabc_file_la_SOURCES' is defined but no program or
  629. kabc/plugins/file/Makefile.am:14: library has 'kabc_file_la' as canonical name (possible typo)
  630. kabc/plugins/file/Makefile.am:16: warning: variable 'kabc_file_la_LIBADD' is defined but no program or
  631. kabc/plugins/file/Makefile.am:16: library has 'kabc_file_la' as canonical name (possible typo)
  632. kabc/plugins/file/Makefile.am:15: warning: variable 'kabc_file_la_LDFLAGS' is defined but no program or
  633. kabc/plugins/file/Makefile.am:15: library has 'kabc_file_la' as canonical name (possible typo)
  634. kabc/plugins/ldapkio/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  635. kabc/plugins/ldapkio/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined
  636. kabc/plugins/ldapkio/Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  637. kabc/plugins/ldapkio/Makefile.am:6:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  638. kabc/plugins/ldapkio/Makefile.am:6:   If 'LT_INIT' is in 'configure.in', make sure
  639. kabc/plugins/ldapkio/Makefile.am:6:   its definition is in aclocal's search path.
  640. kabc/plugins/ldapkio/Makefile.am: error: C++ source seen but 'CXX' is undefined
  641. kabc/plugins/ldapkio/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  642. kabc/plugins/ldapkio/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  643. kabc/plugins/ldapkio/Makefile.am:13: warning: variable 'kabc_ldapkio_la_SOURCES' is defined but no program or
  644. kabc/plugins/ldapkio/Makefile.am:13: library has 'kabc_ldapkio_la' as canonical name (possible typo)
  645. kabc/plugins/ldapkio/Makefile.am:15: warning: variable 'kabc_ldapkio_la_LIBADD' is defined but no program or
  646. kabc/plugins/ldapkio/Makefile.am:15: library has 'kabc_ldapkio_la' as canonical name (possible typo)
  647. kabc/plugins/ldapkio/Makefile.am:14: warning: variable 'kabc_ldapkio_la_LDFLAGS' is defined but no program or
  648. kabc/plugins/ldapkio/Makefile.am:14: library has 'kabc_ldapkio_la' as canonical name (possible typo)
  649. kabc/plugins/net/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  650. kabc/plugins/net/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined
  651. kabc/plugins/net/Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  652. kabc/plugins/net/Makefile.am:6:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  653. kabc/plugins/net/Makefile.am:6:   If 'LT_INIT' is in 'configure.in', make sure
  654. kabc/plugins/net/Makefile.am:6:   its definition is in aclocal's search path.
  655. kabc/plugins/net/Makefile.am: error: C++ source seen but 'CXX' is undefined
  656. kabc/plugins/net/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  657. kabc/plugins/net/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  658. kabc/plugins/net/Makefile.am:13: warning: variable 'kabc_net_la_SOURCES' is defined but no program or
  659. kabc/plugins/net/Makefile.am:13: library has 'kabc_net_la' as canonical name (possible typo)
  660. kabc/plugins/net/Makefile.am:15: warning: variable 'kabc_net_la_LIBADD' is defined but no program or
  661. kabc/plugins/net/Makefile.am:15: library has 'kabc_net_la' as canonical name (possible typo)
  662. kabc/plugins/net/Makefile.am:14: warning: variable 'kabc_net_la_LDFLAGS' is defined but no program or
  663. kabc/plugins/net/Makefile.am:14: library has 'kabc_net_la' as canonical name (possible typo)
  664. kabc/plugins/sql/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  665. kabc/plugins/sql/Makefile.am:8: warning: variable 'kabc_sql_la_SOURCES' is defined but no program or
  666. kabc/plugins/sql/Makefile.am:8: library has 'kabc_sql_la' as canonical name (possible typo)
  667. kabc/plugins/sql/Makefile.am:11: warning: variable 'kabc_sql_la_LIBADD' is defined but no program or
  668. kabc/plugins/sql/Makefile.am:11: library has 'kabc_sql_la' as canonical name (possible typo)
  669. kabc/plugins/sql/Makefile.am:10: warning: variable 'kabc_sql_la_LDFLAGS' is defined but no program or
  670. kabc/plugins/sql/Makefile.am:10: library has 'kabc_sql_la' as canonical name (possible typo)
  671. kabc/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  672. kabc/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  673. kabc/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  674. kabc/vcard/Makefile.am:7: error: Libtool library used but 'LIBTOOL' is undefined
  675. kabc/vcard/Makefile.am:7:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  676. kabc/vcard/Makefile.am:7:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  677. kabc/vcard/Makefile.am:7:   If 'LT_INIT' is in 'configure.in', make sure
  678. kabc/vcard/Makefile.am:7:   its definition is in aclocal's search path.
  679. kabc/vcard/Makefile.am: error: C++ source seen but 'CXX' is undefined
  680. kabc/vcard/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  681. kabc/vcard/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  682. kabc/vcardparser/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  683. kabc/vcardparser/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  684. kabc/vcardparser/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  685. kabc/vcardparser/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  686. kabc/vcardparser/Makefile.am:3:   its definition is in aclocal's search path.
  687. kabc/vcardparser/Makefile.am: error: C++ source seen but 'CXX' is undefined
  688. kabc/vcardparser/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  689. kabc/vcardparser/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  690. kate/data/Makefile.am:1: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  691. kate/interfaces/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  692. kate/interfaces/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  693. kate/interfaces/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  694. kate/interfaces/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  695. kate/interfaces/Makefile.am:3:   its definition is in aclocal's search path.
  696. kate/interfaces/Makefile.am: error: C++ source seen but 'CXX' is undefined
  697. kate/interfaces/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  698. kate/interfaces/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  699. kate/part/Makefile.am:1: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  700. kate/part/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  701. kate/part/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  702. kate/part/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  703. kate/part/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  704. kate/part/Makefile.am:3:   its definition is in aclocal's search path.
  705. kate/part/Makefile.am: error: C++ source seen but 'CXX' is undefined
  706. kate/part/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  707. kate/part/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  708. kate/part/Makefile.am:17: warning: variable 'libkatepart_la_SOURCES' is defined but no program or
  709. kate/part/Makefile.am:17: library has 'libkatepart_la' as canonical name (possible typo)
  710. kate/part/Makefile.am:21: warning: variable 'libkatepart_la_LDFLAGS' is defined but no program or
  711. kate/part/Makefile.am:21: library has 'libkatepart_la' as canonical name (possible typo)
  712. kate/plugins/autobookmarker/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  713. kate/plugins/autobookmarker/Makefile.am:11: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  714. kate/plugins/autobookmarker/Makefile.am:7: warning: variable 'ktexteditor_autobookmarker_la_SOURCES' is defined but no program or
  715. kate/plugins/autobookmarker/Makefile.am:7: library has 'ktexteditor_autobookmarker_la' as canonical name (possible typo)
  716. kate/plugins/autobookmarker/Makefile.am:8: warning: variable 'ktexteditor_autobookmarker_la_LIBADD' is defined but no program or
  717. kate/plugins/autobookmarker/Makefile.am:8: library has 'ktexteditor_autobookmarker_la' as canonical name (possible typo)
  718. kate/plugins/autobookmarker/Makefile.am:9: warning: variable 'ktexteditor_autobookmarker_la_LDFLAGS' is defined but no program or
  719. kate/plugins/autobookmarker/Makefile.am:9: library has 'ktexteditor_autobookmarker_la' as canonical name (possible typo)
  720. kate/plugins/insertfile/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  721. kate/plugins/insertfile/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  722. kate/plugins/insertfile/Makefile.am:7: warning: variable 'ktexteditor_insertfile_la_SOURCES' is defined but no program or
  723. kate/plugins/insertfile/Makefile.am:7: library has 'ktexteditor_insertfile_la' as canonical name (possible typo)
  724. kate/plugins/insertfile/Makefile.am:8: warning: variable 'ktexteditor_insertfile_la_LIBADD' is defined but no program or
  725. kate/plugins/insertfile/Makefile.am:8: library has 'ktexteditor_insertfile_la' as canonical name (possible typo)
  726. kate/plugins/insertfile/Makefile.am:9: warning: variable 'ktexteditor_insertfile_la_LDFLAGS' is defined but no program or
  727. kate/plugins/insertfile/Makefile.am:9: library has 'ktexteditor_insertfile_la' as canonical name (possible typo)
  728. kate/plugins/isearch/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  729. kate/plugins/isearch/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  730. kate/plugins/isearch/Makefile.am:7: warning: variable 'ktexteditor_isearch_la_SOURCES' is defined but no program or
  731. kate/plugins/isearch/Makefile.am:7: library has 'ktexteditor_isearch_la' as canonical name (possible typo)
  732. kate/plugins/isearch/Makefile.am:8: warning: variable 'ktexteditor_isearch_la_LIBADD' is defined but no program or
  733. kate/plugins/isearch/Makefile.am:8: library has 'ktexteditor_isearch_la' as canonical name (possible typo)
  734. kate/plugins/isearch/Makefile.am:9: warning: variable 'ktexteditor_isearch_la_LDFLAGS' is defined but no program or
  735. kate/plugins/isearch/Makefile.am:9: library has 'ktexteditor_isearch_la' as canonical name (possible typo)
  736. kate/plugins/kdatatool/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  737. kate/plugins/kdatatool/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  738. kate/plugins/kdatatool/Makefile.am:7: warning: variable 'ktexteditor_kdatatool_la_SOURCES' is defined but no program or
  739. kate/plugins/kdatatool/Makefile.am:7: library has 'ktexteditor_kdatatool_la' as canonical name (possible typo)
  740. kate/plugins/kdatatool/Makefile.am:8: warning: variable 'ktexteditor_kdatatool_la_LIBADD' is defined but no program or
  741. kate/plugins/kdatatool/Makefile.am:8: library has 'ktexteditor_kdatatool_la' as canonical name (possible typo)
  742. kate/plugins/kdatatool/Makefile.am:9: warning: variable 'ktexteditor_kdatatool_la_LDFLAGS' is defined but no program or
  743. kate/plugins/kdatatool/Makefile.am:9: library has 'ktexteditor_kdatatool_la' as canonical name (possible typo)
  744. kate/plugins/wordcompletion/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  745. kate/plugins/wordcompletion/Makefile.am:14: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  746. kate/plugins/wordcompletion/Makefile.am:7: warning: variable 'ktexteditor_docwordcompletion_la_SOURCES' is defined but no program or
  747. kate/plugins/wordcompletion/Makefile.am:7: library has 'ktexteditor_docwordcompletion_la' as canonical name (possible typo)
  748. kate/plugins/wordcompletion/Makefile.am:8: warning: variable 'ktexteditor_docwordcompletion_la_LIBADD' is defined but no program or
  749. kate/plugins/wordcompletion/Makefile.am:8: library has 'ktexteditor_docwordcompletion_la' as canonical name (possible typo)
  750. kate/plugins/wordcompletion/Makefile.am:9: warning: variable 'ktexteditor_docwordcompletion_la_LDFLAGS' is defined but no program or
  751. kate/plugins/wordcompletion/Makefile.am:9: library has 'ktexteditor_docwordcompletion_la' as canonical name (possible typo)
  752. kcert/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  753. kcert/Makefile.am:5: warning: variable 'libkcertpart_la_SOURCES' is defined but no program or
  754. kcert/Makefile.am:5: library has 'libkcertpart_la' as canonical name (possible typo)
  755. kcert/Makefile.am:8: warning: variable 'libkcertpart_la_LIBADD' is defined but no program or
  756. kcert/Makefile.am:8: library has 'libkcertpart_la' as canonical name (possible typo)
  757. kcert/Makefile.am:7: warning: variable 'libkcertpart_la_LDFLAGS' is defined but no program or
  758. kcert/Makefile.am:7: library has 'libkcertpart_la' as canonical name (possible typo)
  759. kcert/Makefile.am:9: warning: variable 'libkcertpart_la_DEPENDENCIES' is defined but no program or
  760. kcert/Makefile.am:9: library has 'libkcertpart_la' as canonical name (possible typo)
  761. kcmshell/Makefile.am:26: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  762. kcmshell/Makefile.am:28: warning: variable 'kcmshell_la_SOURCES' is defined but no program or
  763. kcmshell/Makefile.am:28: library has 'kcmshell_la' as canonical name (possible typo)
  764. kcmshell/Makefile.am:29: warning: variable 'kcmshell_la_LIBADD' is defined but no program or
  765. kcmshell/Makefile.am:29: library has 'kcmshell_la' as canonical name (possible typo)
  766. kcmshell/Makefile.am:30: warning: variable 'kcmshell_la_LDFLAGS' is defined but no program or
  767. kcmshell/Makefile.am:30: library has 'kcmshell_la' as canonical name (possible typo)
  768. kconf_update/Makefile.am:23: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  769. kconf_update/Makefile.am:25: warning: variable 'kconf_update_la_SOURCES' is defined but no program or
  770. kconf_update/Makefile.am:25: library has 'kconf_update_la' as canonical name (possible typo)
  771. kconf_update/Makefile.am:26: warning: variable 'kconf_update_la_LIBADD' is defined but no program or
  772. kconf_update/Makefile.am:26: library has 'kconf_update_la' as canonical name (possible typo)
  773. kconf_update/Makefile.am:27: warning: variable 'kconf_update_la_LDFLAGS' is defined but no program or
  774. kconf_update/Makefile.am:27: library has 'kconf_update_la' as canonical name (possible typo)
  775. kdecore/Makefile.am:25: error: include_SVGICONS does not appear in AM_CONDITIONAL
  776. kdecore/Makefile.am:37: error: library used but 'RANLIB' is undefined
  777. kdecore/Makefile.am:37:   The usual way to define 'RANLIB' is to add 'AC_PROG_RANLIB'
  778. kdecore/Makefile.am:37:   to 'configure.in' and run 'autoconf' again.
  779. kdecore/Makefile.am:36: error: Libtool library used but 'LIBTOOL' is undefined
  780. kdecore/Makefile.am:36:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  781. kdecore/Makefile.am:36:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  782. kdecore/Makefile.am:36:   If 'LT_INIT' is in 'configure.in', make sure
  783. kdecore/Makefile.am:36:   its definition is in aclocal's search path.
  784. kdecore/Makefile.am: error: C source seen but 'CC' is undefined
  785. kdecore/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  786. kdecore/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  787. kdecore/Makefile.am: error: C++ source seen but 'CXX' is undefined
  788. kdecore/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  789. kdecore/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  790. kdecore/kconfig_compiler/Makefile.am: error: C++ source seen but 'CXX' is undefined
  791. kdecore/kconfig_compiler/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  792. kdecore/kconfig_compiler/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  793. kdecore/kconfig_compiler/example/Makefile.am: error: C++ source seen but 'CXX' is undefined
  794. kdecore/kconfig_compiler/example/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  795. kdecore/kconfig_compiler/example/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  796. kdecore/kconfig_compiler/tests/Makefile.am:57: error: Libtool library used but 'LIBTOOL' is undefined
  797. kdecore/kconfig_compiler/tests/Makefile.am:57:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  798. kdecore/kconfig_compiler/tests/Makefile.am:57:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  799. kdecore/kconfig_compiler/tests/Makefile.am:57:   If 'LT_INIT' is in 'configure.in', make sure
  800. kdecore/kconfig_compiler/tests/Makefile.am:57:   its definition is in aclocal's search path.
  801. kdecore/kconfig_compiler/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  802. kdecore/kconfig_compiler/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  803. kdecore/kconfig_compiler/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  804. kdecore/malloc/Makefile.am:27: error: Libtool library used but 'LIBTOOL' is undefined
  805. kdecore/malloc/Makefile.am:27:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  806. kdecore/malloc/Makefile.am:27:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  807. kdecore/malloc/Makefile.am:27:   If 'LT_INIT' is in 'configure.in', make sure
  808. kdecore/malloc/Makefile.am:27:   its definition is in aclocal's search path.
  809. kdecore/malloc/Makefile.am: error: C source seen but 'CC' is undefined
  810. kdecore/malloc/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  811. kdecore/malloc/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  812. kdecore/network/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  813. kdecore/network/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  814. kdecore/network/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  815. kdecore/network/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  816. kdecore/network/Makefile.am:5:   its definition is in aclocal's search path.
  817. kdecore/network/Makefile.am: error: C++ source seen but 'CXX' is undefined
  818. kdecore/network/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  819. kdecore/network/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  820. kdecore/svgicons/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  821. kdecore/svgicons/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  822. kdecore/svgicons/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  823. kdecore/svgicons/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  824. kdecore/svgicons/Makefile.am:3:   its definition is in aclocal's search path.
  825. kdecore/svgicons/Makefile.am: error: C++ source seen but 'CXX' is undefined
  826. kdecore/svgicons/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  827. kdecore/svgicons/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  828. kdecore/tests/Makefile.am:82: error: Libtool library used but 'LIBTOOL' is undefined
  829. kdecore/tests/Makefile.am:82:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  830. kdecore/tests/Makefile.am:82:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  831. kdecore/tests/Makefile.am:82:   If 'LT_INIT' is in 'configure.in', make sure
  832. kdecore/tests/Makefile.am:82:   its definition is in aclocal's search path.
  833. kdecore/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  834. kdecore/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  835. kdecore/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  836. kded/Makefile.am:23: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  837. kded/Makefile.am: error: C++ source seen but 'CXX' is undefined
  838. kded/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  839. kded/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  840. kded/Makefile.am:61: error: 'xdg_menu_DATA' is used but 'xdg_menudir' is undefined
  841. kded/Makefile.am:27: warning: variable 'kded_la_SOURCES' is defined but no program or
  842. kded/Makefile.am:27: library has 'kded_la' as canonical name (possible typo)
  843. kded/Makefile.am:31: warning: variable 'kbuildsycoca_la_SOURCES' is defined but no program or
  844. kded/Makefile.am:31: library has 'kbuildsycoca_la' as canonical name (possible typo)
  845. kded/Makefile.am:30: warning: variable 'kbuildsycoca_la_LIBADD' is defined but no program or
  846. kded/Makefile.am:30: library has 'kbuildsycoca_la' as canonical name (possible typo)
  847. kded/Makefile.am:26: warning: variable 'kded_la_LIBADD' is defined but no program or
  848. kded/Makefile.am:26: library has 'kded_la' as canonical name (possible typo)
  849. kded/Makefile.am:25: warning: variable 'kded_la_LDFLAGS' is defined but no program or
  850. kded/Makefile.am:25: library has 'kded_la' as canonical name (possible typo)
  851. kded/Makefile.am:29: warning: variable 'kbuildsycoca_la_LDFLAGS' is defined but no program or
  852. kded/Makefile.am:29: library has 'kbuildsycoca_la' as canonical name (possible typo)
  853. kded/test/Makefile.am:7: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  854. kded/test/Makefile.am:9: warning: variable 'kded_test_la_SOURCES' is defined but no program or
  855. kded/test/Makefile.am:9: library has 'kded_test_la' as canonical name (possible typo)
  856. kded/test/Makefile.am:12: warning: variable 'kded_test_la_LIBADD' is defined but no program or
  857. kded/test/Makefile.am:12: library has 'kded_test_la' as canonical name (possible typo)
  858. kded/test/Makefile.am:11: warning: variable 'kded_test_la_LDFLAGS' is defined but no program or
  859. kded/test/Makefile.am:11: library has 'kded_test_la' as canonical name (possible typo)
  860. kdefx/Makefile.am:25: error: Libtool library used but 'LIBTOOL' is undefined
  861. kdefx/Makefile.am:25:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  862. kdefx/Makefile.am:25:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  863. kdefx/Makefile.am:25:   If 'LT_INIT' is in 'configure.in', make sure
  864. kdefx/Makefile.am:25:   its definition is in aclocal's search path.
  865. kdefx/Makefile.am: error: C++ source seen but 'CXX' is undefined
  866. kdefx/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  867. kdefx/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  868. kdeprint/Makefile.am:3: error: include_cups_SUBDIR does not appear in AM_CONDITIONAL
  869. kdeprint/Makefile.am:103: error: library used but 'RANLIB' is undefined
  870. kdeprint/Makefile.am:103:   The usual way to define 'RANLIB' is to add 'AC_PROG_RANLIB'
  871. kdeprint/Makefile.am:103:   to 'configure.in' and run 'autoconf' again.
  872. kdeprint/Makefile.am:11: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  873. kdeprint/Makefile.am:18: error: Libtool library used but 'LIBTOOL' is undefined
  874. kdeprint/Makefile.am:18:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  875. kdeprint/Makefile.am:18:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  876. kdeprint/Makefile.am:18:   If 'LT_INIT' is in 'configure.in', make sure
  877. kdeprint/Makefile.am:18:   its definition is in aclocal's search path.
  878. kdeprint/Makefile.am: error: C source seen but 'CC' is undefined
  879. kdeprint/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  880. kdeprint/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  881. kdeprint/Makefile.am: error: C++ source seen but 'CXX' is undefined
  882. kdeprint/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  883. kdeprint/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  884. kdeprint/Makefile.am:13: warning: variable 'kded_kdeprintd_la_SOURCES' is defined but no program or
  885. kdeprint/Makefile.am:13: library has 'kded_kdeprintd_la' as canonical name (possible typo)
  886. kdeprint/Makefile.am:14: warning: variable 'kded_kdeprintd_la_LIBADD' is defined but no program or
  887. kdeprint/Makefile.am:14: library has 'kded_kdeprintd_la' as canonical name (possible typo)
  888. kdeprint/Makefile.am:15: warning: variable 'kded_kdeprintd_la_LDFLAGS' is defined but no program or
  889. kdeprint/Makefile.am:15: library has 'kded_kdeprintd_la' as canonical name (possible typo)
  890. kdeprint/cups/Makefile.am:7: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  891. kdeprint/cups/Makefile.am: error: C source seen but 'CC' is undefined
  892. kdeprint/cups/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  893. kdeprint/cups/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  894. kdeprint/cups/Makefile.am:9: warning: variable 'kdeprint_cups_la_SOURCES' is defined but no program or
  895. kdeprint/cups/Makefile.am:9: library has 'kdeprint_cups_la' as canonical name (possible typo)
  896. kdeprint/cups/Makefile.am:18: warning: variable 'kdeprint_cups_la_LIBADD' is defined but no program or
  897. kdeprint/cups/Makefile.am:18: library has 'kdeprint_cups_la' as canonical name (possible typo)
  898. kdeprint/cups/Makefile.am:17: warning: variable 'kdeprint_cups_la_LDFLAGS' is defined but no program or
  899. kdeprint/cups/Makefile.am:17: library has 'kdeprint_cups_la' as canonical name (possible typo)
  900. kdeprint/cups/cupsdconf2/Makefile.am:7: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  901. kdeprint/cups/cupsdconf2/Makefile.am:10: warning: variable 'cupsdconf_la_SOURCES' is defined but no program or
  902. kdeprint/cups/cupsdconf2/Makefile.am:10: library has 'cupsdconf_la' as canonical name (possible typo)
  903. kdeprint/cups/cupsdconf2/Makefile.am:18: warning: variable 'cupsdconf_la_LIBADD' is defined but no program or
  904. kdeprint/cups/cupsdconf2/Makefile.am:18: library has 'cupsdconf_la' as canonical name (possible typo)
  905. kdeprint/cups/cupsdconf2/Makefile.am:17: warning: variable 'cupsdconf_la_LDFLAGS' is defined but no program or
  906. kdeprint/cups/cupsdconf2/Makefile.am:17: library has 'cupsdconf_la' as canonical name (possible typo)
  907. kdeprint/ext/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  908. kdeprint/ext/Makefile.am:7: warning: variable 'kdeprint_ext_la_SOURCES' is defined but no program or
  909. kdeprint/ext/Makefile.am:7: library has 'kdeprint_ext_la' as canonical name (possible typo)
  910. kdeprint/ext/Makefile.am:9: warning: variable 'kdeprint_ext_la_LIBADD' is defined but no program or
  911. kdeprint/ext/Makefile.am:9: library has 'kdeprint_ext_la' as canonical name (possible typo)
  912. kdeprint/ext/Makefile.am:8: warning: variable 'kdeprint_ext_la_LDFLAGS' is defined but no program or
  913. kdeprint/ext/Makefile.am:8: library has 'kdeprint_ext_la' as canonical name (possible typo)
  914. kdeprint/foomatic/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  915. kdeprint/foomatic/Makefile.am: error: C source seen but 'CC' is undefined
  916. kdeprint/foomatic/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  917. kdeprint/foomatic/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  918. kdeprint/foomatic/Makefile.am:5: warning: variable 'kdeprint_foomatic_la_SOURCES' is defined but no program or
  919. kdeprint/foomatic/Makefile.am:5: library has 'kdeprint_foomatic_la' as canonical name (possible typo)
  920. kdeprint/foomatic/Makefile.am:9: warning: variable 'kdeprint_foomatic_la_LIBADD' is defined but no program or
  921. kdeprint/foomatic/Makefile.am:9: library has 'kdeprint_foomatic_la' as canonical name (possible typo)
  922. kdeprint/foomatic/Makefile.am:8: warning: variable 'kdeprint_foomatic_la_LDFLAGS' is defined but no program or
  923. kdeprint/foomatic/Makefile.am:8: library has 'kdeprint_foomatic_la' as canonical name (possible typo)
  924. kdeprint/lpd/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  925. kdeprint/lpd/Makefile.am: error: C source seen but 'CC' is undefined
  926. kdeprint/lpd/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  927. kdeprint/lpd/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  928. kdeprint/lpd/Makefile.am:5: warning: variable 'kdeprint_lpd_la_SOURCES' is defined but no program or
  929. kdeprint/lpd/Makefile.am:5: library has 'kdeprint_lpd_la' as canonical name (possible typo)
  930. kdeprint/lpd/Makefile.am:8: warning: variable 'kdeprint_lpd_la_LIBADD' is defined but no program or
  931. kdeprint/lpd/Makefile.am:8: library has 'kdeprint_lpd_la' as canonical name (possible typo)
  932. kdeprint/lpd/Makefile.am:7: warning: variable 'kdeprint_lpd_la_LDFLAGS' is defined but no program or
  933. kdeprint/lpd/Makefile.am:7: library has 'kdeprint_lpd_la' as canonical name (possible typo)
  934. kdeprint/lpdunix/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  935. kdeprint/lpdunix/Makefile.am:7: warning: variable 'kdeprint_lpdunix_la_SOURCES' is defined but no program or
  936. kdeprint/lpdunix/Makefile.am:7: library has 'kdeprint_lpdunix_la' as canonical name (possible typo)
  937. kdeprint/lpdunix/Makefile.am:9: warning: variable 'kdeprint_lpdunix_la_LIBADD' is defined but no program or
  938. kdeprint/lpdunix/Makefile.am:9: library has 'kdeprint_lpdunix_la' as canonical name (possible typo)
  939. kdeprint/lpdunix/Makefile.am:8: warning: variable 'kdeprint_lpdunix_la_LDFLAGS' is defined but no program or
  940. kdeprint/lpdunix/Makefile.am:8: library has 'kdeprint_lpdunix_la' as canonical name (possible typo)
  941. kdeprint/lpr/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  942. kdeprint/lpr/Makefile.am: error: C source seen but 'CC' is undefined
  943. kdeprint/lpr/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  944. kdeprint/lpr/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  945. kdeprint/lpr/Makefile.am:7: warning: variable 'kdeprint_lpr_la_SOURCES' is defined but no program or
  946. kdeprint/lpr/Makefile.am:7: library has 'kdeprint_lpr_la' as canonical name (possible typo)
  947. kdeprint/lpr/Makefile.am:16: warning: variable 'kdeprint_lpr_la_LIBADD' is defined but no program or
  948. kdeprint/lpr/Makefile.am:16: library has 'kdeprint_lpr_la' as canonical name (possible typo)
  949. kdeprint/lpr/Makefile.am:15: warning: variable 'kdeprint_lpr_la_LDFLAGS' is defined but no program or
  950. kdeprint/lpr/Makefile.am:15: library has 'kdeprint_lpr_la' as canonical name (possible typo)
  951. kdeprint/management/Makefile.am:7: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  952. kdeprint/management/Makefile.am:6: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  953. kdeprint/management/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  954. kdeprint/management/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  955. kdeprint/management/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  956. kdeprint/management/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  957. kdeprint/management/Makefile.am:5:   its definition is in aclocal's search path.
  958. kdeprint/management/Makefile.am: error: C++ source seen but 'CXX' is undefined
  959. kdeprint/management/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  960. kdeprint/management/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  961. kdeprint/management/Makefile.am:32: warning: variable 'libkdeprint_management_module_la_SOURCES' is defined but no program or
  962. kdeprint/management/Makefile.am:32: library has 'libkdeprint_management_module_la' as canonical name (possible typo)
  963. kdeprint/management/Makefile.am:10: warning: variable 'kaddprinterwizard_la_SOURCES' is defined but no program or
  964. kdeprint/management/Makefile.am:10: library has 'kaddprinterwizard_la' as canonical name (possible typo)
  965. kdeprint/management/Makefile.am:11: warning: variable 'kaddprinterwizard_la_LIBADD' is defined but no program or
  966. kdeprint/management/Makefile.am:11: library has 'kaddprinterwizard_la' as canonical name (possible typo)
  967. kdeprint/management/Makefile.am:34: warning: variable 'libkdeprint_management_module_la_LIBADD' is defined but no program or
  968. kdeprint/management/Makefile.am:34: library has 'libkdeprint_management_module_la' as canonical name (possible typo)
  969. kdeprint/management/Makefile.am:33: warning: variable 'libkdeprint_management_module_la_LDFLAGS' is defined but no program or
  970. kdeprint/management/Makefile.am:33: library has 'libkdeprint_management_module_la' as canonical name (possible typo)
  971. kdeprint/management/Makefile.am:12: warning: variable 'kaddprinterwizard_la_LDFLAGS' is defined but no program or
  972. kdeprint/management/Makefile.am:12: library has 'kaddprinterwizard_la' as canonical name (possible typo)
  973. kdeprint/rlpr/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  974. kdeprint/rlpr/Makefile.am:7: warning: variable 'kdeprint_rlpr_la_SOURCES' is defined but no program or
  975. kdeprint/rlpr/Makefile.am:7: library has 'kdeprint_rlpr_la' as canonical name (possible typo)
  976. kdeprint/rlpr/Makefile.am:10: warning: variable 'kdeprint_rlpr_la_LIBADD' is defined but no program or
  977. kdeprint/rlpr/Makefile.am:10: library has 'kdeprint_rlpr_la' as canonical name (possible typo)
  978. kdeprint/rlpr/Makefile.am:9: warning: variable 'kdeprint_rlpr_la_LDFLAGS' is defined but no program or
  979. kdeprint/rlpr/Makefile.am:9: library has 'kdeprint_rlpr_la' as canonical name (possible typo)
  980. kdeprint/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  981. kdeprint/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  982. kdeprint/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  983. kdeprint/tools/escputil/Makefile.am:3: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  984. kdeprint/tools/escputil/Makefile.am:4: warning: variable 'kdeprint_tool_escputil_la_SOURCES' is defined but no program or
  985. kdeprint/tools/escputil/Makefile.am:4: library has 'kdeprint_tool_escputil_la' as canonical name (possible typo)
  986. kdeprint/tools/escputil/Makefile.am:7: warning: variable 'kdeprint_tool_escputil_la_LIBADD' is defined but no program or
  987. kdeprint/tools/escputil/Makefile.am:7: library has 'kdeprint_tool_escputil_la' as canonical name (possible typo)
  988. kdeprint/tools/escputil/Makefile.am:6: warning: variable 'kdeprint_tool_escputil_la_LDFLAGS' is defined but no program or
  989. kdeprint/tools/escputil/Makefile.am:6: library has 'kdeprint_tool_escputil_la' as canonical name (possible typo)
  990. kdesu/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  991. kdesu/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  992. kdesu/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  993. kdesu/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  994. kdesu/Makefile.am:5:   its definition is in aclocal's search path.
  995. kdesu/Makefile.am: error: C source seen but 'CC' is undefined
  996. kdesu/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  997. kdesu/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  998. kdesu/Makefile.am: error: C++ source seen but 'CXX' is undefined
  999. kdesu/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1000. kdesu/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1001. kdeui/Makefile.am:29: error: Libtool library used but 'LIBTOOL' is undefined
  1002. kdeui/Makefile.am:29:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1003. kdeui/Makefile.am:29:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1004. kdeui/Makefile.am:29:   If 'LT_INIT' is in 'configure.in', make sure
  1005. kdeui/Makefile.am:29:   its definition is in aclocal's search path.
  1006. kdeui/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1007. kdeui/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1008. kdeui/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1009. kdeui/kdetrayproxy/Makefile.am:1: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1010. kdeui/kdetrayproxy/Makefile.am:4: warning: variable 'kded_kdetrayproxy_la_SOURCES' is defined but no program or
  1011. kdeui/kdetrayproxy/Makefile.am:4: library has 'kded_kdetrayproxy_la' as canonical name (possible typo)
  1012. kdeui/kdetrayproxy/Makefile.am:6: warning: variable 'kded_kdetrayproxy_la_LIBADD' is defined but no program or
  1013. kdeui/kdetrayproxy/Makefile.am:6: library has 'kded_kdetrayproxy_la' as canonical name (possible typo)
  1014. kdeui/kdetrayproxy/Makefile.am:5: warning: variable 'kded_kdetrayproxy_la_LDFLAGS' is defined but no program or
  1015. kdeui/kdetrayproxy/Makefile.am:5: library has 'kded_kdetrayproxy_la' as canonical name (possible typo)
  1016. kdeui/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1017. kdeui/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1018. kdeui/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1019. kdewidgets/Makefile.am:31: error: 'kde_widget_LTLIBRARIES' is used but 'kde_widgetdir' is undefined
  1020. kdewidgets/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1021. kdewidgets/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1022. kdewidgets/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1023. kdewidgets/Makefile.am:34: warning: variable 'kdewidgets_la_SOURCES' is defined but no program or
  1024. kdewidgets/Makefile.am:34: library has 'kdewidgets_la' as canonical name (possible typo)
  1025. kdewidgets/Makefile.am:33: warning: variable 'kdewidgets_la_LIBADD' is defined but no program or
  1026. kdewidgets/Makefile.am:33: library has 'kdewidgets_la' as canonical name (possible typo)
  1027. kdewidgets/Makefile.am:32: warning: variable 'kdewidgets_la_LDFLAGS' is defined but no program or
  1028. kdewidgets/Makefile.am:32: library has 'kdewidgets_la' as canonical name (possible typo)
  1029. kdoctools/Makefile.am:12: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1030. kdoctools/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  1031. kdoctools/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1032. kdoctools/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1033. kdoctools/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  1034. kdoctools/Makefile.am:5:   its definition is in aclocal's search path.
  1035. kdoctools/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1036. kdoctools/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1037. kdoctools/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1038. kdoctools/Makefile.am:18: warning: variable 'kio_ghelp_la_SOURCES' is defined but no program or
  1039. kdoctools/Makefile.am:18: library has 'kio_ghelp_la' as canonical name (possible typo)
  1040. kdoctools/Makefile.am:14: warning: variable 'kio_help_la_SOURCES' is defined but no program or
  1041. kdoctools/Makefile.am:14: library has 'kio_help_la' as canonical name (possible typo)
  1042. kdoctools/Makefile.am:19: warning: variable 'kio_ghelp_la_LIBADD' is defined but no program or
  1043. kdoctools/Makefile.am:19: library has 'kio_ghelp_la' as canonical name (possible typo)
  1044. kdoctools/Makefile.am:15: warning: variable 'kio_help_la_LIBADD' is defined but no program or
  1045. kdoctools/Makefile.am:15: library has 'kio_help_la' as canonical name (possible typo)
  1046. kdoctools/Makefile.am:16: warning: variable 'kio_help_la_LDFLAGS' is defined but no program or
  1047. kdoctools/Makefile.am:16: library has 'kio_help_la' as canonical name (possible typo)
  1048. kdoctools/Makefile.am:20: warning: variable 'kio_ghelp_la_LDFLAGS' is defined but no program or
  1049. kdoctools/Makefile.am:20: library has 'kio_ghelp_la' as canonical name (possible typo)
  1050. khtml/Makefile.am:22: error: DOJAVA does not appear in AM_CONDITIONAL
  1051. khtml/Makefile.am:48: error: include_VERSION_SCRIPT does not appear in AM_CONDITIONAL
  1052. khtml/Makefile.am:32: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1053. khtml/Makefile.am:31: error: Libtool library used but 'LIBTOOL' is undefined
  1054. khtml/Makefile.am:31:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1055. khtml/Makefile.am:31:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1056. khtml/Makefile.am:31:   If 'LT_INIT' is in 'configure.in', make sure
  1057. khtml/Makefile.am:31:   its definition is in aclocal's search path.
  1058. khtml/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1059. khtml/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1060. khtml/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1061. khtml/Makefile.am:78: warning: variable 'khtmlimagepart_la_SOURCES' is defined but no program or
  1062. khtml/Makefile.am:78: library has 'khtmlimagepart_la' as canonical name (possible typo)
  1063. khtml/Makefile.am:68: warning: variable 'libkhtmlpart_la_SOURCES' is defined but no program or
  1064. khtml/Makefile.am:68: library has 'libkhtmlpart_la' as canonical name (possible typo)
  1065. khtml/Makefile.am:70: warning: variable 'libkhtmlpart_la_LIBADD' is defined but no program or
  1066. khtml/Makefile.am:70: library has 'libkhtmlpart_la' as canonical name (possible typo)
  1067. khtml/Makefile.am:80: warning: variable 'khtmlimagepart_la_LIBADD' is defined but no program or
  1068. khtml/Makefile.am:80: library has 'khtmlimagepart_la' as canonical name (possible typo)
  1069. khtml/Makefile.am:79: warning: variable 'khtmlimagepart_la_LDFLAGS' is defined but no program or
  1070. khtml/Makefile.am:79: library has 'khtmlimagepart_la' as canonical name (possible typo)
  1071. khtml/Makefile.am:69: warning: variable 'libkhtmlpart_la_LDFLAGS' is defined but no program or
  1072. khtml/Makefile.am:69: library has 'libkhtmlpart_la' as canonical name (possible typo)
  1073. khtml/css/Makefile.am:24: error: Libtool library used but 'LIBTOOL' is undefined
  1074. khtml/css/Makefile.am:24:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1075. khtml/css/Makefile.am:24:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1076. khtml/css/Makefile.am:24:   If 'LT_INIT' is in 'configure.in', make sure
  1077. khtml/css/Makefile.am:24:   its definition is in aclocal's search path.
  1078. khtml/css/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1079. khtml/css/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1080. khtml/css/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1081. khtml/dom/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1082. khtml/dom/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1083. khtml/dom/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1084. khtml/dom/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1085. khtml/dom/Makefile.am:22:   its definition is in aclocal's search path.
  1086. khtml/dom/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1087. khtml/dom/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1088. khtml/dom/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1089. khtml/ecma/Makefile.am:23: error: Libtool library used but 'LIBTOOL' is undefined
  1090. khtml/ecma/Makefile.am:23:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1091. khtml/ecma/Makefile.am:23:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1092. khtml/ecma/Makefile.am:23:   If 'LT_INIT' is in 'configure.in', make sure
  1093. khtml/ecma/Makefile.am:23:   its definition is in aclocal's search path.
  1094. khtml/ecma/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1095. khtml/ecma/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1096. khtml/ecma/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1097. khtml/html/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1098. khtml/html/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1099. khtml/html/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1100. khtml/html/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1101. khtml/html/Makefile.am:22:   its definition is in aclocal's search path.
  1102. khtml/html/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1103. khtml/html/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1104. khtml/html/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1105. khtml/java/Makefile.am:29: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1106. khtml/java/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  1107. khtml/java/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1108. khtml/java/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1109. khtml/java/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  1110. khtml/java/Makefile.am:3:   its definition is in aclocal's search path.
  1111. khtml/java/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1112. khtml/java/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1113. khtml/java/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1114. khtml/java/Makefile.am:37: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  1115. khtml/java/Makefile.am:30: warning: variable 'kjavaappletviewer_la_SOURCES' is defined but no program or
  1116. khtml/java/Makefile.am:30: library has 'kjavaappletviewer_la' as canonical name (possible typo)
  1117. khtml/java/Makefile.am:35: warning: variable 'kjavaappletviewer_la_LIBADD' is defined but no program or
  1118. khtml/java/Makefile.am:35: library has 'kjavaappletviewer_la' as canonical name (possible typo)
  1119. khtml/java/Makefile.am:34: warning: variable 'kjavaappletviewer_la_LDFLAGS' is defined but no program or
  1120. khtml/java/Makefile.am:34: library has 'kjavaappletviewer_la' as canonical name (possible typo)
  1121. khtml/java/dummy/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined
  1122. khtml/java/dummy/Makefile.am:2:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1123. khtml/java/dummy/Makefile.am:2:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1124. khtml/java/dummy/Makefile.am:2:   If 'LT_INIT' is in 'configure.in', make sure
  1125. khtml/java/dummy/Makefile.am:2:   its definition is in aclocal's search path.
  1126. khtml/java/dummy/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1127. khtml/java/dummy/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1128. khtml/java/dummy/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1129. khtml/java/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1130. khtml/java/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1131. khtml/java/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1132. khtml/kmultipart/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1133. khtml/kmultipart/Makefile.am:16: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  1134. khtml/kmultipart/Makefile.am:7: warning: variable 'libkmultipart_la_SOURCES' is defined but no program or
  1135. khtml/kmultipart/Makefile.am:7: library has 'libkmultipart_la' as canonical name (possible typo)
  1136. khtml/kmultipart/Makefile.am:8: warning: variable 'libkmultipart_la_LIBADD' is defined but no program or
  1137. khtml/kmultipart/Makefile.am:8: library has 'libkmultipart_la' as canonical name (possible typo)
  1138. khtml/kmultipart/Makefile.am:10: warning: variable 'libkmultipart_la_LDFLAGS' is defined but no program or
  1139. khtml/kmultipart/Makefile.am:10: library has 'libkmultipart_la' as canonical name (possible typo)
  1140. khtml/kmultipart/Makefile.am:9: warning: variable 'libkmultipart_la_DEPENDENCIES' is defined but no program or
  1141. khtml/kmultipart/Makefile.am:9: library has 'libkmultipart_la' as canonical name (possible typo)
  1142. khtml/misc/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1143. khtml/misc/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1144. khtml/misc/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1145. khtml/misc/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1146. khtml/misc/Makefile.am:22:   its definition is in aclocal's search path.
  1147. khtml/misc/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1148. khtml/misc/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1149. khtml/misc/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1150. khtml/rendering/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1151. khtml/rendering/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1152. khtml/rendering/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1153. khtml/rendering/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1154. khtml/rendering/Makefile.am:22:   its definition is in aclocal's search path.
  1155. khtml/rendering/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1156. khtml/rendering/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1157. khtml/rendering/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1158. khtml/xml/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1159. khtml/xml/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1160. khtml/xml/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1161. khtml/xml/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1162. khtml/xml/Makefile.am:22:   its definition is in aclocal's search path.
  1163. khtml/xml/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1164. khtml/xml/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1165. khtml/xml/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1166. kimgio/Makefile.am:2: error: include_TIFF_MODULES does not appear in AM_CONDITIONAL
  1167. kimgio/Makefile.am:7: error: include_JP2_MODULES does not appear in AM_CONDITIONAL
  1168. kimgio/Makefile.am:12: error: include_EXR_MODULES does not appear in AM_CONDITIONAL
  1169. kimgio/Makefile.am:19: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1170. kimgio/Makefile.am:54: warning: variable 'kimg_tga_la_SOURCES' is defined but no program or
  1171. kimgio/Makefile.am:54: library has 'kimg_tga_la' as canonical name (possible typo)
  1172. kimgio/Makefile.am:58: warning: variable 'kimg_rgb_la_SOURCES' is defined but no program or
  1173. kimgio/Makefile.am:58: library has 'kimg_rgb_la' as canonical name (possible typo)
  1174. kimgio/Makefile.am:42: warning: variable 'kimg_ico_la_SOURCES' is defined but no program or
  1175. kimgio/Makefile.am:42: library has 'kimg_ico_la' as canonical name (possible typo)
  1176. kimgio/Makefile.am:34: warning: variable 'kimg_xview_la_SOURCES' is defined but no program or
  1177. kimgio/Makefile.am:34: library has 'kimg_xview_la' as canonical name (possible typo)
  1178. kimgio/Makefile.am:78: warning: variable 'kimg_hdr_la_SOURCES' is defined but no program or
  1179. kimgio/Makefile.am:78: library has 'kimg_hdr_la' as canonical name (possible typo)
  1180. kimgio/Makefile.am:50: warning: variable 'kimg_pcx_la_SOURCES' is defined but no program or
  1181. kimgio/Makefile.am:50: library has 'kimg_pcx_la' as canonical name (possible typo)
  1182. kimgio/Makefile.am:38: warning: variable 'kimg_eps_la_SOURCES' is defined but no program or
  1183. kimgio/Makefile.am:38: library has 'kimg_eps_la' as canonical name (possible typo)
  1184. kimgio/Makefile.am:26: warning: variable 'kimg_tiff_la_SOURCES' is defined but no program or
  1185. kimgio/Makefile.am:26: library has 'kimg_tiff_la' as canonical name (possible typo)
  1186. kimgio/Makefile.am:46: warning: variable 'kimg_jp2_la_SOURCES' is defined but no program or
  1187. kimgio/Makefile.am:46: library has 'kimg_jp2_la' as canonical name (possible typo)
  1188. kimgio/Makefile.am:70: warning: variable 'kimg_dds_la_SOURCES' is defined but no program or
  1189. kimgio/Makefile.am:70: library has 'kimg_dds_la' as canonical name (possible typo)
  1190. kimgio/Makefile.am:62: warning: variable 'kimg_xcf_la_SOURCES' is defined but no program or
  1191. kimgio/Makefile.am:62: library has 'kimg_xcf_la' as canonical name (possible typo)
  1192. kimgio/Makefile.am:74: warning: variable 'kimg_psd_la_SOURCES' is defined but no program or
  1193. kimgio/Makefile.am:74: library has 'kimg_psd_la' as canonical name (possible typo)
  1194. kimgio/Makefile.am:66: warning: variable 'kimg_exr_la_SOURCES' is defined but no program or
  1195. kimgio/Makefile.am:66: library has 'kimg_exr_la' as canonical name (possible typo)
  1196. kimgio/Makefile.am:80: warning: variable 'kimg_hdr_la_LIBADD' is defined but no program or
  1197. kimgio/Makefile.am:80: library has 'kimg_hdr_la' as canonical name (possible typo)
  1198. kimgio/Makefile.am:64: warning: variable 'kimg_xcf_la_LIBADD' is defined but no program or
  1199. kimgio/Makefile.am:64: library has 'kimg_xcf_la' as canonical name (possible typo)
  1200. kimgio/Makefile.am:76: warning: variable 'kimg_psd_la_LIBADD' is defined but no program or
  1201. kimgio/Makefile.am:76: library has 'kimg_psd_la' as canonical name (possible typo)
  1202. kimgio/Makefile.am:52: warning: variable 'kimg_pcx_la_LIBADD' is defined but no program or
  1203. kimgio/Makefile.am:52: library has 'kimg_pcx_la' as canonical name (possible typo)
  1204. kimgio/Makefile.am:44: warning: variable 'kimg_ico_la_LIBADD' is defined but no program or
  1205. kimgio/Makefile.am:44: library has 'kimg_ico_la' as canonical name (possible typo)
  1206. kimgio/Makefile.am:60: warning: variable 'kimg_rgb_la_LIBADD' is defined but no program or
  1207. kimgio/Makefile.am:60: library has 'kimg_rgb_la' as canonical name (possible typo)
  1208. kimgio/Makefile.am:28: warning: variable 'kimg_tiff_la_LIBADD' is defined but no program or
  1209. kimgio/Makefile.am:28: library has 'kimg_tiff_la' as canonical name (possible typo)
  1210. kimgio/Makefile.am:36: warning: variable 'kimg_xview_la_LIBADD' is defined but no program or
  1211. kimgio/Makefile.am:36: library has 'kimg_xview_la' as canonical name (possible typo)
  1212. kimgio/Makefile.am:56: warning: variable 'kimg_tga_la_LIBADD' is defined but no program or
  1213. kimgio/Makefile.am:56: library has 'kimg_tga_la' as canonical name (possible typo)
  1214. kimgio/Makefile.am:48: warning: variable 'kimg_jp2_la_LIBADD' is defined but no program or
  1215. kimgio/Makefile.am:48: library has 'kimg_jp2_la' as canonical name (possible typo)
  1216. kimgio/Makefile.am:72: warning: variable 'kimg_dds_la_LIBADD' is defined but no program or
  1217. kimgio/Makefile.am:72: library has 'kimg_dds_la' as canonical name (possible typo)
  1218. kimgio/Makefile.am:68: warning: variable 'kimg_exr_la_LIBADD' is defined but no program or
  1219. kimgio/Makefile.am:68: library has 'kimg_exr_la' as canonical name (possible typo)
  1220. kimgio/Makefile.am:40: warning: variable 'kimg_eps_la_LIBADD' is defined but no program or
  1221. kimgio/Makefile.am:40: library has 'kimg_eps_la' as canonical name (possible typo)
  1222. kimgio/Makefile.am:55: warning: variable 'kimg_tga_la_LDFLAGS' is defined but no program or
  1223. kimgio/Makefile.am:55: library has 'kimg_tga_la' as canonical name (possible typo)
  1224. kimgio/Makefile.am:63: warning: variable 'kimg_xcf_la_LDFLAGS' is defined but no program or
  1225. kimgio/Makefile.am:63: library has 'kimg_xcf_la' as canonical name (possible typo)
  1226. kimgio/Makefile.am:59: warning: variable 'kimg_rgb_la_LDFLAGS' is defined but no program or
  1227. kimgio/Makefile.am:59: library has 'kimg_rgb_la' as canonical name (possible typo)
  1228. kimgio/Makefile.am:79: warning: variable 'kimg_hdr_la_LDFLAGS' is defined but no program or
  1229. kimgio/Makefile.am:79: library has 'kimg_hdr_la' as canonical name (possible typo)
  1230. kimgio/Makefile.am:71: warning: variable 'kimg_dds_la_LDFLAGS' is defined but no program or
  1231. kimgio/Makefile.am:71: library has 'kimg_dds_la' as canonical name (possible typo)
  1232. kimgio/Makefile.am:67: warning: variable 'kimg_exr_la_LDFLAGS' is defined but no program or
  1233. kimgio/Makefile.am:67: library has 'kimg_exr_la' as canonical name (possible typo)
  1234. kimgio/Makefile.am:43: warning: variable 'kimg_ico_la_LDFLAGS' is defined but no program or
  1235. kimgio/Makefile.am:43: library has 'kimg_ico_la' as canonical name (possible typo)
  1236. kimgio/Makefile.am:75: warning: variable 'kimg_psd_la_LDFLAGS' is defined but no program or
  1237. kimgio/Makefile.am:75: library has 'kimg_psd_la' as canonical name (possible typo)
  1238. kimgio/Makefile.am:35: warning: variable 'kimg_xview_la_LDFLAGS' is defined but no program or
  1239. kimgio/Makefile.am:35: library has 'kimg_xview_la' as canonical name (possible typo)
  1240. kimgio/Makefile.am:39: warning: variable 'kimg_eps_la_LDFLAGS' is defined but no program or
  1241. kimgio/Makefile.am:39: library has 'kimg_eps_la' as canonical name (possible typo)
  1242. kimgio/Makefile.am:47: warning: variable 'kimg_jp2_la_LDFLAGS' is defined but no program or
  1243. kimgio/Makefile.am:47: library has 'kimg_jp2_la' as canonical name (possible typo)
  1244. kimgio/Makefile.am:51: warning: variable 'kimg_pcx_la_LDFLAGS' is defined but no program or
  1245. kimgio/Makefile.am:51: library has 'kimg_pcx_la' as canonical name (possible typo)
  1246. kimgio/Makefile.am:27: warning: variable 'kimg_tiff_la_LDFLAGS' is defined but no program or
  1247. kimgio/Makefile.am:27: library has 'kimg_tiff_la' as canonical name (possible typo)
  1248. kinit/Makefile.am:26: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  1249. kinit/Makefile.am: error: C source seen but 'CC' is undefined
  1250. kinit/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  1251. kinit/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1252. kinit/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1253. kinit/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1254. kinit/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1255. kinit/Makefile.am:60: warning: variable 'klauncher_la_SOURCES' is defined but no program or
  1256. kinit/Makefile.am:60: library has 'klauncher_la' as canonical name (possible typo)
  1257. kinit/Makefile.am:59: warning: variable 'klauncher_la_LIBADD' is defined but no program or
  1258. kinit/Makefile.am:59: library has 'klauncher_la' as canonical name (possible typo)
  1259. kinit/Makefile.am:58: warning: variable 'klauncher_la_LDFLAGS' is defined but no program or
  1260. kinit/Makefile.am:58: library has 'klauncher_la' as canonical name (possible typo)
  1261. kinit/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1262. kinit/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1263. kinit/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1264. kio/Makefile.am:25: error: Libtool library used but 'LIBTOOL' is undefined
  1265. kio/Makefile.am:25:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1266. kio/Makefile.am:25:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1267. kio/Makefile.am:25:   If 'LT_INIT' is in 'configure.in', make sure
  1268. kio/Makefile.am:25:   its definition is in aclocal's search path.
  1269. kio/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1270. kio/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1271. kio/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1272. kio/Makefile.am:37: error: 'kde_mime_DATA' is used but 'kde_mimedir' is undefined
  1273. kio/Makefile.am:38: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined
  1274. kio/bookmarks/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1275. kio/bookmarks/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1276. kio/bookmarks/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1277. kio/bookmarks/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1278. kio/bookmarks/Makefile.am:22:   its definition is in aclocal's search path.
  1279. kio/bookmarks/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1280. kio/bookmarks/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1281. kio/bookmarks/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1282. kio/httpfilter/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  1283. kio/httpfilter/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1284. kio/httpfilter/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1285. kio/httpfilter/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  1286. kio/httpfilter/Makefile.am:3:   its definition is in aclocal's search path.
  1287. kio/httpfilter/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1288. kio/httpfilter/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1289. kio/httpfilter/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1290. kio/kfile/Makefile.am:23: error: Libtool library used but 'LIBTOOL' is undefined
  1291. kio/kfile/Makefile.am:23:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1292. kio/kfile/Makefile.am:23:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1293. kio/kfile/Makefile.am:23:   If 'LT_INIT' is in 'configure.in', make sure
  1294. kio/kfile/Makefile.am:23:   its definition is in aclocal's search path.
  1295. kio/kfile/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1296. kio/kfile/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1297. kio/kfile/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1298. kio/kfile/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1299. kio/kfile/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1300. kio/kfile/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1301. kio/kio/Makefile.am:23: error: Libtool library used but 'LIBTOOL' is undefined
  1302. kio/kio/Makefile.am:23:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1303. kio/kio/Makefile.am:23:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1304. kio/kio/Makefile.am:23:   If 'LT_INIT' is in 'configure.in', make sure
  1305. kio/kio/Makefile.am:23:   its definition is in aclocal's search path.
  1306. kio/kio/Makefile.am: error: C source seen but 'CC' is undefined
  1307. kio/kio/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  1308. kio/kio/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1309. kio/kio/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1310. kio/kio/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1311. kio/kio/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1312. kio/kioexec/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1313. kio/kioexec/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1314. kio/kioexec/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1315. kio/kpasswdserver/Makefile.am:8: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1316. kio/kpasswdserver/Makefile.am:10: warning: variable 'kded_kpasswdserver_la_SOURCES' is defined but no program or
  1317. kio/kpasswdserver/Makefile.am:10: library has 'kded_kpasswdserver_la' as canonical name (possible typo)
  1318. kio/kpasswdserver/Makefile.am:13: warning: variable 'kded_kpasswdserver_la_LIBADD' is defined but no program or
  1319. kio/kpasswdserver/Makefile.am:13: library has 'kded_kpasswdserver_la' as canonical name (possible typo)
  1320. kio/kpasswdserver/Makefile.am:12: warning: variable 'kded_kpasswdserver_la_LDFLAGS' is defined but no program or
  1321. kio/kpasswdserver/Makefile.am:12: library has 'kded_kpasswdserver_la' as canonical name (possible typo)
  1322. kio/kssl/Makefile.am:8: error: Libtool library used but 'LIBTOOL' is undefined
  1323. kio/kssl/Makefile.am:8:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1324. kio/kssl/Makefile.am:8:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1325. kio/kssl/Makefile.am:8:   If 'LT_INIT' is in 'configure.in', make sure
  1326. kio/kssl/Makefile.am:8:   its definition is in aclocal's search path.
  1327. kio/kssl/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1328. kio/kssl/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1329. kio/kssl/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1330. kio/misc/Makefile.am:26: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  1331. kio/misc/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1332. kio/misc/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1333. kio/misc/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1334. kio/misc/Makefile.am:37: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  1335. kio/misc/Makefile.am:31: warning: variable 'kio_uiserver_la_SOURCES' is defined but no program or
  1336. kio/misc/Makefile.am:31: library has 'kio_uiserver_la' as canonical name (possible typo)
  1337. kio/misc/Makefile.am:32: warning: variable 'kio_uiserver_la_LIBADD' is defined but no program or
  1338. kio/misc/Makefile.am:32: library has 'kio_uiserver_la' as canonical name (possible typo)
  1339. kio/misc/Makefile.am:33: warning: variable 'kio_uiserver_la_LDFLAGS' is defined but no program or
  1340. kio/misc/Makefile.am:33: library has 'kio_uiserver_la' as canonical name (possible typo)
  1341. kio/misc/kdesasl/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  1342. kio/misc/kdesasl/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1343. kio/misc/kdesasl/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1344. kio/misc/kdesasl/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  1345. kio/misc/kdesasl/Makefile.am:3:   its definition is in aclocal's search path.
  1346. kio/misc/kdesasl/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1347. kio/misc/kdesasl/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1348. kio/misc/kdesasl/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1349. kio/misc/kfile/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1350. kio/misc/kfile/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1351. kio/misc/kfile/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1352. kio/misc/kntlm/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  1353. kio/misc/kntlm/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1354. kio/misc/kntlm/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1355. kio/misc/kntlm/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  1356. kio/misc/kntlm/Makefile.am:3:   its definition is in aclocal's search path.
  1357. kio/misc/kntlm/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1358. kio/misc/kntlm/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1359. kio/misc/kntlm/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1360. kio/misc/kpac/Makefile.am:2: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1361. kio/misc/kpac/Makefile.am: error: C source seen but 'CC' is undefined
  1362. kio/misc/kpac/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  1363. kio/misc/kpac/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1364. kio/misc/kpac/Makefile.am:10: warning: variable 'kded_proxyscout_la_SOURCES' is defined but no program or
  1365. kio/misc/kpac/Makefile.am:10: library has 'kded_proxyscout_la' as canonical name (possible typo)
  1366. kio/misc/kpac/Makefile.am:13: warning: variable 'kded_proxyscout_la_LIBADD' is defined but no program or
  1367. kio/misc/kpac/Makefile.am:13: library has 'kded_proxyscout_la' as canonical name (possible typo)
  1368. kio/misc/kpac/Makefile.am:12: warning: variable 'kded_proxyscout_la_LDFLAGS' is defined but no program or
  1369. kio/misc/kpac/Makefile.am:12: library has 'kded_proxyscout_la' as canonical name (possible typo)
  1370. kio/misc/ksendbugmail/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1371. kio/misc/ksendbugmail/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1372. kio/misc/ksendbugmail/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1373. kio/misc/kssld/Makefile.am:21: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1374. kio/misc/kssld/Makefile.am:25: warning: variable 'kded_kssld_la_SOURCES' is defined but no program or
  1375. kio/misc/kssld/Makefile.am:25: library has 'kded_kssld_la' as canonical name (possible typo)
  1376. kio/misc/kssld/Makefile.am:24: warning: variable 'kded_kssld_la_LIBADD' is defined but no program or
  1377. kio/misc/kssld/Makefile.am:24: library has 'kded_kssld_la' as canonical name (possible typo)
  1378. kio/misc/kssld/Makefile.am:23: warning: variable 'kded_kssld_la_LDFLAGS' is defined but no program or
  1379. kio/misc/kssld/Makefile.am:23: library has 'kded_kssld_la' as canonical name (possible typo)
  1380. kio/misc/kwalletd/Makefile.am:21: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1381. kio/misc/kwalletd/Makefile.am:25: warning: variable 'kded_kwalletd_la_SOURCES' is defined but no program or
  1382. kio/misc/kwalletd/Makefile.am:25: library has 'kded_kwalletd_la' as canonical name (possible typo)
  1383. kio/misc/kwalletd/Makefile.am:24: warning: variable 'kded_kwalletd_la_LIBADD' is defined but no program or
  1384. kio/misc/kwalletd/Makefile.am:24: library has 'kded_kwalletd_la' as canonical name (possible typo)
  1385. kio/misc/kwalletd/Makefile.am:23: warning: variable 'kded_kwalletd_la_LDFLAGS' is defined but no program or
  1386. kio/misc/kwalletd/Makefile.am:23: library has 'kded_kwalletd_la' as canonical name (possible typo)
  1387. kio/tests/Makefile.am:78: error: Libtool library used but 'LIBTOOL' is undefined
  1388. kio/tests/Makefile.am:78:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1389. kio/tests/Makefile.am:78:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1390. kio/tests/Makefile.am:78:   If 'LT_INIT' is in 'configure.in', make sure
  1391. kio/tests/Makefile.am:78:   its definition is in aclocal's search path.
  1392. kio/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1393. kio/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1394. kio/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1395. kioslave/Makefile.am:19: error: include_bzip2 does not appear in AM_CONDITIONAL
  1396. kioslave/bzip2/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1397. kioslave/bzip2/Makefile.am:10: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  1398. kioslave/bzip2/Makefile.am:6: warning: variable 'kbzip2filter_la_SOURCES' is defined but no program or
  1399. kioslave/bzip2/Makefile.am:6: library has 'kbzip2filter_la' as canonical name (possible typo)
  1400. kioslave/bzip2/Makefile.am:7: warning: variable 'kbzip2filter_la_LIBADD' is defined but no program or
  1401. kioslave/bzip2/Makefile.am:7: library has 'kbzip2filter_la' as canonical name (possible typo)
  1402. kioslave/bzip2/Makefile.am:8: warning: variable 'kbzip2filter_la_LDFLAGS' is defined but no program or
  1403. kioslave/bzip2/Makefile.am:8: library has 'kbzip2filter_la' as canonical name (possible typo)
  1404. kioslave/file/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1405. kioslave/file/Makefile.am:11: warning: variable 'kio_file_la_SOURCES' is defined but no program or
  1406. kioslave/file/Makefile.am:11: library has 'kio_file_la' as canonical name (possible typo)
  1407. kioslave/file/Makefile.am:12: warning: variable 'kio_file_la_LIBADD' is defined but no program or
  1408. kioslave/file/Makefile.am:12: library has 'kio_file_la' as canonical name (possible typo)
  1409. kioslave/file/Makefile.am:13: warning: variable 'kio_file_la_LDFLAGS' is defined but no program or
  1410. kioslave/file/Makefile.am:13: library has 'kio_file_la' as canonical name (possible typo)
  1411. kioslave/ftp/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1412. kioslave/ftp/Makefile.am:7: warning: variable 'kio_ftp_la_SOURCES' is defined but no program or
  1413. kioslave/ftp/Makefile.am:7: library has 'kio_ftp_la' as canonical name (possible typo)
  1414. kioslave/ftp/Makefile.am:8: warning: variable 'kio_ftp_la_LIBADD' is defined but no program or
  1415. kioslave/ftp/Makefile.am:8: library has 'kio_ftp_la' as canonical name (possible typo)
  1416. kioslave/ftp/Makefile.am:9: warning: variable 'kio_ftp_la_LDFLAGS' is defined but no program or
  1417. kioslave/ftp/Makefile.am:9: library has 'kio_ftp_la' as canonical name (possible typo)
  1418. kioslave/gzip/Makefile.am:5: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1419. kioslave/gzip/Makefile.am:11: error: 'kde_services_DATA' is used but 'kde_servicesdir' is undefined
  1420. kioslave/gzip/Makefile.am:7: warning: variable 'kgzipfilter_la_SOURCES' is defined but no program or
  1421. kioslave/gzip/Makefile.am:7: library has 'kgzipfilter_la' as canonical name (possible typo)
  1422. kioslave/gzip/Makefile.am:8: warning: variable 'kgzipfilter_la_LIBADD' is defined but no program or
  1423. kioslave/gzip/Makefile.am:8: library has 'kgzipfilter_la' as canonical name (possible typo)
  1424. kioslave/gzip/Makefile.am:9: warning: variable 'kgzipfilter_la_LDFLAGS' is defined but no program or
  1425. kioslave/gzip/Makefile.am:9: library has 'kgzipfilter_la' as canonical name (possible typo)
  1426. kioslave/http/Makefile.am:13: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  1427. kioslave/http/Makefile.am:14: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1428. kioslave/http/Makefile.am:21: warning: variable 'kio_http_cache_cleaner_la_SOURCES' is defined but no program or
  1429. kioslave/http/Makefile.am:21: library has 'kio_http_cache_cleaner_la' as canonical name (possible typo)
  1430. kioslave/http/Makefile.am:16: warning: variable 'kio_http_la_SOURCES' is defined but no program or
  1431. kioslave/http/Makefile.am:16: library has 'kio_http_la' as canonical name (possible typo)
  1432. kioslave/http/Makefile.am:22: warning: variable 'kio_http_cache_cleaner_la_LIBADD' is defined but no program or
  1433. kioslave/http/Makefile.am:22: library has 'kio_http_cache_cleaner_la' as canonical name (possible typo)
  1434. kioslave/http/Makefile.am:18: warning: variable 'kio_http_la_LIBADD' is defined but no program or
  1435. kioslave/http/Makefile.am:18: library has 'kio_http_la' as canonical name (possible typo)
  1436. kioslave/http/Makefile.am:19: warning: variable 'kio_http_la_LDFLAGS' is defined but no program or
  1437. kioslave/http/Makefile.am:19: library has 'kio_http_la' as canonical name (possible typo)
  1438. kioslave/http/Makefile.am:23: warning: variable 'kio_http_cache_cleaner_la_LDFLAGS' is defined but no program or
  1439. kioslave/http/Makefile.am:23: library has 'kio_http_cache_cleaner_la' as canonical name (possible typo)
  1440. kioslave/http/kcookiejar/Makefile.am:10: error: 'kdeinit_LTLIBRARIES' is used but 'kdeinitdir' is undefined
  1441. kioslave/http/kcookiejar/Makefile.am:11: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1442. kioslave/http/kcookiejar/Makefile.am:18: warning: variable 'kded_kcookiejar_la_SOURCES' is defined but no program or
  1443. kioslave/http/kcookiejar/Makefile.am:18: library has 'kded_kcookiejar_la' as canonical name (possible typo)
  1444. kioslave/http/kcookiejar/Makefile.am:13: warning: variable 'kcookiejar_la_SOURCES' is defined but no program or
  1445. kioslave/http/kcookiejar/Makefile.am:13: library has 'kcookiejar_la' as canonical name (possible typo)
  1446. kioslave/http/kcookiejar/Makefile.am:16: warning: variable 'kcookiejar_la_LIBADD' is defined but no program or
  1447. kioslave/http/kcookiejar/Makefile.am:16: library has 'kcookiejar_la' as canonical name (possible typo)
  1448. kioslave/http/kcookiejar/Makefile.am:21: warning: variable 'kded_kcookiejar_la_LIBADD' is defined but no program or
  1449. kioslave/http/kcookiejar/Makefile.am:21: library has 'kded_kcookiejar_la' as canonical name (possible typo)
  1450. kioslave/http/kcookiejar/Makefile.am:20: warning: variable 'kded_kcookiejar_la_LDFLAGS' is defined but no program or
  1451. kioslave/http/kcookiejar/Makefile.am:20: library has 'kded_kcookiejar_la' as canonical name (possible typo)
  1452. kioslave/http/kcookiejar/Makefile.am:15: warning: variable 'kcookiejar_la_LDFLAGS' is defined but no program or
  1453. kioslave/http/kcookiejar/Makefile.am:15: library has 'kcookiejar_la' as canonical name (possible typo)
  1454. kioslave/http/kcookiejar/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1455. kioslave/http/kcookiejar/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1456. kioslave/http/kcookiejar/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1457. kioslave/metainfo/Makefile.am:8: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1458. kioslave/metainfo/Makefile.am:10: warning: variable 'kio_metainfo_la_SOURCES' is defined but no program or
  1459. kioslave/metainfo/Makefile.am:10: library has 'kio_metainfo_la' as canonical name (possible typo)
  1460. kioslave/metainfo/Makefile.am:11: warning: variable 'kio_metainfo_la_LIBADD' is defined but no program or
  1461. kioslave/metainfo/Makefile.am:11: library has 'kio_metainfo_la' as canonical name (possible typo)
  1462. kioslave/metainfo/Makefile.am:12: warning: variable 'kio_metainfo_la_LDFLAGS' is defined but no program or
  1463. kioslave/metainfo/Makefile.am:12: library has 'kio_metainfo_la' as canonical name (possible typo)
  1464. kjs/Makefile.am:47: error: include_VERSION_SCRIPT does not appear in AM_CONDITIONAL
  1465. kjs/Makefile.am:22: error: Libtool library used but 'LIBTOOL' is undefined
  1466. kjs/Makefile.am:22:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1467. kjs/Makefile.am:22:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1468. kjs/Makefile.am:22:   If 'LT_INIT' is in 'configure.in', make sure
  1469. kjs/Makefile.am:22:   its definition is in aclocal's search path.
  1470. kjs/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1471. kjs/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1472. kjs/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1473. kmdi/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  1474. kmdi/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1475. kmdi/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1476. kmdi/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  1477. kmdi/Makefile.am:5:   its definition is in aclocal's search path.
  1478. kmdi/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1479. kmdi/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1480. kmdi/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1481. kmdi/kmdi/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  1482. kmdi/kmdi/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1483. kmdi/kmdi/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1484. kmdi/kmdi/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  1485. kmdi/kmdi/Makefile.am:3:   its definition is in aclocal's search path.
  1486. kmdi/kmdi/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1487. kmdi/kmdi/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1488. kmdi/kmdi/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1489. kmdi/test/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1490. kmdi/test/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1491. kmdi/test/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1492. knewstuff/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  1493. knewstuff/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1494. knewstuff/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1495. knewstuff/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  1496. knewstuff/Makefile.am:5:   its definition is in aclocal's search path.
  1497. knewstuff/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1498. knewstuff/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1499. knewstuff/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1500. knewstuff/Makefile.am:32: error: 'kde_conf_DATA' is used but 'kde_confdir' is undefined
  1501. kparts/Makefile.am:15: error: Libtool library used but 'LIBTOOL' is undefined
  1502. kparts/Makefile.am:15:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1503. kparts/Makefile.am:15:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1504. kparts/Makefile.am:15:   If 'LT_INIT' is in 'configure.in', make sure
  1505. kparts/Makefile.am:15:   its definition is in aclocal's search path.
  1506. kparts/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1507. kparts/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1508. kparts/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1509. kparts/tests/Makefile.am:17: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1510. kparts/tests/Makefile.am:27: error: Libtool library used but 'LIBTOOL' is undefined
  1511. kparts/tests/Makefile.am:27:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1512. kparts/tests/Makefile.am:27:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1513. kparts/tests/Makefile.am:27:   If 'LT_INIT' is in 'configure.in', make sure
  1514. kparts/tests/Makefile.am:27:   its definition is in aclocal's search path.
  1515. kparts/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1516. kparts/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1517. kparts/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1518. kparts/tests/Makefile.am:19: warning: variable 'libspellcheckplugin_la_SOURCES' is defined but no program or
  1519. kparts/tests/Makefile.am:19: library has 'libspellcheckplugin_la' as canonical name (possible typo)
  1520. kparts/tests/Makefile.am:23: warning: variable 'libnotepadpart_la_SOURCES' is defined but no program or
  1521. kparts/tests/Makefile.am:23: library has 'libnotepadpart_la' as canonical name (possible typo)
  1522. kparts/tests/Makefile.am:20: warning: variable 'libspellcheckplugin_la_LIBADD' is defined but no program or
  1523. kparts/tests/Makefile.am:20: library has 'libspellcheckplugin_la' as canonical name (possible typo)
  1524. kparts/tests/Makefile.am:24: warning: variable 'libnotepadpart_la_LIBADD' is defined but no program or
  1525. kparts/tests/Makefile.am:24: library has 'libnotepadpart_la' as canonical name (possible typo)
  1526. kparts/tests/Makefile.am:21: warning: variable 'libspellcheckplugin_la_LDFLAGS' is defined but no program or
  1527. kparts/tests/Makefile.am:21: library has 'libspellcheckplugin_la' as canonical name (possible typo)
  1528. kparts/tests/Makefile.am:25: warning: variable 'libnotepadpart_la_LDFLAGS' is defined but no program or
  1529. kparts/tests/Makefile.am:25: library has 'libnotepadpart_la' as canonical name (possible typo)
  1530. kresources/Makefile.am:31: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1531. kresources/Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
  1532. kresources/Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1533. kresources/Makefile.am:5:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1534. kresources/Makefile.am:5:   If 'LT_INIT' is in 'configure.in', make sure
  1535. kresources/Makefile.am:5:   its definition is in aclocal's search path.
  1536. kresources/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1537. kresources/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1538. kresources/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1539. kresources/Makefile.am:44: error: 'xdg_apps_DATA' is used but 'xdg_appsdir' is undefined
  1540. kresources/Makefile.am:33: warning: variable 'kcm_kresources_la_SOURCES' is defined but no program or
  1541. kresources/Makefile.am:33: library has 'kcm_kresources_la' as canonical name (possible typo)
  1542. kresources/Makefile.am:35: warning: variable 'kcm_kresources_la_LIBADD' is defined but no program or
  1543. kresources/Makefile.am:35: library has 'kcm_kresources_la' as canonical name (possible typo)
  1544. kresources/Makefile.am:34: warning: variable 'kcm_kresources_la_LDFLAGS' is defined but no program or
  1545. kresources/Makefile.am:34: library has 'kcm_kresources_la' as canonical name (possible typo)
  1546. kspell2/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined
  1547. kspell2/Makefile.am:4:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1548. kspell2/Makefile.am:4:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1549. kspell2/Makefile.am:4:   If 'LT_INIT' is in 'configure.in', make sure
  1550. kspell2/Makefile.am:4:   its definition is in aclocal's search path.
  1551. kspell2/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1552. kspell2/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1553. kspell2/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1554. kspell2/plugins/Makefile.am:1: error: include_aspell_plugin does not appear in AM_CONDITIONAL
  1555. kspell2/plugins/Makefile.am:5: error: include_hspell_plugin does not appear in AM_CONDITIONAL
  1556. kspell2/plugins/aspell/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1557. kspell2/plugins/aspell/Makefile.am:11: warning: variable 'kspell_aspell_la_SOURCES' is defined but no program or
  1558. kspell2/plugins/aspell/Makefile.am:11: library has 'kspell_aspell_la' as canonical name (possible typo)
  1559. kspell2/plugins/aspell/Makefile.am:14: warning: variable 'kspell_aspell_la_LIBADD' is defined but no program or
  1560. kspell2/plugins/aspell/Makefile.am:14: library has 'kspell_aspell_la' as canonical name (possible typo)
  1561. kspell2/plugins/aspell/Makefile.am:13: warning: variable 'kspell_aspell_la_LDFLAGS' is defined but no program or
  1562. kspell2/plugins/aspell/Makefile.am:13: library has 'kspell_aspell_la' as canonical name (possible typo)
  1563. kspell2/plugins/hspell/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1564. kspell2/plugins/hspell/Makefile.am:11: warning: variable 'kspell_hspell_la_SOURCES' is defined but no program or
  1565. kspell2/plugins/hspell/Makefile.am:11: library has 'kspell_hspell_la' as canonical name (possible typo)
  1566. kspell2/plugins/hspell/Makefile.am:14: warning: variable 'kspell_hspell_la_LIBADD' is defined but no program or
  1567. kspell2/plugins/hspell/Makefile.am:14: library has 'kspell_hspell_la' as canonical name (possible typo)
  1568. kspell2/plugins/hspell/Makefile.am:13: warning: variable 'kspell_hspell_la_LDFLAGS' is defined but no program or
  1569. kspell2/plugins/hspell/Makefile.am:13: library has 'kspell_hspell_la' as canonical name (possible typo)
  1570. kspell2/plugins/ispell/Makefile.am:9: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1571. kspell2/plugins/ispell/Makefile.am:11: warning: variable 'kspell_ispell_la_SOURCES' is defined but no program or
  1572. kspell2/plugins/ispell/Makefile.am:11: library has 'kspell_ispell_la' as canonical name (possible typo)
  1573. kspell2/plugins/ispell/Makefile.am:21: warning: variable 'kspell_ispell_la_LIBADD' is defined but no program or
  1574. kspell2/plugins/ispell/Makefile.am:21: library has 'kspell_ispell_la' as canonical name (possible typo)
  1575. kspell2/plugins/ispell/Makefile.am:20: warning: variable 'kspell_ispell_la_LDFLAGS' is defined but no program or
  1576. kspell2/plugins/ispell/Makefile.am:20: library has 'kspell_ispell_la' as canonical name (possible typo)
  1577. kspell2/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1578. kspell2/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1579. kspell2/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1580. kspell2/ui/Makefile.am:3: error: Libtool library used but 'LIBTOOL' is undefined
  1581. kspell2/ui/Makefile.am:3:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1582. kspell2/ui/Makefile.am:3:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1583. kspell2/ui/Makefile.am:3:   If 'LT_INIT' is in 'configure.in', make sure
  1584. kspell2/ui/Makefile.am:3:   its definition is in aclocal's search path.
  1585. kspell2/ui/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1586. kspell2/ui/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1587. kspell2/ui/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1588. kstyles/highcolor/Makefile.am:25: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined
  1589. kstyles/highcolor/Makefile.am:28: warning: variable 'highcolor_la_SOURCES' is defined but no program or
  1590. kstyles/highcolor/Makefile.am:28: library has 'highcolor_la' as canonical name (possible typo)
  1591. kstyles/highcolor/Makefile.am:27: warning: variable 'highcolor_la_LIBADD' is defined but no program or
  1592. kstyles/highcolor/Makefile.am:27: library has 'highcolor_la' as canonical name (possible typo)
  1593. kstyles/highcolor/Makefile.am:26: warning: variable 'highcolor_la_LDFLAGS' is defined but no program or
  1594. kstyles/highcolor/Makefile.am:26: library has 'highcolor_la' as canonical name (possible typo)
  1595. kstyles/highcontrast/Makefile.am:35: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined
  1596. kstyles/highcontrast/Makefile.am:36: warning: variable 'highcontrast_la_SOURCES' is defined but no program or
  1597. kstyles/highcontrast/Makefile.am:36: library has 'highcontrast_la' as canonical name (possible typo)
  1598. kstyles/highcontrast/Makefile.am:38: warning: variable 'highcontrast_la_LIBADD' is defined but no program or
  1599. kstyles/highcontrast/Makefile.am:38: library has 'highcontrast_la' as canonical name (possible typo)
  1600. kstyles/highcontrast/Makefile.am:37: warning: variable 'highcontrast_la_LDFLAGS' is defined but no program or
  1601. kstyles/highcontrast/Makefile.am:37: library has 'highcontrast_la' as canonical name (possible typo)
  1602. kstyles/highcontrast/config/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1603. kstyles/highcontrast/config/Makefile.am:7: warning: variable 'kstyle_highcontrast_config_la_SOURCES' is defined but no program or
  1604. kstyles/highcontrast/config/Makefile.am:7: library has 'kstyle_highcontrast_config_la' as canonical name (possible typo)
  1605. kstyles/highcontrast/config/Makefile.am:6: warning: variable 'kstyle_highcontrast_config_la_LIBADD' is defined but no program or
  1606. kstyles/highcontrast/config/Makefile.am:6: library has 'kstyle_highcontrast_config_la' as canonical name (possible typo)
  1607. kstyles/highcontrast/config/Makefile.am:5: warning: variable 'kstyle_highcontrast_config_la_LDFLAGS' is defined but no program or
  1608. kstyles/highcontrast/config/Makefile.am:5: library has 'kstyle_highcontrast_config_la' as canonical name (possible typo)
  1609. kstyles/keramik/Makefile.am:7: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined
  1610. kstyles/keramik/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1611. kstyles/keramik/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1612. kstyles/keramik/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1613. kstyles/keramik/Makefile.am:10: warning: variable 'keramik_la_SOURCES' is defined but no program or
  1614. kstyles/keramik/Makefile.am:10: library has 'keramik_la' as canonical name (possible typo)
  1615. kstyles/keramik/Makefile.am:9: warning: variable 'keramik_la_LIBADD' is defined but no program or
  1616. kstyles/keramik/Makefile.am:9: library has 'keramik_la' as canonical name (possible typo)
  1617. kstyles/keramik/Makefile.am:8: warning: variable 'keramik_la_LDFLAGS' is defined but no program or
  1618. kstyles/keramik/Makefile.am:8: library has 'keramik_la' as canonical name (possible typo)
  1619. kstyles/klegacy/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined
  1620. kstyles/klegacy/Makefile.am:4:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1621. kstyles/klegacy/Makefile.am:4:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1622. kstyles/klegacy/Makefile.am:4:   If 'LT_INIT' is in 'configure.in', make sure
  1623. kstyles/klegacy/Makefile.am:4:   its definition is in aclocal's search path.
  1624. kstyles/klegacy/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1625. kstyles/klegacy/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1626. kstyles/klegacy/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1627. kstyles/kthemestyle/Makefile.am:25: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined
  1628. kstyles/kthemestyle/Makefile.am:28: warning: variable 'kthemestyle_la_SOURCES' is defined but no program or
  1629. kstyles/kthemestyle/Makefile.am:28: library has 'kthemestyle_la' as canonical name (possible typo)
  1630. kstyles/kthemestyle/Makefile.am:27: warning: variable 'kthemestyle_la_LIBADD' is defined but no program or
  1631. kstyles/kthemestyle/Makefile.am:27: library has 'kthemestyle_la' as canonical name (possible typo)
  1632. kstyles/kthemestyle/Makefile.am:26: warning: variable 'kthemestyle_la_LDFLAGS' is defined but no program or
  1633. kstyles/kthemestyle/Makefile.am:26: library has 'kthemestyle_la' as canonical name (possible typo)
  1634. kstyles/light/Makefile.am:25: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined
  1635. kstyles/light/Makefile.am:28: warning: variable 'light_la_SOURCES' is defined but no program or
  1636. kstyles/light/Makefile.am:28: library has 'light_la' as canonical name (possible typo)
  1637. kstyles/light/Makefile.am:27: warning: variable 'light_la_LIBADD' is defined but no program or
  1638. kstyles/light/Makefile.am:27: library has 'light_la' as canonical name (possible typo)
  1639. kstyles/light/Makefile.am:26: warning: variable 'light_la_LDFLAGS' is defined but no program or
  1640. kstyles/light/Makefile.am:26: library has 'light_la' as canonical name (possible typo)
  1641. kstyles/plastik/Makefile.am:16: error: 'kde_style_LTLIBRARIES' is used but 'kde_styledir' is undefined
  1642. kstyles/plastik/Makefile.am:17: warning: variable 'plastik_la_SOURCES' is defined but no program or
  1643. kstyles/plastik/Makefile.am:17: library has 'plastik_la' as canonical name (possible typo)
  1644. kstyles/plastik/Makefile.am:19: warning: variable 'plastik_la_LIBADD' is defined but no program or
  1645. kstyles/plastik/Makefile.am:19: library has 'plastik_la' as canonical name (possible typo)
  1646. kstyles/plastik/Makefile.am:18: warning: variable 'plastik_la_LDFLAGS' is defined but no program or
  1647. kstyles/plastik/Makefile.am:18: library has 'plastik_la' as canonical name (possible typo)
  1648. kstyles/plastik/config/Makefile.am:4: error: 'kde_module_LTLIBRARIES' is used but 'kde_moduledir' is undefined
  1649. kstyles/plastik/config/Makefile.am:7: warning: variable 'kstyle_plastik_config_la_SOURCES' is defined but no program or
  1650. kstyles/plastik/config/Makefile.am:7: library has 'kstyle_plastik_config_la' as canonical name (possible typo)
  1651. kstyles/plastik/config/Makefile.am:6: warning: variable 'kstyle_plastik_config_la_LIBADD' is defined but no program or
  1652. kstyles/plastik/config/Makefile.am:6: library has 'kstyle_plastik_config_la' as canonical name (possible typo)
  1653. kstyles/plastik/config/Makefile.am:5: warning: variable 'kstyle_plastik_config_la_LDFLAGS' is defined but no program or
  1654. kstyles/plastik/config/Makefile.am:5: library has 'kstyle_plastik_config_la' as canonical name (possible typo)
  1655. kstyles/themes/Makefile.am:11: error: 'kde_conf_DATA' is used but 'kde_confdir' is undefined
  1656. kstyles/utils/installtheme/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1657. kstyles/utils/installtheme/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1658. kstyles/utils/installtheme/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1659. kstyles/web/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined
  1660. kstyles/web/Makefile.am:2:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1661. kstyles/web/Makefile.am:2:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1662. kstyles/web/Makefile.am:2:   If 'LT_INIT' is in 'configure.in', make sure
  1663. kstyles/web/Makefile.am:2:   its definition is in aclocal's search path.
  1664. kstyles/web/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1665. kstyles/web/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1666. kstyles/web/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1667. kunittest/Makefile.am:19: error: Libtool library used but 'LIBTOOL' is undefined
  1668. kunittest/Makefile.am:19:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1669. kunittest/Makefile.am:19:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1670. kunittest/Makefile.am:19:   If 'LT_INIT' is in 'configure.in', make sure
  1671. kunittest/Makefile.am:19:   its definition is in aclocal's search path.
  1672. kunittest/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1673. kunittest/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1674. kunittest/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1675. kutils/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined
  1676. kutils/Makefile.am:4:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1677. kutils/Makefile.am:4:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1678. kutils/Makefile.am:4:   If 'LT_INIT' is in 'configure.in', make sure
  1679. kutils/Makefile.am:4:   its definition is in aclocal's search path.
  1680. kutils/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1681. kutils/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1682. kutils/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1683. kutils/Makefile.am:24: error: 'kde_servicetypes_DATA' is used but 'kde_servicetypesdir' is undefined
  1684. kutils/ksettings/Makefile.am:2: error: Libtool library used but 'LIBTOOL' is undefined
  1685. kutils/ksettings/Makefile.am:2:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1686. kutils/ksettings/Makefile.am:2:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1687. kutils/ksettings/Makefile.am:2:   If 'LT_INIT' is in 'configure.in', make sure
  1688. kutils/ksettings/Makefile.am:2:   its definition is in aclocal's search path.
  1689. kutils/ksettings/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1690. kutils/ksettings/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1691. kutils/ksettings/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1692. kutils/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1693. kutils/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1694. kutils/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1695. kwallet/backend/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined
  1696. kwallet/backend/Makefile.am:4:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1697. kwallet/backend/Makefile.am:4:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1698. kwallet/backend/Makefile.am:4:   If 'LT_INIT' is in 'configure.in', make sure
  1699. kwallet/backend/Makefile.am:4:   its definition is in aclocal's search path.
  1700. kwallet/backend/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1701. kwallet/backend/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1702. kwallet/backend/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1703. kwallet/backend/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1704. kwallet/backend/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1705. kwallet/backend/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1706. kwallet/client/Makefile.am:4: error: Libtool library used but 'LIBTOOL' is undefined
  1707. kwallet/client/Makefile.am:4:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1708. kwallet/client/Makefile.am:4:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1709. kwallet/client/Makefile.am:4:   If 'LT_INIT' is in 'configure.in', make sure
  1710. kwallet/client/Makefile.am:4:   its definition is in aclocal's search path.
  1711. kwallet/client/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1712. kwallet/client/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1713. kwallet/client/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1714. kwallet/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1715. kwallet/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1716. kwallet/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1717. libkmid/Makefile.am:14: error: Libtool library used but 'LIBTOOL' is undefined
  1718. libkmid/Makefile.am:14:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1719. libkmid/Makefile.am:14:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1720. libkmid/Makefile.am:14:   If 'LT_INIT' is in 'configure.in', make sure
  1721. libkmid/Makefile.am:14:   its definition is in aclocal's search path.
  1722. libkmid/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1723. libkmid/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1724. libkmid/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1725. libkmid/tests/Makefile.am: error: C source seen but 'CC' is undefined
  1726. libkmid/tests/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  1727. libkmid/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1728. libkmid/tests/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1729. libkmid/tests/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1730. libkmid/tests/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1731. libkscreensaver/Makefile.am:4: error: undefined_symbols_allowed does not appear in AM_CONDITIONAL
  1732. libkscreensaver/Makefile.am:1: error: Libtool library used but 'LIBTOOL' is undefined
  1733. libkscreensaver/Makefile.am:1:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1734. libkscreensaver/Makefile.am:1:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1735. libkscreensaver/Makefile.am:1:   If 'LT_INIT' is in 'configure.in', make sure
  1736. libkscreensaver/Makefile.am:1:   its definition is in aclocal's search path.
  1737. libkscreensaver/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1738. libkscreensaver/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1739. libkscreensaver/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1740. libltdl/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined
  1741. libltdl/Makefile.am:6:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
  1742. libltdl/Makefile.am:6:   to 'configure.in' and run 'aclocal' and 'autoconf' again.
  1743. libltdl/Makefile.am:6:   If 'LT_INIT' is in 'configure.in', make sure
  1744. libltdl/Makefile.am:6:   its definition is in aclocal's search path.
  1745. libltdl/Makefile.am: error: C source seen but 'CC' is undefined
  1746. libltdl/Makefile.am:   The usual way to define 'CC' is to add 'AC_PROG_CC'
  1747. libltdl/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1748. pics/Makefile.am:5: error: include_SVGICONS does not appear in AM_CONDITIONAL
  1749. pics/Makefile.am: error: C++ source seen but 'CXX' is undefined
  1750. pics/Makefile.am:   The usual way to define 'CXX' is to add 'AC_PROG_CXX'
  1751. pics/Makefile.am:   to 'configure.in' and run 'autoconf' again.
  1752. make: *** [dist] Error 1
  1753. ==> ERROR: A failure occurred in build().
  1754.    Aborting...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement