Fout met installeren mySQL

Pagina: 1
Acties:
  • 66 views sinds 30-01-2008

  • Dennisderoo
  • Registratie: Februari 2004
  • Laatst online: 17-02-2021
Hallo,

Ik probeerde zojuist mySQL te installeren op mijn mandrake (10.0) linux server. Alles gedaan volgens de stappen van een howto.
Na het downloaden en uitpakken van de mySQL bestanden moest ik de volgende code intikken:
code:
1
./configure --prefix=/usr/local/mysql

Vervolgens is dat ding bezig met het checken van dingen.
Máár daarna krijg ik de foutmelding:
code:
1
2
3
checking how to run the C++ preprocessor... /lib/cpp
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.

Hoe komt dit? moet ik nog wat installeren misschien?

Ik hoop dat jullie de oplossing weten.

Alvast bedankt in ieder geval!

Met vriendelijke groeten,
Dennis

[ Voor 5% gewijzigd door Dennisderoo op 28-12-2004 16:48 ]


  • Erkens
  • Registratie: December 2001
  • Niet online

Erkens

Fotograaf

begin eens met
code:
3
See `config.log' for more details.

Verwijderd

Lijkt me beter voor jou om gewoon een RPM te pakken. Zo te zien werkt je compiler namelijk niet.

  • TrailBlazer
  • Registratie: Oktober 2000
  • Laatst online: 07-02 09:48

TrailBlazer

Karnemelk FTW

ik denk dat hij beter eens in dat logfile kan kijken de hoop meteen opgeven past niet bij nossers denk ik.
Dus doe eens
code:
1
cat config.log

  • Dennisderoo
  • Registratie: Februari 2004
  • Laatst online: 17-02-2021
TrailBlazer schreef op dinsdag 28 december 2004 @ 16:56:
ik denk dat hij beter eens in dat logfile kan kijken de hoop meteen opgeven past niet bij nossers denk ik.
Dus doe eens
code:
1
cat config.log
Ja natuurlijk heb ik daar effe na gekeken. Ik wordt er alleen niks wijs uit.
Lijkt me beter voor jou om gewoon een RPM te pakken. Zo te zien werkt je compiler namelijk niet.
RPM? En hoe laat ik mijn compiler wel werken?

  • TrailBlazer
  • Registratie: Oktober 2000
  • Laatst online: 07-02 09:48

TrailBlazer

Karnemelk FTW

Dennisderoo schreef op dinsdag 28 december 2004 @ 17:00:
[...]

Ja natuurlijk heb ik daar effe na gekeken. Ik wordt er alleen niks wijs uit.
nee jij niet maar wij mischien wel |:(

  • Dennisderoo
  • Registratie: Februari 2004
  • Laatst online: 17-02-2021
TrailBlazer schreef op dinsdag 28 december 2004 @ 17:01:
[...]


nee jij niet maar wij mischien wel |:(
Oke dat is waar, dit is 'm:
code:
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
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.59.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = server
uname -m = i686
uname -r = 2.6.3-7mdksecure
uname -s = Linux
uname -v = #1 SMP Wed Mar 17 14:42:34 CET 2004

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = i686
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /sbin
PATH: /usr/sbin
PATH: /bin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /usr/local/bin
PATH: /usr/local/sbin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1668: checking build system type
configure:1686: result: i686-redhat-linux-gnu
configure:1694: checking host system type
configure:1708: result: i686-redhat-linux-gnu
configure:1716: checking target system type
configure:1730: result: i686-redhat-linux-gnu
configure:1760: checking for a BSD-compatible install
configure:1815: result: /usr/bin/install -c
configure:1826: checking whether build environment is sane
configure:1844: result: yes
configure:1901: checking for gawk
configure:1917: found /bin/gawk
configure:1927: result: gawk
configure:1937: checking whether make sets $(MAKE)
configure:1957: result: yes
configure:2260: checking whether build environment is sane
configure:2278: result: yes
configure:2281: checking whether make sets $(MAKE)
configure:2301: result: yes
configure:2354: checking for gawk
configure:2380: result: gawk
configure:2436: checking for gcc
configure:2452: found /usr/bin/gcc
configure:2462: result: gcc
configure:2706: checking for C compiler version
configure:2709: gcc --version </dev/null >&5
gcc (GCC) 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)
Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2712: $? = 0
configure:2714: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.3.2/specs
Configured with: ../configure --prefix=/usr --libdir=/usr/lib --with-slibdir=/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --enable-long-long --enable-__cxa_atexit --enable-clocale=gnu --enable-languages=c,c++,ada,f77,objc,java,pascal --host=i586-mandrake-linux-gnu --with-system-zlib
Thread model: posix
gcc version 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)
configure:2717: $? = 0
configure:2719: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:2722: $? = 1
configure:2745: checking for C compiler default output file name
configure:2748: gcc      conftest.c  >&5
configure:2751: $? = 0
configure:2797: result: a.out
configure:2802: checking whether the C compiler works
configure:2808: ./a.out
configure:2811: $? = 0
configure:2828: result: yes
configure:2835: checking whether we are cross compiling
configure:2837: result: no
configure:2840: checking for suffix of executables
configure:2842: gcc -o conftest      conftest.c  >&5
configure:2845: $? = 0
configure:2870: result: 
configure:2876: checking for suffix of object files
configure:2897: gcc -c     conftest.c >&5
configure:2900: $? = 0
configure:2922: result: o
configure:2926: checking whether we are using the GNU C compiler
configure:2950: gcc -c     conftest.c >&5
configure:2956: $? = 0
configure:2960: test -z 
             || test ! -s conftest.err
configure:2963: $? = 0
configure:2966: test -s conftest.o
configure:2969: $? = 0
configure:2982: result: yes
configure:2988: checking whether gcc accepts -g
configure:3009: gcc -c -g  conftest.c >&5
configure:3015: $? = 0
configure:3019: test -z 
             || test ! -s conftest.err
configure:3022: $? = 0
configure:3025: test -s conftest.o
configure:3028: $? = 0
configure:3039: result: yes
configure:3056: checking for gcc option to accept ANSI C
configure:3126: gcc  -c     conftest.c >&5
configure:3132: $? = 0
configure:3136: test -z 
             || test ! -s conftest.err
configure:3139: $? = 0
configure:3142: test -s conftest.o
configure:3145: $? = 0
configure:3163: result: none needed
configure:3181: gcc -c     conftest.c >&5
conftest.c:2: error: parse error before "me"
configure:3187: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3332: checking for style of include used by make
configure:3360: result: GNU
configure:3388: checking dependency style of gcc
configure:3473: result: gcc3
configure:3542: checking for g++
configure:3571: result: no
configure:3542: checking for c++
configure:3571: result: no
configure:3542: checking for gpp
configure:3571: result: no
configure:3542: checking for aCC
configure:3571: result: no
configure:3542: checking for CC
configure:3571: result: no
configure:3542: checking for cxx
configure:3571: result: no
configure:3542: checking for cc++
configure:3571: result: no
configure:3542: checking for cl
configure:3571: result: no
configure:3542: checking for FCC
configure:3571: result: no
configure:3542: checking for KCC
configure:3571: result: no
configure:3542: checking for RCC
configure:3571: result: no
configure:3542: checking for xlC_r
configure:3571: result: no
configure:3542: checking for xlC
configure:3571: result: no
configure:3584: checking for C++ compiler version
configure:3587: g++ --version </dev/null >&5
./configure: line 1: g++: command not found
configure:3590: $? = 127
configure:3592: g++ -v </dev/null >&5
./configure: line 1: g++: command not found
configure:3595: $? = 127
configure:3597: g++ -V </dev/null >&5
./configure: line 1: g++: command not found
configure:3600: $? = 127
configure:3603: checking whether we are using the GNU C++ compiler
configure:3627: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3633: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| #ifndef __GNUC__
|        choke me
| #endif
| 
|   ;
|   return 0;
| }
configure:3659: result: no
configure:3665: checking whether g++ accepts -g
configure:3686: g++ -c -g  conftest.cc >&5
./configure: line 1: g++: command not found
configure:3692: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:3716: result: no
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| extern "C" void std::exit (int) throw (); using std::exit;
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| extern "C" void std::exit (int); using std::exit;
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| extern "C" void exit (int) throw ();
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| extern "C" void exit (int);
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| void exit (int);
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3759: g++ -c     conftest.cc >&5
./configure: line 1: g++: command not found
configure:3765: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| /* end confdefs.h.  */
| #include <stdlib.h>
| #include <stdlib.h>
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3848: checking dependency style of g++
configure:3933: result: none
configure:3955: checking how to run the C preprocessor
configure:3990: gcc -E  conftest.c
configure:3996: $? = 0
configure:4028: gcc -E  conftest.c
conftest.c:22:28: ac_nonexistent.h: No such file or directory
configure:4034: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4073: result: gcc -E
configure:4097: gcc -E  conftest.c
configure:4103: $? = 0
configure:4135: gcc -E  conftest.c
conftest.c:22:28: ac_nonexistent.h: No such file or directory
configure:4141: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4196: checking "C Compiler version"
configure:4198: result: "gcc gcc (GCC) 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)"
configure:4213: checking "C++ compiler version"
configure:4215: result: "g++ "
configure:4321: checking for ranlib
configure:4337: found /usr/bin/ranlib
configure:4348: result: ranlib
configure:4434: checking for a sed that does not truncate output
configure:4488: result: /bin/sed
configure:4491: checking for egrep
configure:4501: result: grep -E
configure:4517: checking for ld used by gcc
configure:4584: result: /usr/bin/ld
configure:4593: checking if the linker (/usr/bin/ld) is GNU ld
configure:4608: result: yes
configure:4613: checking for /usr/bin/ld option to reload object files
configure:4620: result: -r
configure:4629: checking for BSD-compatible nm
configure:4671: result: /usr/bin/nm -B
configure:4675: checking whether ln -s works
configure:4679: result: yes
configure:4686: checking how to recognise dependent libraries
configure:4869: result: pass_all
configure:5079: checking for ANSI C header files
configure:5104: gcc -c     conftest.c >&5
configure:5110: $? = 0
configure:5114: test -z 
             || test ! -s conftest.err
configure:5117: $? = 0
configure:5120: test -s conftest.o
configure:5123: $? = 0
configure:5209: gcc -o conftest      conftest.c  >&5
configure:5212: $? = 0
configure:5214: ./conftest
configure:5217: $? = 0
configure:5232: result: yes
configure:5256: checking for sys/types.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for sys/stat.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for stdlib.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for string.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for memory.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for strings.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for inttypes.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for stdint.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5256: checking for unistd.h
configure:5272: gcc -c     conftest.c >&5
configure:5278: $? = 0
configure:5282: test -z 
             || test ! -s conftest.err
configure:5285: $? = 0
configure:5288: test -s conftest.o
configure:5291: $? = 0
configure:5302: result: yes
configure:5328: checking dlfcn.h usability
configure:5340: gcc -c     conftest.c >&5
configure:5346: $? = 0
configure:5350: test -z 
             || test ! -s conftest.err
configure:5353: $? = 0
configure:5356: test -s conftest.o
configure:5359: $? = 0
configure:5369: result: yes
configure:5373: checking dlfcn.h presence
configure:5383: gcc -E  conftest.c
configure:5389: $? = 0
configure:5409: result: yes
configure:5444: checking for dlfcn.h
configure:5451: result: yes
configure:5469: checking how to run the C++ preprocessor
configure:5500: g++ -E  conftest.cc
./configure: line 1: g++: command not found
configure:5506: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|            Syntax error
configure:5500: g++ -E  conftest.cc
./configure: line 1: g++: command not found
configure:5506: $? = 127
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|            Syntax error
configure:5500: /lib/cpp  conftest.cc
cpp: installation problem, cannot exec `cc1plus': No such file or directory
configure:5506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|            Syntax error
configure:5500: /lib/cpp  conftest.cc
cpp: installation problem, cannot exec `cc1plus': No such file or directory
configure:5506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|            Syntax error
configure:5583: result: /lib/cpp
configure:5607: /lib/cpp  conftest.cc
cpp: installation problem, cannot exec `cc1plus': No such file or directory
configure:5613: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|            Syntax error
configure:5607: /lib/cpp  conftest.cc
cpp: installation problem, cannot exec `cc1plus': No such file or directory
configure:5613: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "mysql"
| #define VERSION "4.1.8a"
| #define PROTOCOL_VERSION 10
| #define DOT_FRM_VERSION 6
| #define NDB_VERSION_MAJOR 4
| #define NDB_VERSION_MINOR 1
| #define NDB_VERSION_BUILD 8
| #define NDB_VERSION_STATUS ""
| #define SYSTEM_TYPE "redhat-linux-gnu"
| #define MACHINE_TYPE "i686"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|            Syntax error
configure:5682: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i686-redhat-linux-gnu
ac_cv_build_alias=i686-redhat-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=no
ac_cv_env_CCASFLAGS_set=
ac_cv_env_CCASFLAGS_value=
ac_cv_env_CCAS_set=
ac_cv_env_CCAS_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-redhat-linux-gnu
ac_cv_host_alias=i686-redhat-linux-gnu
ac_cv_objext=o
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP=/lib/cpp
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=no
ac_cv_prog_egrep='grep -E'
ac_cv_prog_make_make_set=yes
ac_cv_target=i686-redhat-linux-gnu
ac_cv_target_alias=i686-redhat-linux-gnu
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=none
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file='/lib/libc.so.6 /lib/libc-2.3.3.so'
lt_cv_ld_reload_flag=-r
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/bin/sed
lt_cv_prog_gnu_ld=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /root/mysql-4.1.8a/missing --run aclocal-1.8'
ALLOCA=''
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /root/mysql-4.1.8a/missing --run tar'
AR=''
AS='gcc -c'
ASSEMBLER_FALSE=''
ASSEMBLER_TRUE=''
ASSEMBLER_sparc32_FALSE=''
ASSEMBLER_sparc32_TRUE=''
ASSEMBLER_sparc64_FALSE=''
ASSEMBLER_sparc64_TRUE=''
ASSEMBLER_x86_FALSE=''
ASSEMBLER_x86_TRUE=''
AUTOCONF='${SHELL} /root/mysql-4.1.8a/missing --run autoconf'
AUTOHEADER='${SHELL} /root/mysql-4.1.8a/missing --run autoheader'
AUTOMAKE='${SHELL} /root/mysql-4.1.8a/missing --run automake-1.8'
AVAILABLE_LANGUAGES='czech danish dutch english estonian french german greek hungarian italian japanese korean norwegian norwegian-ny polish portuguese romanian russian serbian slovak spanish swedish ukrainian'
AVAILABLE_LANGUAGES_ERRORS=' czech/errmsg.sys danish/errmsg.sys dutch/errmsg.sys english/errmsg.sys estonian/errmsg.sys french/errmsg.sys german/errmsg.sys greek/errmsg.sys hungarian/errmsg.sys italian/errmsg.sys japanese/errmsg.sys korean/errmsg.sys norwegian/errmsg.sys norwegian-ny/errmsg.sys polish/errmsg.sys portuguese/errmsg.sys romanian/errmsg.sys russian/errmsg.sys serbian/errmsg.sys slovak/errmsg.sys spanish/errmsg.sys swedish/errmsg.sys ukrainian/errmsg.sys'
AWK='gawk'
CC='gcc'
CCAS=''
CCASFLAGS=''
CCDEPMODE='depmode=gcc3'
CC_VERSION='gcc (GCC) 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)'
CFLAGS='  '
CHECK_PID=''
CHMOD=''
CLIENT_EXTRA_LDFLAGS=''
CLIENT_LIBS=''
CMP=''
COMPILATION_COMMENT=''
COMPILE_PSTACK_FALSE=''
COMPILE_PSTACK_TRUE=''
CONF_COMMAND='./configure '
CP=''
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='/lib/cpp'
CXXDEPMODE='depmode=none'
CXXFLAGS='  '
CXXLDFLAGS=''
CXX_VERSION=''
CYGPATH_W='echo'
DEFS=''
DEPDIR='.deps'
DOT_FRM_VERSION='6'
DOXYGEN=''
DVIS=''
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
F77=''
FFLAGS=''
FIND_PROC=''
GETCONF=''
GXX=''
HAVE_NDBCLUSTER_DB_FALSE=''
HAVE_NDBCLUSTER_DB_TRUE=''
HAVE_NETWARE_FALSE=''
HAVE_NETWARE_TRUE=''
HOSTNAME='server'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
IS_LINUX=''
KILL=''
LD='/usr/bin/ld'
LDFLAGS=''
LIBDL=''
LIBEDIT_LOBJECTS=''
LIBOBJS=''
LIBS=''
LIBTOOL=''
LIB_EXTRA_CCFLAGS=''
LM_CFLAGS=''
LN=''
LN_CP_F=''
LN_S='ln -s'
LOCAL_FALSE=''
LOCAL_TRUE='#'
LTLIBOBJS=''
MACHINE_TYPE='i686'
MAKEINDEX=''
MAKEINFO='${SHELL} /root/mysql-4.1.8a/missing --run makeinfo'
MAKE_BINARY_DISTRIBUTION_OPTIONS=''
MAKE_SHELL=''
MT_INCLUDES=''
MT_LD_ADD=''
MV=''
MYSQLD_DEFAULT_SWITCHES=''
MYSQLD_EXTRA_LDFLAGS=''
MYSQLD_USER=''
MYSQL_BASE_VERSION='4.1'
MYSQL_NO_DASH_VERSION='4.1.8a'
MYSQL_SERVER_SUFFIX=''
MYSQL_TCP_PORT=''
MYSQL_TCP_PORT_DEFAULT='3306'
MYSQL_UNIX_ADDR=''
MYSQL_VERSION_ID='40108'
NDB_DEFS=''
NDB_SCI_INCLUDES=''
NDB_SCI_LIBS=''
NDB_VERSION_BUILD='8'
NDB_VERSION_MAJOR='4'
NDB_VERSION_MINOR='1'
NDB_VERSION_STATUS=''
NOINST_LDFLAGS=''
OBJEXT='o'
PACKAGE='mysql'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PDFLATEX=''
PDFMANUAL=''
PERL5=''
PERL=''
PROTOCOL_VERSION='10'
PS=''
RANLIB='ranlib'
RM=''
SAVE_ASFLAGS=''
SAVE_CFLAGS=''
SAVE_CXXFLAGS=''
SAVE_CXXLDFLAGS=''
SAVE_LDFLAGS=''
SED='/bin/sed'
SET_MAKE=''
SHARED_LIB_VERSION='14:0:0'
SHELL='/bin/sh'
STRIP=''
SYSTEM_TYPE='redhat-linux-gnu'
TAR=''
TERMCAP_LIB=''
THREAD_LOBJECTS=''
THREAD_LPROGRAMS=''
VERSION='4.1.8a'
WRAPLIBS=''
YACC=''
ZLIB_INCLUDES=''
ZLIB_LIBS=''
ac_ct_AR=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
ac_ct_GETCONF=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE=''
am__fastdepCXX_TRUE='#'
am__include='include'
am__leading_dot='.'
am__quote=''
bdb_includes=''
bdb_libs=''
bdb_libs_with_path=''
bench_dirs=''
bindir='${exec_prefix}/bin'
build='i686-redhat-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='redhat'
datadir='${prefix}/share'
docs_dirs=''
exec_prefix='NONE'
fs_dirs=''
host='i686-redhat-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='redhat'
includedir='${prefix}/include'
infodir='${prefix}/info'
innodb_includes=''
innodb_libs=''
innodb_system_libs=''
install_sh='/root/mysql-4.1.8a/install-sh'
isam_libs=''
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
libmysqld_dirs=''
linked_client_targets=''
linked_netware_sources=''
localstatedir='${prefix}/var'
man_dirs=''
mandir='${prefix}/man'
mkdir_p='mkdir -p -- .'
ndb_bin_am_ldflags=''
ndb_cxxflags_fix=''
ndb_mgmclient_libs=''
ndb_opt_subdirs=''
ndb_port=''
ndb_port_base=''
ndb_transporter_opt_objs=''
ndbcluster_includes=''
ndbcluster_libs=''
ndbcluster_system_libs=''
netware_dir=''
oldincludedir='/usr/include'
openssl_includes=''
openssl_libs=''
orbit_idl=''
orbit_includes=''
orbit_libs=''
prefix='NONE'
program_transform_name='s,x,x,'
pstack_dirs=''
pstack_libs=''
readline_basedir=''
readline_dir=''
readline_h_ln_cmd=''
readline_link=''
readline_topdir=''
sbindir='${exec_prefix}/sbin'
server_scripts=''
sharedstatedir='${prefix}/com'
sql_client_dirs=''
sql_server_dirs=''
subdirs=''
sysconfdir='${prefix}/etc'
target='i686-redhat-linux-gnu'
target_alias=''
target_cpu='i686'
target_os='linux-gnu'
target_vendor='redhat'
thread_dirs=''
tools_dirs=''
uname_prog=''
vio_dir=''
vio_libs=''
zlib_dir=''

## ------------- ##
## Output files. ##
## ------------- ##

AVAILABLE_LANGUAGES_ERRORS_RULES='./ac_available_languages_fragment'

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define DOT_FRM_VERSION 6
#define HAVE_DLFCN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define MACHINE_TYPE "i686"
#define NDB_VERSION_BUILD 8
#define NDB_VERSION_MAJOR 4
#define NDB_VERSION_MINOR 1
#define NDB_VERSION_STATUS ""
#define PACKAGE "mysql"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PROTOCOL_VERSION 10
#define STDC_HEADERS 1
#define SYSTEM_TYPE "redhat-linux-gnu"
#define VERSION "4.1.8a"
#endif
#ifdef __cplusplus
#include <stdlib.h>

configure: exit 1

  • TrailBlazer
  • Registratie: Oktober 2000
  • Laatst online: 07-02 09:48

TrailBlazer

Karnemelk FTW

het probleem lijkt te zijn dat je g++ niet hebt dat is volgens mij de gnu c++ compiler. rgeel 653-658 Ik weet alleen niet hoe de package manager precies werkt bij Mandrake

kijk hier eens naar
http://gcc.gnu.org/ml/gcc-help/2001-02/msg00165.html

[ Voor 19% gewijzigd door TrailBlazer op 28-12-2004 17:15 ]


  • Dennisderoo
  • Registratie: Februari 2004
  • Laatst online: 17-02-2021
TrailBlazer schreef op dinsdag 28 december 2004 @ 17:13:
het probleem lijkt te zijn dat je g++ niet hebt dat is volgens mij de gnu c++ compiler. rgeel 653-658 Ik weet alleen niet hoe de package manager precies werkt bij Mandrake
Oke, bedankt. Maar wat nu? Kan ik g++ ergens downloaden ofzo?

  • Wilke
  • Registratie: December 2000
  • Laatst online: 12:51
Verwijderd schreef op dinsdag 28 december 2004 @ 16:53:
Lijkt me beter voor jou om gewoon een RPM te pakken. Zo te zien werkt je compiler namelijk niet.
Niet alleen voor hem lijkt me dat beter, dat is in het algemeen gewoon beter, voor iedereen. Lees in de NOS FAQ maar eens het stuk door over het installeren van software onder Linux.

Dit topic ga ik sluiten omdat het op deze manier nergens gaat uitkomen. Het minste wat de topicstarter zelf toch wel mag doen is even uitzoeken welk deel van de foutmelding(en) relevant is, waarschijnlijk staat dat onderaan config.log. Een beetje eigen initiatief mag ook wel, gewoon 1300 regels log neerplempen en dan verwachten dat wij het wel gaan doorspitten allemaal, dat is hier niet de bedoeling.

Maar zoals gezegd, je kunt beter gewoon de MySQL RPM van Mandrake zelf pakken, er is geen enkele reden om dat met de hand te gaan zitten compileren.

  • TrailBlazer
  • Registratie: Oktober 2000
  • Laatst online: 07-02 09:48

TrailBlazer

Karnemelk FTW

aaarrgghhh NOFI maar zoek zelf eens wat uit. We willen je best helpen hoor maar google is nog veel liefer enzo

  • Cyphax
  • Registratie: November 2000
  • Nu online

Cyphax

Moderator LNX
TrailBlazer schreef op dinsdag 28 december 2004 @ 17:13:
het probleem lijkt te zijn dat je g++ niet hebt dat is volgens mij de gnu c++ compiler. rgeel 653-658 Ik weet alleen niet hoe de package manager precies werkt bij Mandrake

kijk hier eens naar
http://gcc.gnu.org/ml/gcc-help/2001-02/msg00165.html
Hrm deze regels roepen iets anders:
configure:4213: checking "C++ compiler version"
configure:4215: result: "g++ "

Hij doet een check en vindt toch g++?
Misschien is het een setting ergens mbt je paths?

Saved by the buoyancy of citrus


  • Kees
  • Registratie: Juni 1999
  • Laatst online: 14-02 12:23

Kees

Serveradmin / BOFH / DoC
Je probeert iets te doen (mysql compileren) wat helemaal niet nodig is. Pak een RPM, zoek in de docs hoe je de mandrake packagemanager gebruikt, en blijf die gebruiken. Ik raad je af om, als je weinig kennis van linux hebt, meteen beginnen met mysql te compileren.

Er is vast wel ergens documentatie beschikbaar over hoe je met mandrake packages instaleerd, lees dat eerst even.

"Een serveradmin, voluit een serveradministrator, is dan weer een slavenbeheerder oftewel een slavendrijver" - Rataplan


  • Wilke
  • Registratie: December 2000
  • Laatst online: 12:51
Slotjes zetten is een vak, schijnt :D
Pagina: 1

Dit topic is gesloten.