~holger-seelig/titania/0.8

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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by titania configure 0.1, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ /home/holger/Projekte/Titania/configure --enable-parallel --prefix=/home/holger/Projekte/Titania/debian/titania/usr/

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

hostname = qualle
uname -m = x86_64
uname -r = 3.16.0-34-generic
uname -s = Linux
uname -v = #47-Ubuntu SMP Fri Apr 10 18:02:58 UTC 2015

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

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

PATH: /home/holger/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/games


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

configure:2527: checking for a BSD-compatible install
configure:2595: result: /usr/bin/install -c
configure:2606: checking whether build environment is sane
configure:2661: result: yes
configure:2699: WARNING: 'missing' script is too old or missing
configure:2812: checking for a thread-safe mkdir -p
configure:2851: result: /bin/mkdir -p
configure:2858: checking for gawk
configure:2874: found /usr/bin/gawk
configure:2885: result: gawk
configure:2896: checking whether make sets $(MAKE)
configure:2918: result: yes
configure:2947: checking whether make supports nested variables
configure:2964: result: yes
configure:3102: checking whether make supports nested variables
configure:3119: result: yes
configure:3132: checking whether to enable maintainer-specific portions of Makefiles
configure:3141: result: no
configure:3215: checking for g++
configure:3231: found /usr/bin/g++
configure:3242: result: g++
configure:3269: checking for C++ compiler version
configure:3278: g++ --version >&5
g++ (Ubuntu 4.9.2-10ubuntu13) 4.9.2
Copyright (C) 2014 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:3289: $? = 0
configure:3278: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.2-10ubuntu13' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13) 
configure:3289: $? = 0
configure:3278: g++ -V >&5
g++: error: unrecognized command line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:3289: $? = 4
configure:3278: g++ -qversion >&5
g++: error: unrecognized command line option '-qversion'
g++: fatal error: no input files
compilation terminated.
configure:3289: $? = 4
configure:3309: checking whether the C++ compiler works
configure:3331: g++    conftest.cpp  >&5
configure:3335: $? = 0
configure:3383: result: yes
configure:3386: checking for C++ compiler default output file name
configure:3388: result: a.out
configure:3394: checking for suffix of executables
configure:3401: g++ -o conftest    conftest.cpp  >&5
configure:3405: $? = 0
configure:3427: result: 
configure:3449: checking whether we are cross compiling
configure:3457: g++ -o conftest    conftest.cpp  >&5
configure:3461: $? = 0
configure:3468: ./conftest
configure:3472: $? = 0
configure:3487: result: no
configure:3492: checking for suffix of object files
configure:3514: g++ -c   conftest.cpp >&5
configure:3518: $? = 0
configure:3539: result: o
configure:3543: checking whether we are using the GNU C++ compiler
configure:3562: g++ -c   conftest.cpp >&5
configure:3562: $? = 0
configure:3571: result: yes
configure:3580: checking whether g++ accepts -g
configure:3600: g++ -c -g  conftest.cpp >&5
configure:3600: $? = 0
configure:3641: result: yes
configure:3675: checking for style of include used by make
configure:3703: result: GNU
configure:3729: checking dependency style of g++
configure:3840: result: gcc3
configure:3965: checking whether NLS is requested
configure:3974: result: yes
configure:3992: checking for intltool >= 0.35.0
configure:3994: result: 0.51.0 found
configure:4002: checking for intltool-update
configure:4020: found /usr/bin/intltool-update
configure:4032: result: /usr/bin/intltool-update
configure:4042: checking for intltool-merge
configure:4060: found /usr/bin/intltool-merge
configure:4072: result: /usr/bin/intltool-merge
configure:4082: checking for intltool-extract
configure:4100: found /usr/bin/intltool-extract
configure:4112: result: /usr/bin/intltool-extract
configure:4266: checking for xgettext
configure:4284: found /usr/bin/xgettext
configure:4296: result: /usr/bin/xgettext
configure:4306: checking for msgmerge
configure:4324: found /usr/bin/msgmerge
configure:4336: result: /usr/bin/msgmerge
configure:4346: checking for msgfmt
configure:4364: found /usr/bin/msgfmt
configure:4376: result: /usr/bin/msgfmt
configure:4386: checking for gmsgfmt
configure:4417: result: /usr/bin/msgfmt
configure:4437: checking for perl
configure:4455: found /usr/bin/perl
configure:4467: result: /usr/bin/perl
configure:4478: checking for perl >= 5.8.1
configure:4485: result: 5.20.2
configure:4489: checking for XML::Parser
configure:4492: result: ok
configure:4561: checking for gcc
configure:4577: found /usr/bin/gcc
configure:4588: result: gcc
configure:4817: checking for C compiler version
configure:4826: gcc --version >&5
gcc (Ubuntu 4.9.2-10ubuntu13) 4.9.2
Copyright (C) 2014 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:4837: $? = 0
configure:4826: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.2-10ubuntu13' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13) 
configure:4837: $? = 0
configure:4826: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:4837: $? = 4
configure:4826: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:4837: $? = 4
configure:4841: checking whether we are using the GNU C compiler
configure:4860: gcc -c   conftest.c >&5
configure:4860: $? = 0
configure:4869: result: yes
configure:4878: checking whether gcc accepts -g
configure:4898: gcc -c -g  conftest.c >&5
configure:4898: $? = 0
configure:4939: result: yes
configure:4956: checking for gcc option to accept ISO C89
configure:5019: gcc  -c -g -O2  conftest.c >&5
configure:5019: $? = 0
configure:5032: result: none needed
configure:5057: checking whether gcc understands -c and -o together
configure:5079: gcc -c conftest.c -o conftest2.o
configure:5082: $? = 0
configure:5079: gcc -c conftest.c -o conftest2.o
configure:5082: $? = 0
configure:5094: result: yes
configure:5113: checking dependency style of gcc
configure:5224: result: gcc3
configure:5245: checking how to run the C preprocessor
configure:5276: gcc -E  conftest.c
configure:5276: $? = 0
configure:5290: gcc -E  conftest.c
conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:5290: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "titania"
| #define PACKAGE_TARNAME "titania"
| #define PACKAGE_VERSION "0.1"
| #define PACKAGE_STRING "titania 0.1"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "titania"
| #define VERSION "0.1"
| #define GETTEXT_PACKAGE "titania"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5315: result: gcc -E
configure:5335: gcc -E  conftest.c
configure:5335: $? = 0
configure:5349: gcc -E  conftest.c
conftest.c:12:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:5349: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "titania"
| #define PACKAGE_TARNAME "titania"
| #define PACKAGE_VERSION "0.1"
| #define PACKAGE_STRING "titania 0.1"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "titania"
| #define VERSION "0.1"
| #define GETTEXT_PACKAGE "titania"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5378: checking for grep that handles long lines and -e
configure:5436: result: /bin/grep
configure:5441: checking for egrep
configure:5503: result: /bin/grep -E
configure:5508: checking for ANSI C header files
configure:5528: gcc -c -g -O2  conftest.c >&5
configure:5528: $? = 0
configure:5601: gcc -o conftest -g -O2  -rdynamic conftest.c  >&5
configure:5601: $? = 0
configure:5601: ./conftest
configure:5601: $? = 0
configure:5612: result: yes
configure:5625: checking for sys/types.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for sys/stat.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for stdlib.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for string.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for memory.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for strings.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for inttypes.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for stdint.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5625: checking for unistd.h
configure:5625: gcc -c -g -O2  conftest.c >&5
configure:5625: $? = 0
configure:5625: result: yes
configure:5640: checking locale.h usability
configure:5640: gcc -c -g -O2  conftest.c >&5
configure:5640: $? = 0
configure:5640: result: yes
configure:5640: checking locale.h presence
configure:5640: gcc -E  conftest.c
configure:5640: $? = 0
configure:5640: result: yes
configure:5640: checking for locale.h
configure:5640: result: yes
configure:5651: checking for LC_MESSAGES
configure:5667: gcc -o conftest -g -O2  -rdynamic conftest.c  >&5
configure:5667: $? = 0
configure:5675: result: yes
configure:5692: checking libintl.h usability
configure:5692: gcc -c -g -O2  conftest.c >&5
configure:5692: $? = 0
configure:5692: result: yes
configure:5692: checking libintl.h presence
configure:5692: gcc -E  conftest.c
configure:5692: $? = 0
configure:5692: result: yes
configure:5692: checking for libintl.h
configure:5692: result: yes
configure:5700: checking for ngettext in libc
configure:5718: gcc -o conftest -g -O2  -rdynamic conftest.c  >&5
configure:5718: $? = 0
configure:5727: result: yes
configure:5731: checking for dgettext in libc
configure:5749: gcc -o conftest -g -O2  -rdynamic conftest.c  >&5
configure:5749: $? = 0
configure:5758: result: yes
configure:5765: checking for bind_textdomain_codeset
configure:5765: gcc -o conftest -g -O2  -rdynamic conftest.c  >&5
configure:5765: $? = 0
configure:5765: result: yes
configure:6041: checking for msgfmt
configure:6068: result: /usr/bin/msgfmt
configure:6079: checking for dcgettext
configure:6079: gcc -o conftest -g -O2  -rdynamic conftest.c   >&5
conftest.c:49:6: warning: conflicting types for built-in function 'dcgettext'
 char dcgettext ();
      ^
