1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
|
Script started on Sat Nov 27 19:08:37 1999
[slambo@jenlamb kdevelop-1.0beta2]$ ./configure
creating cache ./config.cache
checking for extra includes... no
checking for extra libs... no
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking for a C-Compiler...
checking for gcc... gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking how to run the C preprocessor... gcc -E
checking for a C++-Compiler...
checking for g++... g++
checking whether the C++ compiler (g++ -s) works... yes
checking whether the C++ compiler (g++ -s) is a cross-compiler... no
checking whether we are using GNU C++... yes
checking how to run the C++ preprocessor... g++ -E
checking for flex... flex
checking for flex... (cached) flex
checking for yywrap in -lfl... yes
checking lex output file root... lex.yy
checking whether yytext is a pointer... yes
checking host system type... i586-pc-linux-gnu
checking build system type... i586-pc-linux-gnu
checking for ranlib... ranlib
checking for ld used by GCC... /usr/i386-linux/bin/ld
checking if the linker (/usr/i386-linux/bin/ld) is GNU ld... yes
checking for BSD-compatible nm... /usr/bin/nm -B
checking command to parse /usr/bin/nm -B output... yes
checking for _ prefix in compiled symbols... (cached) no
checking whether ln -s works... yes
checking for object suffix... o
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.lo... yes
checking if g++ supports -fno-rtti -fno-exceptions ... yes
checking if g++ static flag -static works... none
checking if the linker (/usr/i386-linux/bin/ld) is GNU ld... yes
checking whether the linker (/usr/i386-linux/bin/ld) supports shared libraries... yes
checking command to parse /usr/bin/nm -B output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/i386-linux/bin/ld option to reload object files... -r
checking dynamic linker characteristics... Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for objdir... .libs
checking for dlopen... no
checking for dlopen in -ldl... no
checking for dld_link in -ldld... no
checking for shl_load... no
checking for shl_load in -ldld... no
creating libtool
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for libz... -lz
checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include
checking for libpng... -lpng -lz -lm
checking for main in -lcompat... no
checking for main in -lcrypt... no
checking for the third argument of getsockname... socklen_t
checking for dnet_ntoa in -ldnet... no
checking for dnet_ntoa in -ldnet_stub... no
checking for inet_ntoa... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for killpg in -lucb... no
checking for Qt... libraries /usr/lib, headers /usr/lib/qt/include
checking if Qt compiles without flags... yes
checking for moc... /usr/bin/moc
checking for rpath... yes
checking for bool... yes
checking for KDE... libraries /opt/kde/lib, headers /opt/kde/include
checking for KDE paths... compiling
checking for KDE headers installed... yes
checking for KDE libraries installed... yes
done
checking for giflib... yes
checking for libjpeg6b... no
checking for libjpeg... -ljpeg
checking for libtiff tiff... yes
checking for Qt documentation... NO
checking for kdelibs documentation... NO
checking for kdoc index... NO
checking for docbase... no
checking for kdoc2... no
updating cache ./config.cache
creating ./config.status
creating Makefile
creating kdevelop/Makefile
creating po/Makefile
creating kdlgloader/Makefile
creating kdevelop/classparser/Makefile
creating kdevelop/classwizard/Makefile
creating kdevelop/gfxview/Makefile
creating kdevelop/kdlgedit/Makefile
creating kdevelop/kwrite/Makefile
creating kdevelop/pics/Makefile
creating kdevelop/print/Makefile
creating kdevelop/vc/Makefile
creating kdevelop/pics/mini/Makefile
creating kdevelop/toolbar/Makefile
creating kdevelop/tools/Makefile
creating kdevelop/templates/Makefile
creating doc/de/manual/Makefile
creating doc/de/welcome/Makefile
creating doc/de/Makefile
creating doc/fr/Makefile
creating doc/pl/Makefile
creating doc/pt/manual/Makefile
creating doc/pt/programming/Makefile
creating doc/pt/Makefile
creating doc/sv/Makefile
creating doc/Makefile
creating doc/en/addendum/Makefile
creating doc/en/Makefile
creating doc/en/cref/Makefile
creating doc/en/kde_libref/Makefile
creating doc/en/manual/Makefile
creating doc/en/programming/Makefile
creating doc/en/tutorial/Makefile
creating doc/en/welcome/Makefile
creating doc/zh_CN.GB2312/Makefile
creating doc/ru/Makefile
creating doc/ru/cref/Makefile
creating doc/ru/welcome/Makefile
creating doc/ru/tutorial/Makefile
creating doc/ru/manual/Makefile
creating config.h
[slambo@jenlamb kdevelop-1.0beta2]$ make
make all-recursive
make[1]: Entering directory `/home/slambo/download/kdevelop-1.0beta2'
Making all in doc
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc'
Making all in de
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
Making all in manual
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/manual'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/manual'
Making all in welcome
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/welcome'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/welcome'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
Making all in en
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
Making all in addendum
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/addendum'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/addendum'
Making all in kde_libref
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/kde_libref'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/kde_libref'
Making all in manual
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/manual'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/manual'
Making all in programming
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/programming'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/programming'
Making all in tutorial
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/tutorial'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/tutorial'
Making all in cref
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/cref'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/cref'
Making all in welcome
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/welcome'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/welcome'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
Making all in fr
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/fr'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/fr'
Making all in pl
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pl'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pl'
Making all in pt
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
Making all in manual
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/manual'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/manual'
Making all in programming
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/programming'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/programming'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
Making all in sv
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/sv'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/sv'
Making all in zh_CN.GB2312
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/zh_CN.GB2312'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/zh_CN.GB2312'
Making all in ru
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
Making all in welcome
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/welcome'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/welcome'
Making all in manual
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/manual'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/manual'
Making all in tutorial
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/tutorial'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/tutorial'
Making all in cref
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/cref'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/cref'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc'
Making all in kdevelop
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
Making all in tools
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/tools'
cp processes.pl.in processes.pl
perl -npi -e 's%^\$templatedir = _;$%\$templatedir = \"'/opt/kde/share/apps'/kdevelop/templates\";%g;' \
processes.pl
perl -npi -e 's%^\$kde_icondir = _;$%\$kde_icondir = \"'/opt/kde/share/icons'\";%g;' \
processes.pl
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/tools'
Making all in templates
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/templates'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/templates'
Making all in toolbar
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/toolbar'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/toolbar'
Making all in pics
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
Making all in mini
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics/mini'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics/mini'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
Making all in kwrite
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kwrite'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c highlight.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kmimemagic.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kwdialog.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kwdoc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kwview.cpp
/usr/bin/moc ./kwdoc.h -o kwdoc.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kwdoc.moc.cpp
/usr/bin/moc ./highlight.h -o highlight.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c highlight.moc.cpp
/usr/bin/moc ./kwdialog.h -o kwdialog.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kwdialog.moc.cpp
/usr/bin/moc ./kwview.h -o kwview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kwview.moc.cpp
rm -f libkwrite.a
ar cru libkwrite.a highlight.o kmimemagic.o kwdialog.o kwdoc.o kwview.o kwdoc.moc.o highlight.moc.o kwdialog.moc.o kwview.moc.o
ranlib libkwrite.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kwrite'
Making all in kdlgedit
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kdlgedit'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgedit.cpp
kdlgloader.h: In function `bool loadKDlgLdrLibrary()':
In file included from kdlgedit.cpp:41:
kdlgloader.h:77: warning: ANSI C++ forbids cast to non-reference type used as lvalue
kdlgloader.h:78: warning: ANSI C++ forbids cast to non-reference type used as lvalue
kdlgloader.h:79: warning: ANSI C++ forbids cast to non-reference type used as lvalue
kdlgloader.h:80: warning: ANSI C++ forbids cast to non-reference type used as lvalue
kdlgloader.h:81: warning: ANSI C++ forbids cast to non-reference type used as lvalue
kdlgloader.h:82: warning: ANSI C++ forbids cast to non-reference type used as lvalue
kdlgloader.h:83: warning: ANSI C++ forbids cast to non-reference type used as lvalue
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgeditwidget.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgpropwidget.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgwidgets.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgdialogs.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgitems.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgnewwidget.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_widget.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_pushbutton.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c itemsglobal.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_lineedit.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgotherdlgs.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgnewdialogdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_label.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_lcdnumber.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_radiobutton.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_checkbox.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_combobox.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_listbox.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_progressbar.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_multilineedit.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_spinbox.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_slider.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_scrollbar.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_groupbox.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_listview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kdatepicker.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kdatetable.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kcolorbutton.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kled.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kledlamp.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kprogress.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kkeybutton.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_krestrictedline.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_ktreelist.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c item_kseparator.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgreadmedlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgpropertybase.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgitembase.cpp
/usr/bin/moc ./kdlgnewwidget.h -o kdlgnewwidget.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgnewwidget.moc.cpp
/usr/bin/moc ./kdlgproplvis.h -o kdlgproplvis.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgproplvis.moc.cpp
/usr/bin/moc ./items.h -o items.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c items.moc.cpp
/usr/bin/moc ./kdlgnewdialogdlg.h -o kdlgnewdialogdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgnewdialogdlg.moc.cpp
/usr/bin/moc ./kdlgitems.h -o kdlgitems.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgitems.moc.cpp
/usr/bin/moc ./kdlgproplv.h -o kdlgproplv.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgproplv.moc.cpp
/usr/bin/moc ./kdlgdialogs.h -o kdlgdialogs.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgdialogs.moc.cpp
/usr/bin/moc ./kdlgreadmedlg.h -o kdlgreadmedlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgreadmedlg.moc.cpp
/usr/bin/moc ./kdlgpropwidget.h -o kdlgpropwidget.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgpropwidget.moc.cpp
/usr/bin/moc ./kdlgedit.h -o kdlgedit.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgedit.moc.cpp
/usr/bin/moc ./kdlgwidgets.h -o kdlgwidgets.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgwidgets.moc.cpp
/usr/bin/moc ./kdlgeditwidget.h -o kdlgeditwidget.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgeditwidget.moc.cpp
/usr/bin/moc ./kdlgitembase.h -o kdlgitembase.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgitembase.moc.cpp
/usr/bin/moc ./kdlgotherdlgs.h -o kdlgotherdlgs.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kdlgotherdlgs.moc.cpp
rm -f libkdlgedit.a
ar cru libkdlgedit.a kdlgedit.o kdlgeditwidget.o kdlgpropwidget.o kdlgwidgets.o kdlgdialogs.o kdlgitems.o kdlgnewwidget.o item_widget.o item_pushbutton.o itemsglobal.o item_lineedit.o kdlgotherdlgs.o kdlgnewdialogdlg.o item_label.o item_lcdnumber.o item_radiobutton.o item_checkbox.o item_combobox.o item_listbox.o item_progressbar.o item_multilineedit.o item_spinbox.o item_slider.o item_scrollbar.o item_groupbox.o item_listview.o item_kdatepicker.o item_kdatetable.o item_kcolorbutton.o item_kled.o item_kledlamp.o item_kprogress.o item_kkeybutton.o item_krestrictedline.o item_ktreelist.o item_kseparator.o kdlgreadmedlg.o kdlgpropertybase.o kdlgitembase.o kdlgnewwidget.moc.o kdlgproplvis.moc.o items.moc.o kdlgnewdialogdlg.moc.o kdlgitems.moc.o kdlgproplv.moc.o kdlgdialogs.moc.o kdlgreadmedlg.moc.o kdlgpropwidget.moc.o kdlgedit.moc.o kdlgwidgets.moc.o kdlgeditwidget.moc.o kdlgitembase.moc.o kdlgotherdlgs.moc.o
ranlib libkdlgedit.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kdlgedit'
Making all in classparser
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classparser'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c tokenizer.cc
lex.yy.cc: In method `int yyFlexLexer::yylex()':
lex.yy.cc:857: warning: label `find_rule' defined but not used
lex.yy.cc:791: warning: `char * yy_cp' might be used uninitialized in this function
lex.yy.cc: At top level:
lex.yy.cc:1970: warning: `void * yy_flex_realloc(void *, yy_size_t)' defined but not used
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ClassParser.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ClassStore.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedClass.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedMethod.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedAttribute.cc
ParsedItem.h: In method `CParsedAttribute::CParsedAttribute()':
ParsedItem.h:48: warning: `class QString * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
ParsedItem.h:48: warning: `class QString * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedArgument.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedParent.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedSignalSlot.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedSignalText.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c PersistantClassStore.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedStruct.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ClassTreeNode.cc
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedContainer.cc
ParsedItem.h: In method `CParsedContainer::CParsedContainer()':
ParsedItem.h:48: warning: `class QString * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
ParsedItem.h:48: warning: `class QString * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
/usr/lib/qt/include/qstring.h:160: warning: `class QArrayT<char> * this' might be used uninitialized in this function
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ParsedClassContainer.cc
rm -f libclassparser.a
ar cru libclassparser.a tokenizer.o ClassParser.o ClassStore.o ParsedClass.o ParsedMethod.o ParsedAttribute.o ParsedArgument.o ParsedParent.o ParsedSignalSlot.o ParsedSignalText.o PersistantClassStore.o ParsedStruct.o ClassTreeNode.o ParsedContainer.o ParsedClassContainer.o
ranlib libclassparser.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classparser'
Making all in print
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/print'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cfileprintdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cprintdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cconfigenscriptdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cconfiga2psdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cdatepikerdlg.cpp
/usr/bin/moc ./cconfigenscriptdlg.h -o cconfigenscriptdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cconfigenscriptdlg.moc.cpp
/usr/bin/moc ./cdatepikerdlg.h -o cdatepikerdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cdatepikerdlg.moc.cpp
/usr/bin/moc ./cconfiga2psdlg.h -o cconfiga2psdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cconfiga2psdlg.moc.cpp
/usr/bin/moc ./cprintdlg.h -o cprintdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cprintdlg.moc.cpp
/usr/bin/moc ./cfileprintdlg.h -o cfileprintdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cfileprintdlg.moc.cpp
rm -f libprint.a
ar cru libprint.a cfileprintdlg.o cprintdlg.o cconfigenscriptdlg.o cconfiga2psdlg.o cdatepikerdlg.o cconfigenscriptdlg.moc.o cdatepikerdlg.moc.o cconfiga2psdlg.moc.o cprintdlg.moc.o cfileprintdlg.moc.o
ranlib libprint.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/print'
Making all in vc
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/vc'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c versioncontrol.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cvs.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cvsdialog.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c commitdialog.cpp
/usr/bin/moc ./cvsdialog.h -o cvsdialog.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cvsdialog.moc.cpp
rm -f libvc.a
ar cru libvc.a versioncontrol.o cvs.o cvsdialog.o commitdialog.o cvsdialog.moc.o
ranlib libvc.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/vc'
Making all in gfxview
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/gfxview'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassBox.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassTree.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassTreeScrollView.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassTreeWindow.cpp
/usr/bin/moc ./GfxClassTreeWindow.h -o GfxClassTreeWindow.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassTreeWindow.moc.cpp
/usr/bin/moc ./GfxClassTree.h -o GfxClassTree.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassTree.moc.cpp
/usr/bin/moc ./GfxClassBox.h -o GfxClassBox.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassBox.moc.cpp
/usr/bin/moc ./GfxClassTreeScrollView.h -o GfxClassTreeScrollView.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c GfxClassTreeScrollView.moc.cpp
rm -f libgfxview.a
ar cru libgfxview.a GfxClassBox.o GfxClassTree.o GfxClassTreeScrollView.o GfxClassTreeWindow.o GfxClassTreeWindow.moc.o GfxClassTree.moc.o GfxClassBox.moc.o GfxClassTreeScrollView.moc.o
ranlib libgfxview.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/gfxview'
Making all in classwizard
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classwizard'
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasswizarddlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ccwvirtualmethodview.cpp
/usr/bin/moc ./ccwvirtualmethodview.h -o ccwvirtualmethodview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ccwvirtualmethodview.moc.cpp
/usr/bin/moc ./cclasswizarddlg.h -o cclasswizarddlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasswizarddlg.moc.cpp
rm -f libclasswizard.a
ar cru libclasswizard.a cclasswizarddlg.o ccwvirtualmethodview.o ccwvirtualmethodview.moc.o cclasswizarddlg.moc.o
ranlib libclasswizard.a
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classwizard'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c klistview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c main.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cnewfiledlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c coutputwidget.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop_init.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctabctl.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop_noslot.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop_project.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclassview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ceditwidget.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevsetupdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop_classview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cprjoptionsdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckappwizard.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c crealfileview.cpp
crealfileview.cpp: In method `class KPopupMenu * CRealFileView::getCurrentPopup()':
crealfileview.cpp:233: warning: `enum VersionControl::State reg' might be used uninitialized in this function
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c clogfileview.cpp
clogfileview.cpp: In method `class KPopupMenu * CLogFileView::getCurrentPopup()':
clogfileview.cpp:252: warning: `enum VersionControl::State reg' might be used uninitialized in this function
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cdocbrowser.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cproject.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kswallow.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cgeneratenewfile.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c doctreeview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cnewclassdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cfilepropdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddexistingfiledlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cgrouppropertiesdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cupdatekdedocdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ccreatedocdatabasedlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctoolclass.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cdoctreepropdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop_whatsthis.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cfinddoctextdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kstartuplogo.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ktipofday.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevinstall.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop_kdlginit.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddclassmethoddlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddclassattributedlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasstooldlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasstreehandler.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctreehandler.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctreeview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cerrormessageparser.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cexecuteargdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ccvaddfolderdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c klangcombo.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddnewtranslationdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c grepdialog.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctoolsconfigdlg.cpp
ctoolsconfigdlg.cpp: In method `void CToolsConfigDlg::slotToolMoveDown()':
ctoolsconfigdlg.cpp:218: warning: comparison between signed and unsigned
ctoolsconfigdlg.cpp: In method `void CToolsConfigDlg::slotShowToolProp(int)':
ctoolsconfigdlg.cpp:260: warning: comparison between signed and unsigned
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cbugreportdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasstooltreeview.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cmakemanualdlg.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cmakemanualdlgdata.cpp
/usr/bin/moc ./doctreeview.h -o doctreeview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c doctreeview.moc.cpp
/usr/bin/moc ./ctoolsconfigdlg.h -o ctoolsconfigdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctoolsconfigdlg.moc.cpp
/usr/bin/moc ./cdoctreepropdlg.h -o cdoctreepropdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cdoctreepropdlg.moc.cpp
/usr/bin/moc ./cclasstooltreeview.h -o cclasstooltreeview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasstooltreeview.moc.cpp
/usr/bin/moc ./cupdatekdedocdlg.h -o cupdatekdedocdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cupdatekdedocdlg.moc.cpp
/usr/bin/moc ./cexecuteargdlg.h -o cexecuteargdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cexecuteargdlg.moc.cpp
/usr/bin/moc ./ceditwidget.h -o ceditwidget.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ceditwidget.moc.cpp
/usr/bin/moc ./ctreeview.h -o ctreeview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctreeview.moc.cpp
/usr/bin/moc ./caddexistingfiledlg.h -o caddexistingfiledlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddexistingfiledlg.moc.cpp
/usr/bin/moc ./kstartuplogo.h -o kstartuplogo.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kstartuplogo.moc.cpp
/usr/bin/moc ./kswallow.h -o kswallow.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c kswallow.moc.cpp
/usr/bin/moc ./cgrouppropertiesdlg.h -o cgrouppropertiesdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cgrouppropertiesdlg.moc.cpp
/usr/bin/moc ./cbugreportdlg.h -o cbugreportdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cbugreportdlg.moc.cpp
/usr/bin/moc ./cclassview.h -o cclassview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclassview.moc.cpp
/usr/bin/moc ./ckdevsetupdlg.h -o ckdevsetupdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevsetupdlg.moc.cpp
/usr/bin/moc ./cmakemanualdlg.h -o cmakemanualdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cmakemanualdlg.moc.cpp
/usr/bin/moc ./coutputwidget.h -o coutputwidget.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c coutputwidget.moc.cpp
/usr/bin/moc ./ccreatedocdatabasedlg.h -o ccreatedocdatabasedlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ccreatedocdatabasedlg.moc.cpp
/usr/bin/moc ./cnewclassdlg.h -o cnewclassdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cnewclassdlg.moc.cpp
/usr/bin/moc ./cfilepropdlg.h -o cfilepropdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cfilepropdlg.moc.cpp
/usr/bin/moc ./klangcombo.h -o klangcombo.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c klangcombo.moc.cpp
/usr/bin/moc ./ctabctl.h -o ctabctl.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ctabctl.moc.cpp
/usr/bin/moc ./grepdialog.h -o grepdialog.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c grepdialog.moc.cpp
/usr/bin/moc ./ckappwizard.h -o ckappwizard.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckappwizard.moc.cpp
/usr/bin/moc ./clogfileview.h -o clogfileview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c clogfileview.moc.cpp
/usr/bin/moc ./klistview.h -o klistview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c klistview.moc.cpp
/usr/bin/moc ./crealfileview.h -o crealfileview.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c crealfileview.moc.cpp
/usr/bin/moc ./ckdevinstall.h -o ckdevinstall.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevinstall.moc.cpp
/usr/bin/moc ./cnewfiledlg.h -o cnewfiledlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cnewfiledlg.moc.cpp
/usr/bin/moc ./ktipofday.h -o ktipofday.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ktipofday.moc.cpp
/usr/bin/moc ./caddclassattributedlg.h -o caddclassattributedlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddclassattributedlg.moc.cpp
/usr/bin/moc ./cclasstooldlg.h -o cclasstooldlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cclasstooldlg.moc.cpp
/usr/bin/moc ./cprjoptionsdlg.h -o cprjoptionsdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cprjoptionsdlg.moc.cpp
/usr/bin/moc ./cfinddoctextdlg.h -o cfinddoctextdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cfinddoctextdlg.moc.cpp
/usr/bin/moc ./ccvaddfolderdlg.h -o ccvaddfolderdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ccvaddfolderdlg.moc.cpp
/usr/bin/moc ./caddclassmethoddlg.h -o caddclassmethoddlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddclassmethoddlg.moc.cpp
/usr/bin/moc ./caddnewtranslationdlg.h -o caddnewtranslationdlg.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c caddnewtranslationdlg.moc.cpp
/usr/bin/moc ./cdocbrowser.h -o cdocbrowser.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c cdocbrowser.moc.cpp
/usr/bin/moc ./ckdevelop.h -o ckdevelop.moc.cpp
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/opt/kde/include -I/usr/lib/qt/include -I/usr/X11R6/include -O2 -Wall -c ckdevelop.moc.cpp
/bin/sh ../libtool --silent --mode=link g++ -O2 -Wall -s -o kdevelop -L/opt/kde/lib -L/usr/X11R6/lib -rpath /opt/kde/lib -rpath /usr/X11R6/lib klistview.o ckdevelop.o main.o cnewfiledlg.o coutputwidget.o ckdevelop_init.o ctabctl.o ckdevelop_noslot.o ckdevelop_project.o cclassview.o ceditwidget.o ckdevsetupdlg.o ckdevelop_classview.o cprjoptionsdlg.o ckappwizard.o crealfileview.o clogfileview.o cdocbrowser.o cproject.o kswallow.o cgeneratenewfile.o doctreeview.o cnewclassdlg.o cfilepropdlg.o caddexistingfiledlg.o cgrouppropertiesdlg.o cupdatekdedocdlg.o ccreatedocdatabasedlg.o ctoolclass.o cdoctreepropdlg.o ckdevelop_whatsthis.o cfinddoctextdlg.o kstartuplogo.o ktipofday.o ckdevinstall.o ckdevelop_kdlginit.o caddclassmethoddlg.o caddclassattributedlg.o cclasstooldlg.o cclasstreehandler.o ctreehandler.o ctreeview.o cerrormessageparser.o cexecuteargdlg.o ccvaddfolderdlg.o klangcombo.o caddnewtranslationdlg.o grepdialog.o ctoolsconfigdlg.o cbugreportdlg.o cclasstooltreeview.o cmakemanualdlg.o cmakemanualdlgdata.o doctreeview.moc.o ctoolsconfigdlg.moc.o cdoctreepropdlg.moc.o cclasstooltreeview.moc.o cupdatekdedocdlg.moc.o cexecuteargdlg.moc.o ceditwidget.moc.o ctreeview.moc.o caddexistingfiledlg.moc.o kstartuplogo.moc.o kswallow.moc.o cgrouppropertiesdlg.moc.o cbugreportdlg.moc.o cclassview.moc.o ckdevsetupdlg.moc.o cmakemanualdlg.moc.o coutputwidget.moc.o ccreatedocdatabasedlg.moc.o cnewclassdlg.moc.o cfilepropdlg.moc.o klangcombo.moc.o ctabctl.moc.o grepdialog.moc.o ckappwizard.moc.o clogfileview.moc.o klistview.moc.o crealfileview.moc.o ckdevinstall.moc.o cnewfiledlg.moc.o ktipofday.moc.o caddclassattributedlg.moc.o cclasstooldlg.moc.o cprjoptionsdlg.moc.o cfinddoctextdlg.moc.o ccvaddfolderdlg.moc.o caddclassmethoddlg.moc.o caddnewtranslationdlg.moc.o cdocbrowser.moc.o ckdevelop.moc.o ./vc/libvc.a ./print/libprint.a ./gfxview/libgfxview.a ./kdlgedit/libkdlgedit.a ./kwrite/libkwrite.a ./classparser/libclassparser.a ./classwizard/libclasswizard.a -lkfile -lkfm -lkspell -lkhtmlw -lkimgio -ljpeg -ltiff -ljpeg -lz -lpng -lz -lm -lqt -lpng -lz -lm -lX11 -lm -ljscript -lkdeui -lkdecore -lqt -lXext -lX11 -lfl -ldb -ldl
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
Making all in kdlgloader
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdlgloader'
/bin/sh ../libtool --silent --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/lib/qt/include -I/usr/X11R6/include -I/opt/kde/include -O2 -Wall -c kdlgldr.cpp
/bin/sh ../libtool --silent --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/lib/qt/include -I/usr/X11R6/include -I/opt/kde/include -O2 -Wall -c kdlgldr_itemstuff.cpp
/bin/sh ../libtool --silent --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/lib/qt/include -I/usr/X11R6/include -I/opt/kde/include -O2 -Wall -c kdlgptrdb.cpp
/bin/sh ../libtool --silent --mode=link g++ -O2 -Wall -L/usr/X11R6/lib -o libkdlgloader.la -rpath /opt/kde/lib -version-info 1:0 -L/usr/X11R6/lib kdlgldr.lo kdlgldr_itemstuff.lo kdlgptrdb.lo -lXext -lqt -lpng -lz -lm -lX11
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdlgloader'
Making all in po
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/po'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/po'
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2'
make[1]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2'
[slambo@jenlamb kdevelop-1.0beta2]$ su
Password:
[root@jenlamb kdevelop-1.0beta2]# make insta
make: *** No rule to make target `insta'. Stop.
[root@jenlamb kdevelop-1.0beta2]# make install
Making install in doc
make[1]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc'
Making install in de
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
Making install in manual
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/manual'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/manual'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/de/kdevelop
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/de/kdevelop/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/de/kdevelop/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/de/kdevelop/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/de/kdevelop/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/de/kdevelop/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/de/kdevelop/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/de/kdevelop/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/de/kdevelop/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/de/kdevelop/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/de/kdevelop/index-8.html
/usr/bin/install -c -m 644 index-9.html /opt/kde/share/doc/HTML/de/kdevelop/index-9.html
/usr/bin/install -c -m 644 index-10.html /opt/kde/share/doc/HTML/de/kdevelop/index-10.html
/usr/bin/install -c -m 644 index-11.html /opt/kde/share/doc/HTML/de/kdevelop/index-11.html
/usr/bin/install -c -m 644 index-12.html /opt/kde/share/doc/HTML/de/kdevelop/index-12.html
/usr/bin/install -c -m 644 index-13.html /opt/kde/share/doc/HTML/de/kdevelop/index-13.html
/usr/bin/install -c -m 644 index-14.html /opt/kde/share/doc/HTML/de/kdevelop/index-14.html
/usr/bin/install -c -m 644 index-15.html /opt/kde/share/doc/HTML/de/kdevelop/index-15.html
/usr/bin/install -c -m 644 index-16.html /opt/kde/share/doc/HTML/de/kdevelop/index-16.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/manual'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/manual'
Making install in welcome
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/welcome'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/welcome'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/de/kdevelop/welcome
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/de/kdevelop/welcome/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/de/kdevelop/welcome/index.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/welcome'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de/welcome'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/de/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/de/kdevelop/tip.database
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/de'
Making install in en
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
Making install in addendum
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/addendum'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/addendum'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/addendum
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/en/kdevelop/addendum/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/en/kdevelop/addendum/index-8.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/addendum'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/addendum'
Making install in kde_libref
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/kde_libref'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/kde_libref'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/kde_libref
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-8.html
/usr/bin/install -c -m 644 index-9.html /opt/kde/share/doc/HTML/en/kdevelop/kde_libref/index-9.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/kde_libref'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/kde_libref'
Making install in manual
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/manual'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/manual'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/en/kdevelop/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/en/kdevelop/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/en/kdevelop/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/en/kdevelop/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/en/kdevelop/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/en/kdevelop/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/en/kdevelop/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/en/kdevelop/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/en/kdevelop/index-8.html
/usr/bin/install -c -m 644 index-9.html /opt/kde/share/doc/HTML/en/kdevelop/index-9.html
/usr/bin/install -c -m 644 index-10.html /opt/kde/share/doc/HTML/en/kdevelop/index-10.html
/usr/bin/install -c -m 644 index-11.html /opt/kde/share/doc/HTML/en/kdevelop/index-11.html
/usr/bin/install -c -m 644 index-12.html /opt/kde/share/doc/HTML/en/kdevelop/index-12.html
/usr/bin/install -c -m 644 index-13.html /opt/kde/share/doc/HTML/en/kdevelop/index-13.html
/usr/bin/install -c -m 644 index-14.html /opt/kde/share/doc/HTML/en/kdevelop/index-14.html
/usr/bin/install -c -m 644 index-15.html /opt/kde/share/doc/HTML/en/kdevelop/index-15.html
/usr/bin/install -c -m 644 index-16.html /opt/kde/share/doc/HTML/en/kdevelop/index-16.html
/usr/bin/install -c -m 644 index-17.html /opt/kde/share/doc/HTML/en/kdevelop/index-17.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/manual'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/manual'
Making install in programming
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/programming'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/programming'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/programming
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/en/kdevelop/programming/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-8.html
/usr/bin/install -c -m 644 index-9.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-9.html
/usr/bin/install -c -m 644 index-10.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-10.html
/usr/bin/install -c -m 644 index-11.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-11.html
/usr/bin/install -c -m 644 index-12.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-12.html
/usr/bin/install -c -m 644 index-13.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-13.html
/usr/bin/install -c -m 644 index-14.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-14.html
/usr/bin/install -c -m 644 index-15.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-15.html
/usr/bin/install -c -m 644 index-16.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-16.html
/usr/bin/install -c -m 644 index-17.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-17.html
/usr/bin/install -c -m 644 index-18.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-18.html
/usr/bin/install -c -m 644 index-19.html /opt/kde/share/doc/HTML/en/kdevelop/programming/index-19.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/programming'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/programming'
Making install in tutorial
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/tutorial'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/tutorial'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/tutorial
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/en/kdevelop/tutorial/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/tutorial/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/en/kdevelop/tutorial/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/en/kdevelop/tutorial/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/en/kdevelop/tutorial/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/en/kdevelop/tutorial/index-4.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/tutorial'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/tutorial'
Making install in cref
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/cref'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/cref'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/reference/C/
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/reference/C/cref.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/cref'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/cref'
Making install in welcome
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/welcome'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/welcome'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/welcome
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/en/kdevelop/welcome/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/en/kdevelop/welcome/index.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/welcome'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en/welcome'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/en/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/en/kdevelop/tip.database
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/en'
Making install in fr
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/fr'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/fr'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/fr/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/fr/kdevelop/tip.database
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/fr'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/fr'
Making install in pl
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pl'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pl'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/pl/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/pl/kdevelop/tip.database
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pl'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pl'
Making install in pt
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
Making install in manual
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/manual'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/manual'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/pt/kdevelop
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/pt/kdevelop/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/pt/kdevelop/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/pt/kdevelop/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/pt/kdevelop/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/pt/kdevelop/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/pt/kdevelop/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/pt/kdevelop/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/pt/kdevelop/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/pt/kdevelop/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/pt/kdevelop/index-8.html
/usr/bin/install -c -m 644 index-9.html /opt/kde/share/doc/HTML/pt/kdevelop/index-9.html
/usr/bin/install -c -m 644 index-10.html /opt/kde/share/doc/HTML/pt/kdevelop/index-10.html
/usr/bin/install -c -m 644 index-11.html /opt/kde/share/doc/HTML/pt/kdevelop/index-11.html
/usr/bin/install -c -m 644 index-12.html /opt/kde/share/doc/HTML/pt/kdevelop/index-12.html
/usr/bin/install -c -m 644 index-13.html /opt/kde/share/doc/HTML/pt/kdevelop/index-13.html
/usr/bin/install -c -m 644 index-14.html /opt/kde/share/doc/HTML/pt/kdevelop/index-14.html
/usr/bin/install -c -m 644 index-15.html /opt/kde/share/doc/HTML/pt/kdevelop/index-15.html
/usr/bin/install -c -m 644 index-16.html /opt/kde/share/doc/HTML/pt/kdevelop/index-16.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/manual'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/manual'
Making install in programming
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/programming'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/programming'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/pt/kdevelop/programming
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/pt/kdevelop/programming/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-6.html
/usr/bin/install -c -m 644 index-7.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-7.html
/usr/bin/install -c -m 644 index-8.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-8.html
/usr/bin/install -c -m 644 index-9.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-9.html
/usr/bin/install -c -m 644 index-10.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-10.html
/usr/bin/install -c -m 644 index-11.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-11.html
/usr/bin/install -c -m 644 index-12.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-12.html
/usr/bin/install -c -m 644 index-13.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-13.html
/usr/bin/install -c -m 644 index-14.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-14.html
/usr/bin/install -c -m 644 index-15.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-15.html
/usr/bin/install -c -m 644 index-16.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-16.html
/usr/bin/install -c -m 644 index-17.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-17.html
/usr/bin/install -c -m 644 index-18.html /opt/kde/share/doc/HTML/pt/kdevelop/programming/index-18.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/programming'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt/programming'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/pt/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/pt/kdevelop/tip.database
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/pt'
Making install in sv
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/sv'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/sv'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/sv/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/sv/kdevelop/tip.database
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/sv'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/sv'
Making install in zh_CN.GB2312
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/zh_CN.GB2312'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/zh_CN.GB2312'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/zh_CN.GB2312/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/zh_CN.GB2312/kdevelop/tip.database
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/zh_CN.GB2312'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/zh_CN.GB2312'
Making install in ru
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
Making install in welcome
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/welcome'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/welcome'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/ru/kdevelop/welcome
/usr/bin/install -c -m 644 logotp3.png /opt/kde/share/doc/HTML/ru/kdevelop/welcome/logotp3.png
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/ru/kdevelop/welcome/index.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/welcome'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/welcome'
Making install in manual
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/manual'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/manual'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/ru/kdevelop
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/ru/kdevelop/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/ru/kdevelop/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/ru/kdevelop/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/ru/kdevelop/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/ru/kdevelop/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/ru/kdevelop/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/ru/kdevelop/index-6.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/manual'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/manual'
Making install in tutorial
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/tutorial'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/tutorial'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/ru/kdevelop/tutorial
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index.html
/usr/bin/install -c -m 644 index-1.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index-1.html
/usr/bin/install -c -m 644 index-2.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index-2.html
/usr/bin/install -c -m 644 index-3.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index-3.html
/usr/bin/install -c -m 644 index-4.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index-4.html
/usr/bin/install -c -m 644 index-5.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index-5.html
/usr/bin/install -c -m 644 index-6.html /opt/kde/share/doc/HTML/ru/kdevelop/tutorial/index-6.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/tutorial'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/tutorial'
Making install in cref
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/cref'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/cref'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/doc/HTML/ru/kdevelop/reference/C/
/usr/bin/install -c -m 644 index.html /opt/kde/share/doc/HTML/ru/kdevelop/reference/C/cref.html
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/cref'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru/cref'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/doc/HTML/ru/kdevelop/
/usr/bin/install -c -m 644 tip.database /opt/kde/share/doc/HTML/ru/kdevelop/tip.database
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc/ru'
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/doc'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc'
make[1]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/doc'
Making install in kdevelop
make[1]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
Making install in tools
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/tools'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/tools'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/apps/kdevelop/tools/
/usr/bin/install -c -m 644 ./processesend.pl /opt/kde/share/apps/kdevelop/tools//processesend.pl
/usr/bin/install -c -m 644 ./processes.pl /opt/kde/share/apps/kdevelop/tools//processes.pl
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/tools'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/tools'
Making install in templates
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/templates'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/templates'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/apps/kdevelop/templates
/usr/bin/install -c -m 644 ./AUTHORS_template /opt/kde/share/apps/kdevelop/templates/AUTHORS_template
/usr/bin/install -c -m 644 ./COPYING_template /opt/kde/share/apps/kdevelop/templates/COPYING_template
/usr/bin/install -c -m 644 ./ChangeLog_template /opt/kde/share/apps/kdevelop/templates/ChangeLog_template
/usr/bin/install -c -m 644 ./INSTALL_template /opt/kde/share/apps/kdevelop/templates/INSTALL_template
/usr/bin/install -c -m 644 ./README_template /opt/kde/share/apps/kdevelop/templates/README_template
/usr/bin/install -c -m 644 ./TODO_template /opt/kde/share/apps/kdevelop/templates/TODO_template
/usr/bin/install -c -m 644 ./cpp_template /opt/kde/share/apps/kdevelop/templates/cpp_template
/usr/bin/install -c -m 644 ./handbook_en_template /opt/kde/share/apps/kdevelop/templates/handbook_en_template
/usr/bin/install -c -m 644 ./header_template /opt/kde/share/apps/kdevelop/templates/header_template
/usr/bin/install -c -m 644 ./kdelnk_template /opt/kde/share/apps/kdevelop/templates/kdelnk_template
/usr/bin/install -c -m 644 ./lsm_template /opt/kde/share/apps/kdevelop/templates/lsm_template
/usr/bin/install -c -m 644 ./normal.tar.gz /opt/kde/share/apps/kdevelop/templates/normal.tar.gz
/usr/bin/install -c -m 644 ./mini.tar.gz /opt/kde/share/apps/kdevelop/templates/mini.tar.gz
/usr/bin/install -c -m 644 ./cpp.tar.gz /opt/kde/share/apps/kdevelop/templates/cpp.tar.gz
/usr/bin/install -c -m 644 ./preview1 /opt/kde/share/apps/kdevelop/templates/preview1
/usr/bin/install -c -m 644 ./preview2 /opt/kde/share/apps/kdevelop/templates/preview2
/usr/bin/install -c -m 644 ./icon_template /opt/kde/share/apps/kdevelop/templates/icon_template
/usr/bin/install -c -m 644 ./qt.tar.gz /opt/kde/share/apps/kdevelop/templates/qt.tar.gz
/usr/bin/install -c -m 644 ./c.tar.gz /opt/kde/share/apps/kdevelop/templates/c.tar.gz
/usr/bin/install -c -m 644 ./nif_template /opt/kde/share/apps/kdevelop/templates/nif_template
/usr/bin/install -c -m 644 ./lexical_template /opt/kde/share/apps/kdevelop/templates/lexical_template
/usr/bin/install -c -m 644 ./cvsignore_template /opt/kde/share/apps/kdevelop/templates/cvsignore_template
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/templates'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/templates'
Making install in toolbar
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/toolbar'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/toolbar'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/apps/kdevelop/toolbar
/usr/bin/install -c -m 644 ./make.xpm /opt/kde/share/apps/kdevelop/toolbar/make.xpm
/usr/bin/install -c -m 644 ./stop_proc.xpm /opt/kde/share/apps/kdevelop/toolbar/stop_proc.xpm
/usr/bin/install -c -m 644 ./run.xpm /opt/kde/share/apps/kdevelop/toolbar/run.xpm
/usr/bin/install -c -m 644 ./copy.xpm /opt/kde/share/apps/kdevelop/toolbar/copy.xpm
/usr/bin/install -c -m 644 ./paste.xpm /opt/kde/share/apps/kdevelop/toolbar/paste.xpm
/usr/bin/install -c -m 644 ./open.xpm /opt/kde/share/apps/kdevelop/toolbar/open.xpm
/usr/bin/install -c -m 644 ./cut.xpm /opt/kde/share/apps/kdevelop/toolbar/cut.xpm
/usr/bin/install -c -m 644 ./save.xpm /opt/kde/share/apps/kdevelop/toolbar/save.xpm
/usr/bin/install -c -m 644 ./save_all.xpm /opt/kde/share/apps/kdevelop/toolbar/save_all.xpm
/usr/bin/install -c -m 644 ./undo.xpm /opt/kde/share/apps/kdevelop/toolbar/undo.xpm
/usr/bin/install -c -m 644 ./redo.xpm /opt/kde/share/apps/kdevelop/toolbar/redo.xpm
/usr/bin/install -c -m 644 ./openprj.xpm /opt/kde/share/apps/kdevelop/toolbar/openprj.xpm
/usr/bin/install -c -m 644 ./compfile.xpm /opt/kde/share/apps/kdevelop/toolbar/compfile.xpm
/usr/bin/install -c -m 644 ./rebuild.xpm /opt/kde/share/apps/kdevelop/toolbar/rebuild.xpm
/usr/bin/install -c -m 644 ./print.xpm /opt/kde/share/apps/kdevelop/toolbar/print.xpm
/usr/bin/install -c -m 644 ./debugger.xpm /opt/kde/share/apps/kdevelop/toolbar/debugger.xpm
/usr/bin/install -c -m 644 ./lookup.xpm /opt/kde/share/apps/kdevelop/toolbar/lookup.xpm
/usr/bin/install -c -m 644 ./newwidget.xpm /opt/kde/share/apps/kdevelop/toolbar/newwidget.xpm
/usr/bin/install -c -m 644 ./generate.xpm /opt/kde/share/apps/kdevelop/toolbar/generate.xpm
/usr/bin/install -c -m 644 ./output_win.xpm /opt/kde/share/apps/kdevelop/toolbar/output_win.xpm
/usr/bin/install -c -m 644 ./tree_win.xpm /opt/kde/share/apps/kdevelop/toolbar/tree_win.xpm
/usr/bin/install -c -m 644 ./reload_page.xpm /opt/kde/share/apps/kdevelop/toolbar/reload_page.xpm
/usr/bin/install -c -m 644 ./start_page.xpm /opt/kde/share/apps/kdevelop/toolbar/start_page.xpm
/usr/bin/install -c -m 644 ./file_properties.xpm /opt/kde/share/apps/kdevelop/toolbar/file_properties.xpm
/usr/bin/install -c -m 644 ./indent.xpm /opt/kde/share/apps/kdevelop/toolbar/indent.xpm
/usr/bin/install -c -m 644 ./unindent.xpm /opt/kde/share/apps/kdevelop/toolbar/unindent.xpm
/usr/bin/install -c -m 644 ./grep.xpm /opt/kde/share/apps/kdevelop/toolbar/grep.xpm
/usr/bin/install -c -m 644 ./classwiz.xpm /opt/kde/share/apps/kdevelop/toolbar/classwiz.xpm
/usr/bin/install -c -m 644 ./graphview.xpm /opt/kde/share/apps/kdevelop/toolbar/graphview.xpm
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/toolbar'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/toolbar'
Making install in pics
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
Making install in mini
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics/mini'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics/mini'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/kde/share/apps/kdevelop/pics/mini/
/usr/bin/install -c -m 644 ./CTchildren.xpm /opt/kde/share/apps/kdevelop/pics/mini//CTchildren.xpm
/usr/bin/install -c -m 644 ./CTclients.xpm /opt/kde/share/apps/kdevelop/pics/mini//CTclients.xpm
/usr/bin/install -c -m 644 ./CTparents.xpm /opt/kde/share/apps/kdevelop/pics/mini//CTparents.xpm
/usr/bin/install -c -m 644 ./CTsuppliers.xpm /opt/kde/share/apps/kdevelop/pics/mini//CTsuppliers.xpm
/usr/bin/install -c -m 644 ./CTvirtuals.xpm /opt/kde/share/apps/kdevelop/pics/mini//CTvirtuals.xpm
/usr/bin/install -c -m 644 ./CVclass.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVclass.xpm
/usr/bin/install -c -m 644 ./CVglobal_meth.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVglobal_meth.xpm
/usr/bin/install -c -m 644 ./CVglobal_var.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVglobal_var.xpm
/usr/bin/install -c -m 644 ./CVprivate_meth.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprivate_meth.xpm
/usr/bin/install -c -m 644 ./CVprivate_signal.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprivate_signal.xpm
/usr/bin/install -c -m 644 ./CVprivate_slot.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprivate_slot.xpm
/usr/bin/install -c -m 644 ./CVprivate_var.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprivate_var.xpm
/usr/bin/install -c -m 644 ./CVprotected_meth.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprotected_meth.xpm
/usr/bin/install -c -m 644 ./CVprotected_signal.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprotected_signal.xpm
/usr/bin/install -c -m 644 ./CVprotected_slot.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprotected_slot.xpm
/usr/bin/install -c -m 644 ./CVprotected_var.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVprotected_var.xpm
/usr/bin/install -c -m 644 ./CVpublic_meth.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVpublic_meth.xpm
/usr/bin/install -c -m 644 ./CVpublic_signal.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVpublic_signal.xpm
/usr/bin/install -c -m 644 ./CVpublic_slot.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVpublic_slot.xpm
/usr/bin/install -c -m 644 ./CVpublic_var.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVpublic_var.xpm
/usr/bin/install -c -m 644 ./CVstruct.xpm /opt/kde/share/apps/kdevelop/pics/mini//CVstruct.xpm
/usr/bin/install -c -m 644 ./inst_file.xpm /opt/kde/share/apps/kdevelop/pics/mini//inst_file.xpm
/usr/bin/install -c -m 644 ./kdlg_QCheckBox.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QCheckBox.xpm
/usr/bin/install -c -m 644 ./kdlg_QLCDNumer.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QLCDNumer.xpm
/usr/bin/install -c -m 644 ./kdlg_QLabel.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QLabel.xpm
/usr/bin/install -c -m 644 ./kdlg_QLineEdit.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QLineEdit.xpm
/usr/bin/install -c -m 644 ./kdlg_QPushButton.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QPushButton.xpm
/usr/bin/install -c -m 644 ./kdlg_QRadioButton.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QRadioButton.xpm
/usr/bin/install -c -m 644 ./kdlg_QWidget.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QWidget.xpm
/usr/bin/install -c -m 644 ./kdlg_QComboBox.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QComboBox.xpm
/usr/bin/install -c -m 644 ./kdlg_QMultiLineEdit.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QMultiLineEdit.xpm
/usr/bin/install -c -m 644 ./kdlg_QProgressBar.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QProgressBar.xpm
/usr/bin/install -c -m 644 ./kdlg_QSpinBox.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QSpinBox.xpm
/usr/bin/install -c -m 644 ./kdlg_QSlider.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QSlider.xpm
/usr/bin/install -c -m 644 ./kdlg_QScrollBar.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QScrollBar.xpm
/usr/bin/install -c -m 644 ./kdlg_QGroupBox.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QGroupBox.xpm
/usr/bin/install -c -m 644 ./kdlg_QListBox.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QListBox.xpm
/usr/bin/install -c -m 644 ./kdlg_QListView.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_QListView.xpm
/usr/bin/install -c -m 644 ./kdlg_KCombo.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KCombo.xpm
/usr/bin/install -c -m 644 ./kdlg_KKeyButton.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KKeyButton.xpm
/usr/bin/install -c -m 644 ./kdlg_KColorButton.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KColorButton.xpm
/usr/bin/install -c -m 644 ./kdlg_KRestrictedLine.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KRestrictedLine.xpm
/usr/bin/install -c -m 644 ./kdlg_KTreeList.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KTreeList.xpm
/usr/bin/install -c -m 644 ./kdlg_KLedLamp.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KLedLamp.xpm
/usr/bin/install -c -m 644 ./kdlg_KLed.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KLed.xpm
/usr/bin/install -c -m 644 ./kdlg_KProgress.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KProgress.xpm
/usr/bin/install -c -m 644 ./kdlg_KSeparator.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KSeparator.xpm
/usr/bin/install -c -m 644 ./kdlg_KDatePicker.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KDatePicker.xpm
/usr/bin/install -c -m 644 ./kdlg_KDateTable.xpm /opt/kde/share/apps/kdevelop/pics/mini//kdlg_KDateTable.xpm
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics/mini'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics/mini'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
make[4]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/kde/share/apps/kdevelop/pics/
/usr/bin/install -c -m 644 ./kAppWizard.bmp /opt/kde/share/apps/kdevelop/pics//kAppWizard.bmp
/usr/bin/install -c -m 644 ./miniApp.bmp /opt/kde/share/apps/kdevelop/pics//miniApp.bmp
/usr/bin/install -c -m 644 ./normalApp.bmp /opt/kde/share/apps/kdevelop/pics//normalApp.bmp
/usr/bin/install -c -m 644 ./terminalApp.bmp /opt/kde/share/apps/kdevelop/pics//terminalApp.bmp
/usr/bin/install -c -m 644 ./startlogo.bmp /opt/kde/share/apps/kdevelop/pics//startlogo.bmp
/usr/bin/install -c -m 644 ./tipday.bmp /opt/kde/share/apps/kdevelop/pics//tipday.bmp
/usr/bin/install -c -m 644 ./qtApp.bmp /opt/kde/share/apps/kdevelop/pics//qtApp.bmp
/usr/bin/install -c -m 644 ./customApp.bmp /opt/kde/share/apps/kdevelop/pics//customApp.bmp
/usr/bin/install -c -m 644 ./dlg_firstrun.bmp /opt/kde/share/apps/kdevelop/pics//dlg_firstrun.bmp
/usr/bin/install -c -m 644 ./about_logo.bmp /opt/kde/share/apps/kdevelop/pics//about_logo.bmp
make[4]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/pics'
Making install in kwrite
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kwrite'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kwrite'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kwrite'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kwrite'
Making install in kdlgedit
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kdlgedit'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kdlgedit'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kdlgedit'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/kdlgedit'
Making install in classparser
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classparser'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classparser'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classparser'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classparser'
Making install in print
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/print'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/print'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/print'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/print'
Making install in vc
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/vc'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/vc'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/vc'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/vc'
Making install in gfxview
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/gfxview'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/gfxview'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/gfxview'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/gfxview'
Making install in classwizard
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classwizard'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classwizard'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classwizard'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop/classwizard'
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
make[3]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
/bin/sh ../mkinstalldirs /opt/kde/bin
/bin/sh ../libtool --silent --mode=install /usr/bin/install -c kdevelop /opt/kde/bin/kdevelop
/bin/sh ../mkinstalldirs /opt/kde/share/applnk/Development
/usr/bin/install -c -m 644 kdevelop.kdelnk /opt/kde/share/applnk/Development
/usr/bin/install -c -m 644 kdevelop-setup.kdelnk /opt/kde/share/applnk/Development
/usr/bin/install -c -m 644 .directory /opt/kde/share/applnk/Development
/bin/sh ../mkinstalldirs /opt/kde/share/icons
/usr/bin/install -c -m 644 kdevelop.xpm /opt/kde/share/icons
/usr/bin/install -c -m 644 kdevelop-project.xpm /opt/kde/share/icons
/bin/sh ../mkinstalldirs /opt/kde/share/icons/mini
/usr/bin/install -c -m 644 mini-kdevelop.xpm /opt/kde/share/icons/mini/kdevelop.xpm
/bin/sh ../mkinstalldirs /opt/kde/share/config
/usr/bin/install -c -m 644 kdeveloprc /opt/kde/share/config/kdeveloprc
/bin/sh ../mkinstalldirs /opt/kde/share/mimelnk/application
/usr/bin/install -c -m 644 x-kdevelop-project.kdelnk /opt/kde/share/mimelnk/application/
make[3]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
make[1]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdevelop'
Making install in kdlgloader
make[1]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdlgloader'
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/kdlgloader'
/bin/sh ../mkinstalldirs /opt/kde/lib
/bin/sh ../libtool --silent --mode=install /usr/bin/install -c libkdlgloader.la /opt/kde/lib/libkdlgloader.la
PATH="$PATH:/sbin" ldconfig -n /opt/kde/lib
----------------------------------------------------------------------
Libraries have been installed in:
/opt/kde/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
/bin/sh ../mkinstalldirs /opt/kde/include
/usr/bin/install -c -m 644 kdlgloader.h /opt/kde/include/kdlgloader.h
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdlgloader'
make[1]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/kdlgloader'
Making install in po
make[1]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/po'
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2/po'
make[2]: Nothing to be done for `install-exec-am'.
/usr/bin/install -c -m 644 cs.gmo /opt/kde/share/locale/cs/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 da.gmo /opt/kde/share/locale/da/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 de.gmo /opt/kde/share/locale/de/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 es.gmo /opt/kde/share/locale/es/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 fi.gmo /opt/kde/share/locale/fi/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 fr.gmo /opt/kde/share/locale/fr/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 hu.gmo /opt/kde/share/locale/hu/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 it.gmo /opt/kde/share/locale/it/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 pl.gmo /opt/kde/share/locale/pl/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 pt.gmo /opt/kde/share/locale/pt/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 ru.gmo /opt/kde/share/locale/ru/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 sk.gmo /opt/kde/share/locale/sk/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 sv.gmo /opt/kde/share/locale/sv/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 tr.gmo /opt/kde/share/locale/tr/LC_MESSAGES/kdevelop.mo
/usr/bin/install -c -m 644 zh_CN.GB2312.gmo /opt/kde/share/locale/zh_CN.GB2312/LC_MESSAGES/kdevelop.mo
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/po'
make[1]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2/po'
make[1]: Entering directory `/home/slambo/download/kdevelop-1.0beta2'
make[2]: Entering directory `/home/slambo/download/kdevelop-1.0beta2'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2'
make[1]: Leaving directory `/home/slambo/download/kdevelop-1.0beta2'
[root@jenlamb kdevelop-1.0beta2]# exit
[slambo@jenlamb kdevelop-1.0beta2]$ exit
Script done on Sat Nov 27 20:45:37 1999
|