-
Notifications
You must be signed in to change notification settings - Fork 13
/
1
10690 lines (10690 loc) · 764 KB
/
1
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
/bin/sh: mysql_config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: xml2-config: command not found
zMysqlDBConnPool.cpp:11:19: error: mysql.h: No such file or directory
zMysqlDBConnPool.cpp:14:18: error: zlib.h: No such file or directory
zSocket.cpp:21:18: error: zlib.h: No such file or directory
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zMysqlDBConnPool.cpp:16:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from zXMLParser.cpp:15:
zXMLParser.h:13:30: error: libxml/xmlmemory.h: No such file or directory
zXMLParser.h:14:27: error: libxml/parser.h: No such file or directory
In file included from Zebra.h:4,
from zXMLParser.cpp:18:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from Zebra.h:6,
from zXMLParser.cpp:18:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from zArg.h:15,
from zArg.cpp:11:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from Zebra.h:4,
from zMysqlDBConnPool.cpp:21:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from Zebra.h:4,
from Zebra.cpp:5:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
In file included from zTCPClient.h:17,
from zTCPClient.cpp:24:
zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from zTCPClientTask.h:17,
from zTCPClientTask.cpp:24:
zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from zTCPClientTaskPool.cpp:19:
zSocket.h:22:18: error: zlib.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from Zebra.h:4,
from zArg.cpp:12:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from Zebra.h:4,
from zSocket.h:35,
from zSocket.cpp:26:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from Zebra.h:4,
from zSocket.h:35,
from zTCPClientTaskPool.cpp:19:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from Zebra.h:6,
from Zebra.cpp:5:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from Zebra.h:4,
from zSocket.h:35,
from zTCPClient.h:17,
from zTCPClient.cpp:24:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from Zebra.h:4,
from zSocket.h:35,
from zTCPClientTask.h:17,
from zTCPClientTask.cpp:24:
zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from Zebra.h:6,
from zSocket.h:35,
from zSocket.cpp:26:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from Zebra.h:6,
from zSocket.h:35,
from zTCPClientTask.h:17,
from zTCPClientTask.cpp:24:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from Zebra.h:6,
from zSocket.h:35,
from zTCPClientTaskPool.cpp:19:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from zProperties.h:19,
from Zebra.h:6,
from zSocket.h:35,
from zTCPClient.h:17,
from zTCPClient.cpp:24:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from zXMLParser.cpp:15:
zXMLParser.h:35: error: expected ‘;’ before ‘(’ token
zXMLParser.h:36: error: ‘xmlNodePtr’ does not name a type
zXMLParser.h:37: error: ‘xmlNodePtr’ does not name a type
zXMLParser.h:38: error: ‘xmlNodePtr’ does not name a type
zXMLParser.h:39: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:39: error: expected ‘,’ or ‘...’ before ‘parent’
zXMLParser.h:41: error: ‘xmlNodePtr’ does not name a type
zXMLParser.h:42: error: ‘xmlNodePtr’ does not name a type
zXMLParser.h:43: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:43: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:45: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:45: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:46: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:46: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:47: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:47: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:47: error: ‘bool zXMLParser::getNodePropStr(int)’ cannot be overloaded
zXMLParser.h:46: error: with ‘bool zXMLParser::getNodePropStr(int)’
zXMLParser.h:48: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:48: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:49: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:49: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:50: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:50: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:50: error: ‘bool zXMLParser::getNodeContentStr(int)’ cannot be overloaded
zXMLParser.h:49: error: with ‘bool zXMLParser::getNodeContentStr(int)’
zXMLParser.h:51: error: ISO C++ forbids declaration of ‘xmlNodePtr’ with no type
zXMLParser.h:51: error: expected ‘,’ or ‘...’ before ‘node’
zXMLParser.h:51: error: ‘bool zXMLParser::getNodeContentStr(int)’ cannot be overloaded
zXMLParser.h:49: error: with ‘bool zXMLParser::getNodeContentStr(int)’
zXMLParser.h:54: error: ‘xmlDocPtr’ does not name a type
In file included from Zebra.h:4,
from zXMLParser.cpp:18:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
In file included from Zebra.cpp:4:
zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
In file included from zArg.h:15,
from zArg.cpp:11:
zProperties.h: In member function ‘bool zProperties::key_equal::operator()(const std::string&, const std::string&) const’:
zProperties.h:108: error: ‘strcasecmp’ was not declared in this scope
zXMLParser.cpp: In function ‘void finalLibXML2()’:
zXMLParser.cpp:23: error: ‘xmlCleanupParser’ was not declared in this scope
zXMLParser.cpp: In constructor ‘zXMLParser::zXMLParser()’:
zXMLParser.cpp:31: error: ‘doc’ was not declared in this scope
zXMLParser.cpp: In member function ‘bool zXMLParser::initFile(const char*)’:
zXMLParser.cpp:65: error: ‘doc’ was not declared in this scope
zXMLParser.cpp:65: error: ‘xmlParseFile’ was not declared in this scope
zXMLParser.cpp: In member function ‘bool zXMLParser::initStr(const char*)’:
zXMLParser.cpp:92: error: ‘doc’ was not declared in this scope
zXMLParser.cpp:92: error: ‘xmlChar’ was not declared in this scope
zXMLParser.cpp:92: error: expected primary-expression before ‘)’ token
zXMLParser.cpp:92: error: ‘xmlParseDoc’ was not declared in this scope
zXMLParser.cpp: In member function ‘bool zXMLParser::init()’:
zXMLParser.cpp:103: error: ‘doc’ was not declared in this scope
zXMLParser.cpp:103: error: ISO C++ forbids declaration of ‘type name’ with no type
zXMLParser.cpp:103: error: ISO C++ forbids declaration of ‘type name’ with no type
zXMLParser.cpp:103: error: expected primary-expression before ‘const’
zXMLParser.cpp:103: error: expected ‘)’ before ‘const’
zXMLParser.cpp: In member function ‘void zXMLParser::final()’:
zXMLParser.cpp:114: error: ‘doc’ was not declared in this scope
zXMLParser.cpp:116: error: ‘xmlFreeDoc’ was not declared in this scope
zXMLParser.cpp: In member function ‘std::string& zXMLParser::dump(std::string&, bool)’:
zXMLParser.cpp:129: error: ‘doc’ was not declared in this scope
zXMLParser.cpp:131: error: ‘xmlChar’ was not declared in this scope
zXMLParser.cpp:131: error: ‘out’ was not declared in this scope
zXMLParser.cpp:134: error: ‘xmlDocDumpFormatMemory’ was not declared in this scope
zXMLParser.cpp:138: error: ‘xmlFree’ was not declared in this scope
zXMLParser.cpp: At global scope:
zXMLParser.cpp:151: error: ‘std::string& zXMLParser::dump’ is not a static member of ‘class zXMLParser’
zXMLParser.cpp:151: error: ‘xmlNodePtr’ was not declared in this scope
zXMLParser.cpp:151: error: expected primary-expression before ‘&’ token
zXMLParser.cpp:151: error: ‘s’ was not declared in this scope
zXMLParser.cpp:151: error: expected primary-expression before ‘bool’
zXMLParser.cpp:151: error: initializer expression list treated as compound expression
In file included from Zebra.h:4,
from Zebra.cpp:5:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
In file included from Zebra.h:4,
from zArg.cpp:12:
zLogger.h: At global scope:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
In file included from Zebra.h:4,
from zSocket.h:35,
from zSocket.cpp:26:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
zArg.cpp: In member function ‘void zArg::addOptions(const argp_option*)’:
zArg.cpp:112: error: ‘memcpy’ was not declared in this scope
In file included from zMysqlDBConnPool.cpp:19:
zDBConnPool.h: In member function ‘void UrlInfo::parseMySQLURLString()’:
zDBConnPool.h:418: error: ‘strlen’ was not declared in this scope
zDBConnPool.h:418: error: ‘strncmp’ was not declared in this scope
In file included from Zebra.h:4,
from zMysqlDBConnPool.cpp:21:
zLogger.h: At global scope:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
zArg.cpp:126: error: ‘memcpy’ was not declared in this scope
zArg.cpp:127: error: ‘memcpy’ was not declared in this scope
In file included from Zebra.h:4,
from zSocket.h:35,
from zTCPClient.h:17,
from zTCPClient.cpp:24:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
In file included from Zebra.h:4,
from zSocket.h:35,
from zTCPClientTask.h:17,
from zTCPClientTask.cpp:24:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
In file included from Zebra.h:4,
from zSocket.h:35,
from zTCPClientTaskPool.cpp:19:
zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
zLogger.h:19: error: expected namespace-name before ‘;’ token
zLogger.h:20: error: ‘log4cxx’ has not been declared
zLogger.h:20: error: ‘helpers’ is not a namespace-name
zLogger.h:20: error: expected namespace-name before ‘;’ token
zLogger.h:60: error: ‘Level’ has not been declared
zLogger.h:61: error: ‘Level’ has not been declared
zLogger.h:62: error: ‘Level’ has not been declared
zLogger.h:63: error: ‘Level’ has not been declared
zLogger.h:66: error: ‘LevelPtr’ does not name a type
zLogger.h:67: error: ‘LevelPtr’ does not name a type
zLogger.h:68: error: ‘LevelPtr’ does not name a type
zLogger.h:69: error: ‘LevelPtr’ does not name a type
zLogger.h:71: error: ‘LevelPtr’ does not name a type
zLogger.h:72: error: expected ‘)’ before ‘level’
zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:142: error: expected ‘;’ before ‘&’ token
zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:173: error: expected class-name before ‘{’ token
zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:188: error: expected class-name before ‘{’ token
zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
zLogger.h:200: error: ‘LoggerPtr’ does not name a type
zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
zLogger.h:192: error: ‘name’ was not declared in this scope
zLogger.h:192: error: ‘s’ was not declared in this scope
zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
zLogger.h:196: error: ‘s’ was not declared in this scope
make[1]: *** [zXMLParser.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [zArg.o] Error 1
In file included from zTime.h:20,
from zMysqlDBConnPool.cpp:24:
zMisc.h: At global scope:
zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
In file included from zTime.h:20,
from zSocket.h:36,
from zSocket.cpp:26:
zMisc.h: At global scope:
zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
In file included from zTime.h:20,
from zSocket.h:36,
from zTCPClient.h:17,
from zTCPClient.cpp:24:
zMisc.h: At global scope:
zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
In file included from zTime.h:20,
from zSocket.h:36,
from zTCPClientTaskPool.cpp:19:
zMisc.h: At global scope:
zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
In file included from zTime.h:20,
from zSocket.h:36,
from zTCPClientTask.h:17,
from zTCPClientTask.cpp:24:
zMisc.h: At global scope:
zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
make[1]: *** [Zebra.o] Error 1
In file included from zSocket.cpp:26:
zSocket.h: In static member function ‘static unsigned int zSocket::packetPackZip(const void*, unsigned int, buffer_type&, bool)’:
zSocket.h:537: error: ‘uLong’ was not declared in this scope
zSocket.h:537: error: expected ‘;’ before ‘nZipLen’
zSocket.h:538: error: ‘nZipLen’ was not declared in this scope
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: expected primary-expression before ‘const’
zSocket.h:539: error: expected ‘)’ before ‘const’
zSocket.h:542: error: ‘Z_OK’ was not declared in this scope
zSocket.h:544: error: ‘Z_MEM_ERROR’ was not declared in this scope
zSocket.h:547: error: ‘Z_BUF_ERROR’ was not declared in this scope
zSocket.cpp: In member function ‘int zSocket::sendRawData(const void*, int)’:
zSocket.cpp:169: error: jump to label ‘do_select’
zSocket.cpp:163: error: from here
zSocket.cpp:166: error: crosses initialization of ‘int retcode’
In file included from zTCPClientTaskPool.cpp:19:
zSocket.h: In static member function ‘static unsigned int zSocket::packetPackZip(const void*, unsigned int, buffer_type&, bool)’:
zSocket.h:537: error: ‘uLong’ was not declared in this scope
zSocket.h:537: error: expected ‘;’ before ‘nZipLen’
zSocket.h:538: error: ‘nZipLen’ was not declared in this scope
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: expected primary-expression before ‘const’
zSocket.h:539: error: expected ‘)’ before ‘const’
zSocket.h:542: error: ‘Z_OK’ was not declared in this scope
zSocket.h:544: error: ‘Z_MEM_ERROR’ was not declared in this scope
zSocket.h:547: error: ‘Z_BUF_ERROR’ was not declared in this scope
In file included from zTCPClient.h:17,
from zTCPClient.cpp:24:
zSocket.h: In static member function ‘static unsigned int zSocket::packetPackZip(const void*, unsigned int, buffer_type&, bool)’:
zSocket.h:537: error: ‘uLong’ was not declared in this scope
zSocket.h:537: error: expected ‘;’ before ‘nZipLen’
zSocket.h:538: error: ‘nZipLen’ was not declared in this scope
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: expected primary-expression before ‘const’
zSocket.h:539: error: expected ‘)’ before ‘const’
zSocket.h:542: error: ‘Z_OK’ was not declared in this scope
zSocket.h:544: error: ‘Z_MEM_ERROR’ was not declared in this scope
zSocket.h:547: error: ‘Z_BUF_ERROR’ was not declared in this scope
In file included from zTCPClientTask.h:17,
from zTCPClientTask.cpp:24:
zSocket.h: In static member function ‘static unsigned int zSocket::packetPackZip(const void*, unsigned int, buffer_type&, bool)’:
zSocket.h:537: error: ‘uLong’ was not declared in this scope
zSocket.h:537: error: expected ‘;’ before ‘nZipLen’
zSocket.h:538: error: ‘nZipLen’ was not declared in this scope
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: ISO C++ forbids declaration of ‘type name’ with no type
zSocket.h:539: error: expected primary-expression before ‘const’
zSocket.h:539: error: expected ‘)’ before ‘const’
zSocket.h:542: error: ‘Z_OK’ was not declared in this scope
zSocket.h:544: error: ‘Z_MEM_ERROR’ was not declared in this scope
zSocket.h:547: error: ‘Z_BUF_ERROR’ was not declared in this scope
zSocket.cpp: In static member function ‘static const char* zSocket::getIPByIfName(const char*)’:
zSocket.cpp:440: warning: deprecated conversion from string constant to ‘char*’
zSocket.cpp: In member function ‘unsigned int zSocket::packetUnpack(unsigned char*, unsigned int, unsigned char*)’:
zSocket.cpp:720: error: ‘uLong’ was not declared in this scope
zSocket.cpp:720: error: expected ‘;’ before ‘nUnzipLen’
zSocket.cpp:722: error: ‘nUnzipLen’ was not declared in this scope
zSocket.cpp:722: error: ‘uncompress’ was not declared in this scope
zSocket.cpp:725: error: ‘Z_OK’ was not declared in this scope
zSocket.cpp:727: error: ‘Z_MEM_ERROR’ was not declared in this scope
zSocket.cpp:730: error: ‘Z_BUF_ERROR’ was not declared in this scope
zSocket.cpp:733: error: ‘Z_DATA_ERROR’ was not declared in this scope
zMysqlDBConnPool.cpp:53: error: ISO C++ forbids declaration of ‘MYSQL’ with no type
zMysqlDBConnPool.cpp:53: error: expected ‘;’ before ‘*’ token
zMysqlDBConnPool.cpp:103: error: ‘MYSQL_ROW’ has not been declared
zMysqlDBConnPool.cpp: In constructor ‘MysqlClientHandle::MysqlClientHandle(const UrlInfo&)’:
zMysqlDBConnPool.cpp:73: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp: In constructor ‘zMysqlDBConnPool::zMysqlDBConnPool(unsigned int (*)(const void*))’:
zMysqlDBConnPool.cpp:167: error: ‘mysql_get_client_info’ was not declared in this scope
zMysqlDBConnPool.cpp:168: error: ‘mysql_thread_safe’ was not declared in this scope
zMysqlDBConnPool.cpp: In member function ‘bool MysqlClientHandle::initMysql()’:
zMysqlDBConnPool.cpp:582: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:585: error: ‘mysql_close’ was not declared in this scope
zMysqlDBConnPool.cpp:588: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:588: error: ‘mysql_init’ was not declared in this scope
zMysqlDBConnPool.cpp:595: error: ‘CLIENT_COMPRESS’ was not declared in this scope
zMysqlDBConnPool.cpp:595: error: ‘CLIENT_INTERACTIVE’ was not declared in this scope
zMysqlDBConnPool.cpp:595: error: ‘mysql_real_connect’ was not declared in this scope
zMysqlDBConnPool.cpp: In member function ‘void MysqlClientHandle::finalHandle()’:
zMysqlDBConnPool.cpp:624: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:627: error: ‘mysql_close’ was not declared in this scope
zMysqlDBConnPool.cpp: In member function ‘bool MysqlClientHandle::setHandle()’:
zMysqlDBConnPool.cpp:639: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:639: error: ‘mysql_ping’ was not declared in this scope
zMysqlDBConnPool.cpp: In member function ‘int MysqlClientHandle::execSql(const char*, unsigned int)’:
zMysqlDBConnPool.cpp:672: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:681: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:681: error: ‘mysql_real_query’ was not declared in this scope
zMysqlDBConnPool.cpp:684: error: ‘mysql_error’ was not declared in this scope
zMysqlDBConnPool.cpp: In member function ‘unsigned int MysqlClientHandle::execSelectSql(const char*, unsigned int, const dbCol*, unsigned int, unsigned char*)’:
zMysqlDBConnPool.cpp:694: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:700: error: ‘mysql’ was not declared in this scope
zMysqlDBConnPool.cpp:700: error: ‘mysql_real_query’ was not declared in this scope
zMysqlDBConnPool.cpp:703: error: ‘mysql_error’ was not declared in this scope
zMysqlDBConnPool.cpp:708: error: ‘MYSQL_RES’ was not declared in this scope
zMysqlDBConnPool.cpp:708: error: ‘result’ was not declared in this scope
zMysqlDBConnPool.cpp:710: error: ‘mysql_store_result’ was not declared in this scope
zMysqlDBConnPool.cpp:713: error: ‘mysql_error’ was not declared in this scope
zMysqlDBConnPool.cpp:716: error: ‘mysql_num_rows’ was not declared in this scope
zMysqlDBConnPool.cpp:719: error: ‘mysql_free_result’ was not declared in this scope
zMysqlDBConnPool.cpp:724: error: ‘MYSQL_ROW’ was not declared in this scope
zMysqlDBConnPool.cpp:724: error: expected ‘;’ before ‘row’
zMysqlDBConnPool.cpp:727: error: ‘row’ was not declared in this scope
zMysqlDBConnPool.cpp:727: error: ‘mysql_fetch_row’ was not declared in this scope
zMysqlDBConnPool.cpp:729: error: ‘mysql_fetch_lengths’ was not declared in this scope
zMysqlDBConnPool.cpp:733: error: ‘mysql_free_result’ was not declared in this scope
zMysqlDBConnPool.cpp:739: error: ‘mysql_free_result’ was not declared in this scope
zMysqlDBConnPool.cpp: At global scope:
zMysqlDBConnPool.cpp:745: error: ‘unsigned int MysqlClientHandle::fullSelectDataByRow’ is not a static member of ‘class MysqlClientHandle’
zMysqlDBConnPool.cpp:745: error: ‘MYSQL_ROW’ was not declared in this scope
zMysqlDBConnPool.cpp:745: error: expected primary-expression before ‘unsigned’
zMysqlDBConnPool.cpp:745: error: expected primary-expression before ‘const’
zMysqlDBConnPool.cpp:745: error: expected primary-expression before ‘unsigned’
zMysqlDBConnPool.cpp:745: error: initializer expression list treated as compound expression
zMysqlDBConnPool.cpp:746: error: expected ‘,’ or ‘;’ before ‘{’ token
make[1]: *** [zTCPClientTask.o] Error 1
make[1]: *** [zSocket.o] Error 1
make[1]: *** [zTCPClient.o] Error 1
make[1]: *** [zTCPClientTaskPool.o] Error 1
make[1]: *** [zMysqlDBConnPool.o] Error 1
/bin/sh: mysql_config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: mysql_config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: xml2-config: command not found
/bin/sh: xml2-config: command not found
In file included from ../base/Zebra.h:4,
from CardPattern.h:3,
from CardPattern.cpp:1:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from ../base/Zebra.h:4,
from CardPattern.h:3,
from DDZCardGame.h:5,
from DDZCardGame.cpp:1:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from MiniRoom.h:7,
from MiniHall.cpp:2:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from MiniRoom.h:7,
from MiniGame.cpp:3:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from MiniRoom.h:7,
from MiniRoom.cpp:2:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from MiniTask.h:17,
from MiniUser.h:5,
from MiniUser.cpp:1:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from MiniTask.h:17,
from MiniUser.h:5,
from MiniUserManager.h:3,
from MiniUserManager.cpp:2:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from ../base/zProperties.h:19,
from ../base/Zebra.h:6,
from CardPattern.h:3,
from CardPattern.cpp:1:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniUser.cpp:1:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from ../base/zProperties.h:19,
from ../base/Zebra.h:6,
from CardPattern.h:3,
from DDZCardGame.h:5,
from DDZCardGame.cpp:1:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from /usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/hash_map:60,
from ../base/zProperties.h:19,
from ../base/zService.h:24,
from ../base/zSubNetService.h:20,
from MiniServer.h:13,
from Top100.cpp:2:
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
In file included from ../base/Zebra.h:4,
from ../base/zSocket.h:35,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniUser.cpp:1:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from DDZCardGame.cpp:2:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniUserManager.h:3,
from MiniUserManager.cpp:2:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from ../base/Zebra.h:4,
from ../base/zService.h:27,
from ../base/zSubNetService.h:20,
from MiniServer.h:13,
from Top100.cpp:2:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniHall.cpp:4:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from ../base/Zebra.h:4,
from ../base/zSocket.h:35,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniUserManager.h:3,
from MiniUserManager.cpp:2:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniGame.cpp:5:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniRoom.cpp:4:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from ../base/zSubNetService.h:22,
from MiniServer.h:13,
from Top100.cpp:2:
../base/zSocket.h:22:18: error: zlib.h: No such file or directory
In file included from ../base/Zebra.h:4,
from ../base/zSocket.h:35,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniHall.cpp:4:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from ../base/Zebra.h:4,
from ../base/zSocket.h:35,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniRoom.cpp:4:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from ../base/Zebra.h:4,
from ../base/zSocket.h:35,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniGame.cpp:5:
../base/zLogger.h:14:28: error: log4cxx/logger.h: No such file or directory
../base/zLogger.h:15:46: error: log4cxx/dailyrollingfileappender.h: No such file or directory
In file included from MiniUser.cpp:3:
../base/zMetaData.h:13:19: error: mysql.h: No such file or directory
In file included from Top100.cpp:4:
../base/zMetaData.h:13:19: error: mysql.h: No such file or directory
In file included from MiniHall.cpp:7:
../base/zXMLParser.h:13:30: error: libxml/xmlmemory.h: No such file or directory
../base/zXMLParser.h:14:27: error: libxml/parser.h: No such file or directory
In file included from MiniUserManager.cpp:6:
../base/zMetaData.h:13:19: error: mysql.h: No such file or directory
In file included from MiniHall.cpp:9:
../base/zMetaData.h:13:19: error: mysql.h: No such file or directory
In file included from ../base/MiniUserCommand.h:5,
from CardPattern.h:2,
from CardPattern.cpp:1:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/MiniUserCommand.h:5,
from MiniGame.h:4,
from DDZCardGame.h:2,
from DDZCardGame.cpp:1:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/MiniUserCommand.h:5,
from Top100.h:3,
from Top100.cpp:1:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/MiniUserCommand.h:5,
from MiniHall.h:5,
from MiniRoom.cpp:1:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/MiniUserCommand.h:5,
from MiniUserManager.cpp:1:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/MiniUserCommand.h:5,
from MiniHall.h:5,
from MiniGame.cpp:2:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/MiniUserCommand.h:5,
from MiniHall.h:5,
from MiniHall.cpp:1:
../base/Command.h: In constructor ‘Cmd::stQueryAuction::stQueryAuction()’:
../base/Command.h:8677: warning: large integer implicitly truncated to unsigned type
In file included from ../base/Zebra.h:4,
from ../base/zSocket.h:35,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniUser.cpp:1:
../base/zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
../base/zLogger.h:19: error: expected namespace-name before ‘;’ token
../base/zLogger.h:20: error: ‘log4cxx’ has not been declared
../base/zLogger.h:20: error: ‘helpers’ is not a namespace-name
../base/zLogger.h:20: error: expected namespace-name before ‘;’ token
../base/zLogger.h:60: error: ‘Level’ has not been declared
../base/zLogger.h:61: error: ‘Level’ has not been declared
../base/zLogger.h:62: error: ‘Level’ has not been declared
../base/zLogger.h:63: error: ‘Level’ has not been declared
../base/zLogger.h:66: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:67: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:68: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:69: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:71: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:72: error: expected ‘)’ before ‘level’
../base/zLogger.h:139: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:139: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:142: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:142: error: expected ‘;’ before ‘&’ token
../base/zLogger.h:143: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:143: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:146: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:146: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:147: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:147: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:148: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:148: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:149: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:149: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:173: error: expected class-name before ‘{’ token
../base/zLogger.h:178: error: ‘TimeZonePtr’ does not name a type
../base/zLogger.h:183: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:183: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:188: error: expected class-name before ‘{’ token
../base/zLogger.h:190: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:190: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:196: error: ISO C++ forbids declaration of ‘String’ with no type
../base/zLogger.h:196: error: expected ‘,’ or ‘...’ before ‘&’ token
../base/zLogger.h:200: error: ‘LoggerPtr’ does not name a type
../base/zLogger.h: In member function ‘void zLogger::PowerLogger::setName(int)’:
../base/zLogger.h:192: error: ‘name’ was not declared in this scope
../base/zLogger.h:192: error: ‘s’ was not declared in this scope
../base/zLogger.h: In constructor ‘zLogger::PowerLogger::PowerLogger(int)’:
../base/zLogger.h:196: error: class ‘zLogger::PowerLogger’ does not have any field named ‘Logger’
../base/zLogger.h:196: error: ‘s’ was not declared in this scope
In file included from ../base/zTime.h:20,
from ../base/zSocket.h:36,
from ../base/zTCPServer.h:20,
from MiniTask.h:19,
from MiniUser.h:5,
from MiniUser.cpp:1:
../base/zMisc.h: At global scope:
../base/zMisc.h:155: error: extra qualification ‘zMisc::’ on member ‘getAllNum’
In file included from ../base/Zebra.h:4,
from CardPattern.h:3,
from CardPattern.cpp:1:
../base/zLogger.h: At global scope:
../base/zLogger.h:19: error: ‘log4cxx’ is not a namespace-name
../base/zLogger.h:19: error: expected namespace-name before ‘;’ token
../base/zLogger.h:20: error: ‘log4cxx’ has not been declared
../base/zLogger.h:20: error: ‘helpers’ is not a namespace-name
../base/zLogger.h:20: error: expected namespace-name before ‘;’ token
../base/zLogger.h:60: error: ‘Level’ has not been declared
../base/zLogger.h:61: error: ‘Level’ has not been declared
../base/zLogger.h:62: error: ‘Level’ has not been declared
../base/zLogger.h:63: error: ‘Level’ has not been declared
../base/zLogger.h:66: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:67: error: ‘LevelPtr’ does not name a type
../base/zLogger.h:68: error: ‘LevelPtr’ does not name a type