configure:6079: $? = 0
configure:6079: result: yes
configure:6089: checking if msgfmt accepts -c
configure:6104: $MSGFMT -c -o /dev/null conftest.foo
conftest.foo:3: warning: header field 'Language' missing in header
configure:6107: $? = 0
configure:6109: result: yes
configure:6119: checking for gmsgfmt
configure:6150: result: /usr/bin/msgfmt
configure:6160: checking for xgettext
configure:6187: result: /usr/bin/xgettext
configure:6206: gcc -o conftest -g -O2  -rdynamic conftest.c   >&5
configure:6206: $? = 0
configure:6381: checking build system type
configure:6395: result: x86_64-unknown-linux-gnu
configure:6415: checking host system type
configure:6428: result: x86_64-unknown-linux-gnu
configure:6469: checking how to print strings
configure:6496: result: printf
configure:6517: checking for a sed that does not truncate output
configure:6581: result: /bin/sed
configure:6599: checking for fgrep
configure:6661: result: /bin/grep -F
configure:6696: checking for ld used by gcc
configure:6763: result: /usr/bin/ld
configure:6770: checking if the linker (/usr/bin/ld) is GNU ld
configure:6785: result: yes
configure:6797: checking for BSD- or MS-compatible name lister (nm)
configure:6846: result: /usr/bin/nm -B
configure:6976: checking the name lister (/usr/bin/nm -B) interface
configure:6983: gcc -c -g -O2  conftest.c >&5
configure:6986: /usr/bin/nm -B "conftest.o"
configure:6989: output
0000000000000000 B some_variable
configure:6996: result: BSD nm
configure:6999: checking whether ln -s works
configure:7003: result: yes
configure:7011: checking the maximum length of command line arguments
configure:7142: result: 1572864
configure:7159: checking whether the shell understands some XSI constructs
configure:7169: result: yes
configure:7173: checking whether the shell understands "+="
configure:7179: result: yes
configure:7214: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
configure:7254: result: func_convert_file_noop
configure:7261: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
configure:7281: result: func_convert_file_noop
configure:7288: checking for /usr/bin/ld option to reload object files
configure:7295: result: -r
configure:7369: checking for objdump
configure:7385: found /usr/bin/objdump
configure:7396: result: objdump
configure:7428: checking how to recognize dependent libraries
configure:7626: result: pass_all
configure:7711: checking for dlltool
configure:7741: result: no
configure:7771: checking how to associate runtime and link libraries
configure:7798: result: printf %s\n
configure:7858: checking for ar
configure:7874: found /usr/bin/ar
configure:7885: result: ar
configure:7922: checking for archiver @FILE support
configure:7939: gcc -c -g -O2  conftest.c >&5
configure:7939: $? = 0
configure:7942: ar cru libconftest.a @conftest.lst >&5
configure:7945: $? = 0
configure:7950: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:7953: $? = 1
configure:7965: result: @
configure:8023: checking for strip
configure:8039: found /usr/bin/strip
configure:8050: result: strip
configure:8122: checking for ranlib
configure:8138: found /usr/bin/ranlib
configure:8149: result: ranlib
configure:8251: checking command to parse /usr/bin/nm -B output from gcc object
configure:8371: gcc -c -g -O2  conftest.c >&5
configure:8374: $? = 0
configure:8378: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:8381: $? = 0
configure:8447: gcc -o conftest -g -O2  -rdynamic conftest.c conftstm.o >&5
configure:8450: $? = 0
configure:8488: result: ok
configure:8525: checking for sysroot
configure:8555: result: no
configure:8632: gcc -c -g -O2  conftest.c >&5
configure:8635: $? = 0
configure:8824: checking for mt
configure:8840: found /bin/mt
configure:8851: result: mt
configure:8874: checking if mt is a manifest tool
configure:8880: mt '-?'
configure:8888: result: no
configure:9527: checking for dlfcn.h
configure:9527: gcc -c -g -O2  conftest.c >&5
configure:9527: $? = 0
configure:9527: result: yes
configure:9744: checking for objdir
configure:9759: result: .libs
configure:10026: checking if gcc supports -fno-rtti -fno-exceptions
configure:10044: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
configure:10048: $? = 0
configure:10061: result: no
configure:10388: checking for gcc option to produce PIC
configure:10395: result: -fPIC -DPIC
configure:10403: checking if gcc PIC flag -fPIC -DPIC works
configure:10421: gcc -c -g -O2  -fPIC -DPIC -DPIC conftest.c >&5
configure:10425: $? = 0
configure:10438: result: yes
configure:10467: checking if gcc static flag -static works
configure:10495: result: yes
configure:10510: checking if gcc supports -c -o file.o
configure:10531: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
configure:10535: $? = 0
configure:10557: result: yes
configure:10565: checking if gcc supports -c -o file.o
configure:10612: result: yes
configure:10645: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:11802: result: yes
configure:11839: checking whether -lc should be explicitly linked in
configure:11847: gcc -c -g -O2  conftest.c >&5
configure:11850: $? = 0
configure:11865: gcc -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:11868: $? = 0
configure:11882: result: no
configure:12042: checking dynamic linker characteristics
configure:12542: gcc -o conftest -g -O2  -rdynamic -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:12542: $? = 0
configure:12776: result: GNU/Linux ld.so
configure:12883: checking how to hardcode library paths into programs
configure:12908: result: immediate
configure:13448: checking whether stripping libraries is possible
configure:13453: result: yes
configure:13488: checking if libtool supports shared libraries
configure:13490: result: yes
configure:13493: checking whether to build shared libraries
configure:13514: result: yes
configure:13517: checking whether to build static libraries
configure:13521: result: yes
configure:13544: checking how to run the C++ preprocessor
configure:13571: g++ -E  conftest.cpp
configure:13571: $? = 0
configure:13585: g++ -E  conftest.cpp
conftest.cpp:30:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:13585: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "titania"
| #define PACKAGE_TARNAME "titania"
| #define PACKAGE_VERSION "0.1"
| #define PACKAGE_STRING "titania 0.1"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "titania"
| #define VERSION "0.1"
| #define GETTEXT_PACKAGE "titania"
| #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_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:13610: result: g++ -E
configure:13630: g++ -E  conftest.cpp
configure:13630: $? = 0
configure:13644: g++ -E  conftest.cpp
conftest.cpp:30:28: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
                            ^
compilation terminated.
configure:13644: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "titania"
| #define PACKAGE_TARNAME "titania"
| #define PACKAGE_VERSION "0.1"
| #define PACKAGE_STRING "titania 0.1"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define PACKAGE "titania"
| #define VERSION "0.1"
| #define GETTEXT_PACKAGE "titania"
| #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_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:13813: checking for ld used by g++
configure:13880: result: /usr/bin/ld -m elf_x86_64
configure:13887: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:13902: result: yes
configure:13957: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:14959: result: yes
configure:14995: g++ -c -Wall -std=c++11 -O3 -fopenmp -Wno-pmf-conversions -Wno-narrowing -floop-parallelize-all -ftree-parallelize-loops=4 -D_GLIBCXX_PARALLEL  conftest.cpp >&5
configure:14998: $? = 0
configure:15518: checking for g++ option to produce PIC
configure:15525: result: -fPIC -DPIC
configure:15533: checking if g++ PIC flag -fPIC -DPIC works
configure:15551: g++ -c -Wall -std=c++11 -O3 -fopenmp -Wno-pmf-conversions -Wno-narrowing -floop-parallelize-all -ftree-parallelize-loops=4 -D_GLIBCXX_PARALLEL  -fPIC -DPIC -DPIC conftest.cpp >&5
configure:15555: $? = 0
configure:15568: result: yes
configure:15591: checking if g++ static flag -static works
configure:15619: result: yes
configure:15631: checking if g++ supports -c -o file.o
configure:15652: g++ -c -Wall -std=c++11 -O3 -fopenmp -Wno-pmf-conversions -Wno-narrowing -floop-parallelize-all -ftree-parallelize-loops=4 -D_GLIBCXX_PARALLEL  -o out/conftest2.o conftest.cpp >&5
configure:15656: $? = 0
configure:15678: result: yes
configure:15683: checking if g++ supports -c -o file.o
configure:15730: result: yes
configure:15760: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:15799: result: yes
configure:15940: checking dynamic linker characteristics
configure:16608: result: GNU/Linux ld.so
configure:16661: checking how to hardcode library paths into programs
configure:16686: result: immediate
configure:16814: checking for pkg-config
configure:16832: found /usr/bin/pkg-config
configure:16844: result: /usr/bin/pkg-config
configure:16869: checking pkg-config is at least version 0.9.0
configure:16872: result: yes
configure:16882: checking for GLX
configure:16889: $PKG_CONFIG --exists --print-errors "gl x11"
configure:16892: $? = 0
configure:16906: $PKG_CONFIG --exists --print-errors "gl x11"
configure:16909: $? = 0
configure:16947: result: yes
configure:16954: checking GL/gl.h usability
configure:16954: gcc -c -g -O2  conftest.c >&5
configure:16954: $? = 0
configure:16954: result: yes
configure:16954: checking GL/gl.h presence
configure:16954: gcc -E  conftest.c
configure:16954: $? = 0
configure:16954: result: yes
configure:16954: checking for GL/gl.h
configure:16954: result: yes
configure:16954: checking GL/glx.h usability
configure:16954: gcc -c -g -O2  conftest.c >&5
configure:16954: $? = 0
configure:16954: result: yes
configure:16954: checking GL/glx.h presence
configure:16954: gcc -E  conftest.c
configure:16954: $? = 0
configure:16954: result: yes
configure:16954: checking for GL/glx.h
configure:16954: result: yes
configure:16966: checking for glXCreateContext in -lGL
configure:16991: gcc -o conftest -g -O2  -rdynamic conftest.c -lGL   >&5
configure:16991: $? = 0
configure:17000: result: yes
configure:17023: checking for TITANIA
configure:17031: $PKG_CONFIG --exists --print-errors "gtksourceviewmm-3.0
gconfmm-2.6"
configure:17035: $? = 0
configure:17051: $PKG_CONFIG --exists --print-errors "gtksourceviewmm-3.0
gconfmm-2.6"
configure:17055: $? = 0
configure:17117: result: yes
configure:17124: checking for TITANIA_X3D
configure:17138: $PKG_CONFIG --exists --print-errors "gstreamermm-0.10
fontconfig
ftgl
glu
mozjs185
libpcrecpp
ImageMagick++
libgtop-2.0"
configure:17148: $? = 0
configure:17176: $PKG_CONFIG --exists --print-errors "gstreamermm-0.10
fontconfig
ftgl
glu
mozjs185
libpcrecpp
ImageMagick++
libgtop-2.0"
configure:17186: $? = 0
configure:17272: result: yes
configure:17279: checking for TITANIA_STREAM
configure:17287: $PKG_CONFIG --exists --print-errors "libcurl
giomm-2.4"
configure:17291: $? = 0
configure:17307: $PKG_CONFIG --exists --print-errors "libcurl
giomm-2.4"
configure:17311: $? = 0
configure:17373: result: yes
configure:17380: checking for TITANIA_SQLITE
configure:17388: $PKG_CONFIG --exists --print-errors "sqlite3
libpcrecpp"
configure:17392: $? = 0
configure:17408: $PKG_CONFIG --exists --print-errors "sqlite3
libpcrecpp"
configure:17412: $? = 0
configure:17474: result: yes
configure:17481: checking for TITANIA_OPENGL_SURFACE
configure:17490: $PKG_CONFIG --exists --print-errors "gtkmm-3.0
glew
gl"
configure:17495: $? = 0
configure:17513: $PKG_CONFIG --exists --print-errors "gtkmm-3.0
glew
gl"
configure:17518: $? = 0
configure:17584: result: yes
configure:17592: checking for TITANIA_GZSTREAM
configure:17599: $PKG_CONFIG --exists --print-errors "zlib"
configure:17602: $? = 0
configure:17616: $PKG_CONFIG --exists --print-errors "zlib"
configure:17619: $? = 0
configure:17677: result: yes
configure:17684: checking for TITANIA_STANDARD
configure:17692: $PKG_CONFIG --exists --print-errors "giomm-2.4
glibmm-2.4"
configure:17696: $? = 0
configure:17712: $PKG_CONFIG --exists --print-errors "giomm-2.4
glibmm-2.4"
configure:17716: $? = 0
configure:17778: result: yes
configure:17895: checking that generated files are newer than configure
configure:17901: result: done
configure:17956: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by titania config.status 0.1, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on qualle

config.status:1300: creating libtitania-standard/Makefile
config.status:1300: creating libtitania-sqlite/Makefile
config.status:1300: creating libtitania-stream/Makefile
config.status:1300: creating libtitania-anyoptions/Makefile
config.status:1300: creating libtitania-gzstream/Makefile
config.status:1300: creating libtitania-opengl-surface/Makefile
config.status:1300: creating libtitania-peaseblossom/Makefile
config.status:1300: creating libtitania-x3d/Makefile
config.status:1300: creating Titania/Makefile
config.status:1300: creating titania-info/Makefile
config.status:1300: creating x3dtidy/Makefile
config.status:1300: creating x3d2vrml/Makefile
config.status:1300: creating test/Makefile
config.status:1300: creating experimental/Makefile
config.status:1300: creating po/Makefile.in
config.status:1300: creating Makefile
config.status:1300: creating config.h
config.status:1481: config.h is unchanged
config.status:1529: executing depfiles commands
config.status:1529: executing default-1 commands
config.status:1529: executing libtool commands
config.status:1529: executing po/stamp-it commands

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

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_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_GLX_CFLAGS_set=
ac_cv_env_GLX_CFLAGS_value=
ac_cv_env_GLX_LIBS_set=
ac_cv_env_GLX_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=set
ac_cv_env_PKG_CONFIG_PATH_value=/usr/lib/x86_64-linux-gnu/pkgconfig
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_TITANIA_CFLAGS_set=
ac_cv_env_TITANIA_CFLAGS_value=
ac_cv_env_TITANIA_GZSTREAM_CFLAGS_set=
ac_cv_env_TITANIA_GZSTREAM_CFLAGS_value=
ac_cv_env_TITANIA_GZSTREAM_LIBS_set=
ac_cv_env_TITANIA_GZSTREAM_LIBS_value=
ac_cv_env_TITANIA_LIBS_set=
ac_cv_env_TITANIA_LIBS_value=
ac_cv_env_TITANIA_OPENGL_SURFACE_CFLAGS_set=
ac_cv_env_TITANIA_OPENGL_SURFACE_CFLAGS_value=
ac_cv_env_TITANIA_OPENGL_SURFACE_LIBS_set=
ac_cv_env_TITANIA_OPENGL_SURFACE_LIBS_value=
ac_cv_env_TITANIA_SQLITE_CFLAGS_set=
ac_cv_env_TITANIA_SQLITE_CFLAGS_value=
ac_cv_env_TITANIA_SQLITE_LIBS_set=
ac_cv_env_TITANIA_SQLITE_LIBS_value=
ac_cv_env_TITANIA_STANDARD_CFLAGS_set=
ac_cv_env_TITANIA_STANDARD_CFLAGS_value=
ac_cv_env_TITANIA_STANDARD_LIBS_set=
ac_cv_env_TITANIA_STANDARD_LIBS_value=
ac_cv_env_TITANIA_STREAM_CFLAGS_set=
ac_cv_env_TITANIA_STREAM_CFLAGS_value=
ac_cv_env_TITANIA_STREAM_LIBS_set=
ac_cv_env_TITANIA_STREAM_LIBS_value=
ac_cv_env_TITANIA_X3D_CFLAGS_set=
ac_cv_env_TITANIA_X3D_CFLAGS_value=
ac_cv_env_TITANIA_X3D_LIBS_set=
ac_cv_env_TITANIA_X3D_LIBS_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_func_bind_textdomain_codeset=yes
ac_cv_func_dcgettext=yes
ac_cv_header_GL_gl_h=yes
ac_cv_header_GL_glx_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_locale_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=x86_64-unknown-linux-gnu
ac_cv_lib_GL_glXCreateContext=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GMSGFMT=/usr/bin/msgfmt
ac_cv_path_GREP=/bin/grep
ac_cv_path_INTLTOOL_EXTRACT=/usr/bin/intltool-extract
ac_cv_path_INTLTOOL_MERGE=/usr/bin/intltool-merge
ac_cv_path_INTLTOOL_PERL=/usr/bin/perl
ac_cv_path_INTLTOOL_UPDATE=/usr/bin/intltool-update
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_MSGMERGE=/usr/bin/msgmerge
ac_cv_path_SED=/bin/sed
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
am_cv_val_LC_MESSAGES=yes
gt_cv_func_dgettext_libc=yes
gt_cv_func_dgettext_libintl=no
gt_cv_func_ngettext_libc=yes
gt_cv_have_gettext=yes
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/  {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
pkg_cv_GLX_CFLAGS='-I/usr/include/libdrm '
pkg_cv_GLX_LIBS='-lGL -lX11 '
pkg_cv_TITANIA_CFLAGS='-pthread -I/usr/include/gtkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gtkmm-3.0/include -I/usr/include/atkmm-1.6 -I/usr/include/gtk-3.0/unix-print -I/usr/include/gdkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gdkmm-3.0/include -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/lib/x86_64-linux-gnu/pangomm-1.4/include -I/usr/include/cairomm-1.0 -I/usr/lib/x86_64-linux-gnu/cairomm-1.0/include -I/usr/include/gtksourceview-3.0 -I/usr/include/libxml2 -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/mirclient -I/usr/include/mircommon -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtksourceviewmm-3.0 -I/usr/lib/gtksourceviewmm-3.0/include -I/usr/include/gconfmm-2.6 -I/usr/lib/gconfmm-2.6/include '
pkg_cv_TITANIA_GZSTREAM_CFLAGS=
pkg_cv_TITANIA_GZSTREAM_LIBS='-L/usr/lib/x86_64-linux-gnu -lz '
pkg_cv_TITANIA_LIBS='-lgtksourceviewmm-3.0 -lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lpangomm-1.4 -lcairomm-1.0 -lgtksourceview-3.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgconfmm-2.6 -lglibmm-2.4 -lgobject-2.0 -lsigc-2.0 -lgconf-2 -lglib-2.0 '
pkg_cv_TITANIA_OPENGL_SURFACE_CFLAGS='-pthread -I/usr/include/gtkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gtkmm-3.0/include -I/usr/include/atkmm-1.6 -I/usr/include/gtk-3.0/unix-print -I/usr/include/gdkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gdkmm-3.0/include -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/lib/x86_64-linux-gnu/pangomm-1.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/mirclient -I/usr/include/mircommon -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/cairomm-1.0 -I/usr/lib/x86_64-linux-gnu/cairomm-1.0/include -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/GL -I/usr/include/libdrm '
pkg_cv_TITANIA_OPENGL_SURFACE_LIBS='-lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lpangomm-1.4 -lglibmm-2.4 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lgio-2.0 -lcairomm-1.0 -lcairo -lsigc-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0 -lGLEW -lGLU -lGL '
pkg_cv_TITANIA_SQLITE_CFLAGS=
pkg_cv_TITANIA_SQLITE_LIBS='-lsqlite3 -lpcre -lpcrecpp '
pkg_cv_TITANIA_STANDARD_CFLAGS='-pthread -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include '
pkg_cv_TITANIA_STANDARD_LIBS='-lgiomm-2.4 -lgio-2.0 -lglibmm-2.4 -lgobject-2.0 -lglib-2.0 -lsigc-2.0 '
pkg_cv_TITANIA_STREAM_CFLAGS='-pthread -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include '
pkg_cv_TITANIA_STREAM_LIBS='-lcurl -lgiomm-2.4 -lgio-2.0 -lglibmm-2.4 -lgobject-2.0 -lglib-2.0 -lsigc-2.0 '
pkg_cv_TITANIA_X3D_CFLAGS='-pthread -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/FTGL -I/usr/include/freetype2 -I/usr/include/libdrm -I/usr/include/nspr -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gstreamermm-0.10 -I/usr/lib/gstreamermm-0.10/include -I/usr/include/libxml++-2.6 -I/usr/lib/libxml++-2.6/include -I/usr/include/js -I/usr/include/libgtop-2.0 '
pkg_cv_TITANIA_X3D_LIBS='-lgstreamermm-0.10 -lgiomm-2.4 -lgio-2.0 -lxml++-2.6 -lglibmm-2.4 -lsigc-2.0 -lgstcontroller-0.10 -lgstdataprotocol-0.10 -lgstnet-0.10 -lgstaudio-0.10 -lgstcdda-0.10 -lgsttag-0.10 -lgstinterfaces-0.10 -lgstnetbuffer-0.10 -lgstrtp-0.10 -lgstvideo-0.10 -lgstbase-0.10 -lgstpbutils-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -pthread -lgthread-2.0 -pthread -lxml2 -lfontconfig -lfreetype -lftgl -lGLU -lGL -lmozjs185 -lplds4 -lplc4 -lnspr4 -lpcre -lpcrecpp -lMagick++-6.Q16 -lMagickWand-6.Q16 -lMagickCore-6.Q16 -lgtop-2.0 -lglib-2.0 '

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

ACLOCAL='aclocal-1.14'
ALL_LINGUAS=''
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
AR='ar'
AUTOCONF='autoconf'
AUTOHEADER='autoheader'
AUTOMAKE='automake-1.14'
AWK='gawk'
CATALOGS=''
CATOBJEXT='.gmo'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CONFIGURATION='Parallel'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-Wall -std=c++11 -O3 -fopenmp -Wno-pmf-conversions -Wno-narrowing -floop-parallelize-all -ftree-parallelize-loops=4 -D_GLIBCXX_PARALLEL'
CYGPATH_W='echo'
DATADIRNAME='share'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_DEBUG_FALSE=''
ENABLE_DEBUG_TRUE='#'
ENABLE_PARALLEL_FALSE='#'
ENABLE_PARALLEL_TRUE=''
ENABLE_RELEASE_FALSE=''
ENABLE_RELEASE_TRUE='#'
EXEEXT=''
FGREP='/bin/grep -F'
GETTEXT_PACKAGE='titania'
GLX_CFLAGS='-I/usr/include/libdrm '
GLX_LIBS='-lGL -lX11 '
GMOFILES=''
GMSGFMT='/usr/bin/msgfmt'
GREP='/bin/grep'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INSTOBJEXT='.mo'
INTLLIBS=''
INTLTOOL_CAVES_RULE='%.caves:     %.caves.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_EXTRACT='/usr/bin/intltool-extract'
INTLTOOL_KBD_RULE='%.kbd:       %.kbd.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_KEYS_RULE='%.keys:      %.keys.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_MERGE='/usr/bin/intltool-merge'
INTLTOOL_OAF_RULE='%.oaf:       %.oaf.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@'
INTLTOOL_PERL='/usr/bin/perl'
INTLTOOL_POLICY_RULE='%.policy:    %.policy.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_PONG_RULE='%.pong:      %.pong.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_PROP_RULE='%.prop:      %.prop.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SCHEMAS_RULE='%.schemas:   %.schemas.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SERVER_RULE='%.server:    %.server.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SERVICE_RULE='%.service: %.service.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SHEET_RULE='%.sheet:     %.sheet.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_THEME_RULE='%.theme:     %.theme.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_UI_RULE='%.ui:        %.ui.in        $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_UPDATE='/usr/bin/intltool-update'
INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))'
INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))'
INTLTOOL_XAM_RULE='%.xam:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_XML_NOMERGE_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@'
INTLTOOL_XML_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL__v_MERGE_0='@echo "  ITMRG " $@;'
INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))'
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-rdynamic'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
MKINSTALLDIRS='./mkinstalldirs'
MSGFMT='/usr/bin/msgfmt'
MSGFMT_OPTS='-c'
MSGMERGE='/usr/bin/msgmerge'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='titania'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='titania'
PACKAGE_STRING='titania 0.1'
PACKAGE_TARNAME='titania'
PACKAGE_URL=''
PACKAGE_VERSION='0.1'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH='/usr/lib/x86_64-linux-gnu/pkgconfig'
POFILES=''
POSUB='po'
PO_IN_DATADIR_FALSE=''
PO_IN_DATADIR_TRUE=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
TITANIA_CFLAGS='-pthread -I/usr/include/gtkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gtkmm-3.0/include -I/usr/include/atkmm-1.6 -I/usr/include/gtk-3.0/unix-print -I/usr/include/gdkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gdkmm-3.0/include -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/lib/x86_64-linux-gnu/pangomm-1.4/include -I/usr/include/cairomm-1.0 -I/usr/lib/x86_64-linux-gnu/cairomm-1.0/include -I/usr/include/gtksourceview-3.0 -I/usr/include/libxml2 -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/mirclient -I/usr/include/mircommon -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtksourceviewmm-3.0 -I/usr/lib/gtksourceviewmm-3.0/include -I/usr/include/gconfmm-2.6 -I/usr/lib/gconfmm-2.6/include '
TITANIA_GZSTREAM_CFLAGS=''
TITANIA_GZSTREAM_LIBS='-L/usr/lib/x86_64-linux-gnu -lz '
TITANIA_LIBS='-lgtksourceviewmm-3.0 -lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lpangomm-1.4 -lcairomm-1.0 -lgtksourceview-3.0 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgconfmm-2.6 -lglibmm-2.4 -lgobject-2.0 -lsigc-2.0 -lgconf-2 -lglib-2.0 '
TITANIA_OPENGL_SURFACE_CFLAGS='-pthread -I/usr/include/gtkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gtkmm-3.0/include -I/usr/include/atkmm-1.6 -I/usr/include/gtk-3.0/unix-print -I/usr/include/gdkmm-3.0 -I/usr/lib/x86_64-linux-gnu/gdkmm-3.0/include -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/lib/x86_64-linux-gnu/pangomm-1.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/mirclient -I/usr/include/mircommon -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/cairomm-1.0 -I/usr/lib/x86_64-linux-gnu/cairomm-1.0/include -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/GL -I/usr/include/libdrm '
TITANIA_OPENGL_SURFACE_LIBS='-lgtkmm-3.0 -latkmm-1.6 -lgdkmm-3.0 -lgiomm-2.4 -lpangomm-1.4 -lglibmm-2.4 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lgio-2.0 -lcairomm-1.0 -lcairo -lsigc-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0 -lGLEW -lGLU -lGL '
TITANIA_SQLITE_CFLAGS=''
TITANIA_SQLITE_LIBS='-lsqlite3 -lpcre -lpcrecpp '
TITANIA_STANDARD_CFLAGS='-pthread -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include '
TITANIA_STANDARD_LIBS='-lgiomm-2.4 -lgio-2.0 -lglibmm-2.4 -lgobject-2.0 -lglib-2.0 -lsigc-2.0 '
TITANIA_STREAM_CFLAGS='-pthread -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include '
TITANIA_STREAM_LIBS='-lcurl -lgiomm-2.4 -lgio-2.0 -lglibmm-2.4 -lgobject-2.0 -lglib-2.0 -lsigc-2.0 '
TITANIA_X3D_CFLAGS='-pthread -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -fopenmp -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/giomm-2.4 -I/usr/lib/x86_64-linux-gnu/giomm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/x86_64-linux-gnu/glibmm-2.4/include -I/usr/include/sigc++-2.0 -I/usr/lib/x86_64-linux-gnu/sigc++-2.0/include -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/FTGL -I/usr/include/freetype2 -I/usr/include/libdrm -I/usr/include/nspr -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/x86_64-linux-gnu//ImageMagick-6 -I/usr/include/ImageMagick-6 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gstreamermm-0.10 -I/usr/lib/gstreamermm-0.10/include -I/usr/include/libxml++-2.6 -I/usr/lib/libxml++-2.6/include -I/usr/include/js -I/usr/include/libgtop-2.0 '
TITANIA_X3D_LIBS='-lgstreamermm-0.10 -lgiomm-2.4 -lgio-2.0 -lxml++-2.6 -lglibmm-2.4 -lsigc-2.0 -lgstcontroller-0.10 -lgstdataprotocol-0.10 -lgstnet-0.10 -lgstaudio-0.10 -lgstcdda-0.10 -lgsttag-0.10 -lgstinterfaces-0.10 -lgstnetbuffer-0.10 -lgstrtp-0.10 -lgstvideo-0.10 -lgstbase-0.10 -lgstpbutils-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -pthread -lgthread-2.0 -pthread -lxml2 -lfontconfig -lfreetype -lftgl -lGLU -lGL -lmozjs185 -lplds4 -lplc4 -lnspr4 -lpcre -lpcrecpp -lMagick++-6.Q16 -lMagickWand-6.Q16 -lMagickCore-6.Q16 -lgtop-2.0 -lglib-2.0 '
USE_GLX_FALSE='#'
USE_GLX_TRUE=''
USE_NLS='yes'
VERSION='0.1'
XGETTEXT='/usr/bin/xgettext'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/holger/Projekte/Titania/install-sh'
intltool__v_merge_options_0='-q'
intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/home/holger/Projekte/Titania/debian/titania/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

/* confdefs.h */
#define PACKAGE_NAME "titania"
#define PACKAGE_TARNAME "titania"
#define PACKAGE_VERSION "0.1"
#define PACKAGE_STRING "titania 0.1"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define PACKAGE "titania"
#define VERSION "0.1"
#define GETTEXT_PACKAGE "titania"
#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_LOCALE_H 1
#define HAVE_LC_MESSAGES 1
#define HAVE_BIND_TEXTDOMAIN_CODESET 1
#define HAVE_GETTEXT 1
#define HAVE_DCGETTEXT 1
#define ENABLE_NLS 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define HAVE_GL_GL_H 1
#define HAVE_GL_GLX_H 1

configure: exit 0