forked from baoxuezhao/GPU-SExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.log
More file actions
1160 lines (1133 loc) · 44.6 KB
/
config.log
File metadata and controls
1160 lines (1133 loc) · 44.6 KB
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by sextractor configure 2.8.6, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ ./configure --disable-threads --with-atlas=/usr/local/atlas/lib --with-atlas-incdir=/usr/local/atlas/include
## --------- ##
## Platform. ##
## --------- ##
hostname = csz110
uname -m = x86_64
uname -r = 3.2.0-29-generic
uname -s = Linux
uname -v = #46-Ubuntu SMP Fri Jul 27 17:03:23 UTC 2012
/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: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2002: checking for a BSD-compatible install
configure:2058: result: /usr/bin/install -c
configure:2069: checking whether build environment is sane
configure:2112: result: yes
configure:2140: checking for a thread-safe mkdir -p
configure:2179: result: /bin/mkdir -p
configure:2192: checking for gawk
configure:2222: result: no
configure:2192: checking for mawk
configure:2208: found /usr/bin/mawk
configure:2219: result: mawk
configure:2230: checking whether make sets $(MAKE)
configure:2251: result: yes
configure:2483: result: *********** Configuring: sextractor 2.8.6 (2014-12-23) **********
configure:2496: checking for Linux Intel C compiler mode
configure:2506: result: no
configure:2573: checking for cc
configure:2589: found /usr/bin/cc
configure:2600: result: cc
configure:2636: checking for C compiler version
configure:2643: cc --version >&5
cc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 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:2646: $? = 0
configure:2653: cc -v >&5
Using built-in specs.
COLLECT_GCC=cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --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.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configure:2656: $? = 0
configure:2663: cc -V >&5
cc: error: unrecognized option '-V'
cc: fatal error: no input files
compilation terminated.
configure:2666: $? = 4
configure:2689: checking for C compiler default output file name
configure:2716: cc conftest.c >&5
configure:2719: $? = 0
configure:2757: result: a.out
configure:2774: checking whether the C compiler works
configure:2784: ./a.out
configure:2787: $? = 0
configure:2804: result: yes
configure:2811: checking whether we are cross compiling
configure:2813: result: no
configure:2816: checking for suffix of executables
configure:2823: cc -o conftest conftest.c >&5
configure:2826: $? = 0
configure:2850: result:
configure:2856: checking for suffix of object files
configure:2882: cc -c conftest.c >&5
configure:2885: $? = 0
configure:2908: result: o
configure:2912: checking whether we are using the GNU C compiler
configure:2941: cc -c conftest.c >&5
configure:2947: $? = 0
configure:2964: result: yes
configure:2969: checking whether cc accepts -g
configure:2999: cc -c -g conftest.c >&5
configure:3005: $? = 0
configure:3104: result: yes
configure:3121: checking for cc option to accept ISO C89
configure:3195: cc -c conftest.c >&5
configure:3201: $? = 0
configure:3224: result: none needed
configure:3253: checking for style of include used by make
configure:3281: result: GNU
configure:3306: checking dependency style of cc
configure:3397: result: gcc3
configure:3461: checking for gcc
configure:3488: result: cc
configure:3726: checking for C compiler version
configure:3733: cc --version >&5
cc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 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:3736: $? = 0
configure:3743: cc -v >&5
Using built-in specs.
COLLECT_GCC=cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --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.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configure:3746: $? = 0
configure:3753: cc -V >&5
cc: error: unrecognized option '-V'
cc: fatal error: no input files
compilation terminated.
configure:3756: $? = 4
configure:3759: checking whether we are using the GNU C compiler
configure:3811: result: yes
configure:3816: checking whether cc accepts -g
configure:3951: result: yes
configure:3968: checking for cc option to accept ISO C89
configure:4071: result: none needed
configure:4091: checking dependency style of cc
configure:4182: result: gcc3
configure:4201: checking for library containing strerror
configure:4242: cc -o conftest conftest.c >&5
configure:4248: $? = 0
configure:4276: result: none required
configure:4286: checking for C compiler optimization flags
configure:4369: result: -O3 -g -funroll-loops -fomit-frame-pointer -Wall
configure:4452: checking build system type
configure:4470: result: x86_64-unknown-linux-gnu
configure:4492: checking host system type
configure:4507: result: x86_64-unknown-linux-gnu
configure:4529: checking for a sed that does not truncate output
configure:4585: result: /bin/sed
configure:4588: checking for grep that handles long lines and -e
configure:4662: result: /bin/grep
configure:4667: checking for egrep
configure:4745: result: /bin/grep -E
configure:4761: checking for ld used by cc
configure:4828: result: /usr/bin/ld
configure:4837: checking if the linker (/usr/bin/ld) is GNU ld
configure:4852: result: yes
configure:4857: checking for /usr/bin/ld option to reload object files
configure:4864: result: -r
configure:4882: checking for BSD-compatible nm
configure:4931: result: /usr/bin/nm -B
configure:4935: checking whether ln -s works
configure:4939: result: yes
configure:4946: checking how to recognize dependent libraries
configure:5132: result: pass_all
configure:5220: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5223: $? = 0
configure:5373: checking how to run the C preprocessor
configure:5413: cc -E conftest.c
configure:5419: $? = 0
configure:5450: cc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:5456: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "sextractor"
| #define PACKAGE_TARNAME "sextractor"
| #define PACKAGE_VERSION "2.8.6"
| #define PACKAGE_STRING "sextractor 2.8.6"
| #define PACKAGE_BUGREPORT "bertin@iap.fr"
| #define PACKAGE "sextractor"
| #define VERSION "2.8.6"
| #define DATE "2014-12-23"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5489: result: cc -E
configure:5518: cc -E conftest.c
configure:5524: $? = 0
configure:5555: cc -E conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:5561: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "sextractor"
| #define PACKAGE_TARNAME "sextractor"
| #define PACKAGE_VERSION "2.8.6"
| #define PACKAGE_STRING "sextractor 2.8.6"
| #define PACKAGE_BUGREPORT "bertin@iap.fr"
| #define PACKAGE "sextractor"
| #define VERSION "2.8.6"
| #define DATE "2014-12-23"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5599: checking for ANSI C header files
configure:5629: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5635: $? = 0
configure:5734: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5737: $? = 0
configure:5743: ./conftest
configure:5746: $? = 0
configure:5763: result: yes
configure:5787: checking for sys/types.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for sys/stat.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for stdlib.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for string.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for memory.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for strings.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for inttypes.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for stdint.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5787: checking for unistd.h
configure:5808: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5814: $? = 0
configure:5830: result: yes
configure:5857: checking dlfcn.h usability
configure:5874: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:5880: $? = 0
configure:5894: result: yes
configure:5898: checking dlfcn.h presence
configure:5913: cc -E conftest.c
configure:5919: $? = 0
configure:5933: result: yes
configure:5966: checking for dlfcn.h
configure:5974: result: yes
configure:6045: checking for g++
configure:6061: found /usr/bin/g++
configure:6072: result: g++
configure:6103: checking for C++ compiler version
configure:6110: g++ --version >&5
g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 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:6113: $? = 0
configure:6120: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --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.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configure:6123: $? = 0
configure:6130: g++ -V >&5
g++: error: unrecognized option '-V'
g++: fatal error: no input files
compilation terminated.
configure:6133: $? = 4
configure:6136: checking whether we are using the GNU C++ compiler
configure:6165: g++ -c conftest.cpp >&5
configure:6171: $? = 0
configure:6188: result: yes
configure:6193: checking whether g++ accepts -g
configure:6223: g++ -c -g conftest.cpp >&5
configure:6229: $? = 0
configure:6328: result: yes
configure:6353: checking dependency style of g++
configure:6444: result: gcc3
configure:6469: checking how to run the C++ preprocessor
configure:6505: g++ -E conftest.cpp
configure:6511: $? = 0
configure:6542: g++ -E conftest.cpp
conftest.cpp:22:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:6548: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "sextractor"
| #define PACKAGE_TARNAME "sextractor"
| #define PACKAGE_VERSION "2.8.6"
| #define PACKAGE_STRING "sextractor 2.8.6"
| #define PACKAGE_BUGREPORT "bertin@iap.fr"
| #define PACKAGE "sextractor"
| #define VERSION "2.8.6"
| #define DATE "2014-12-23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6581: result: g++ -E
configure:6610: g++ -E conftest.cpp
configure:6616: $? = 0
configure:6647: g++ -E conftest.cpp
conftest.cpp:22:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:6653: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "sextractor"
| #define PACKAGE_TARNAME "sextractor"
| #define PACKAGE_VERSION "2.8.6"
| #define PACKAGE_STRING "sextractor 2.8.6"
| #define PACKAGE_BUGREPORT "bertin@iap.fr"
| #define PACKAGE "sextractor"
| #define VERSION "2.8.6"
| #define DATE "2014-12-23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6746: checking for g77
configure:6776: result: no
configure:6746: checking for xlf
configure:6776: result: no
configure:6746: checking for f77
configure:6776: result: no
configure:6746: checking for frt
configure:6776: result: no
configure:6746: checking for pgf77
configure:6776: result: no
configure:6746: checking for cf77
configure:6776: result: no
configure:6746: checking for fort77
configure:6776: result: no
configure:6746: checking for fl32
configure:6776: result: no
configure:6746: checking for af77
configure:6776: result: no
configure:6746: checking for xlf90
configure:6776: result: no
configure:6746: checking for f90
configure:6776: result: no
configure:6746: checking for pgf90
configure:6776: result: no
configure:6746: checking for pghpf
configure:6776: result: no
configure:6746: checking for epcf90
configure:6776: result: no
configure:6746: checking for gfortran
configure:6762: found /usr/bin/gfortran
configure:6773: result: gfortran
configure:6803: checking for Fortran 77 compiler version
configure:6810: gfortran --version >&5
GNU Fortran (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
GNU Fortran comes with NO WARRANTY, to the extent permitted by law.
You may redistribute copies of GNU Fortran
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING
configure:6813: $? = 0
configure:6820: gfortran -v >&5
Using built-in specs.
COLLECT_GCC=gfortran
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --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.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configure:6823: $? = 0
configure:6830: gfortran -V >&5
gfortran: error: unrecognized option '-V'
gfortran: fatal error: no input files
compilation terminated.
configure:6833: $? = 4
configure:6841: checking whether we are using the GNU Fortran 77 compiler
configure:6860: gfortran -c conftest.F >&5
configure:6866: $? = 0
configure:6883: result: yes
configure:6889: checking whether gfortran accepts -g
configure:6906: gfortran -c -g conftest.f >&5
configure:6912: $? = 0
configure:6928: result: yes
configure:6958: checking the maximum length of command line arguments
configure:7070: result: 1572864
configure:7082: checking command to parse /usr/bin/nm -B output from cc object
configure:7187: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:7190: $? = 0
configure:7194: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:7197: $? = 0
configure:7249: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c conftstm.o >&5
configure:7252: $? = 0
configure:7290: result: ok
configure:7294: checking for objdir
configure:7309: result: .libs
configure:7401: checking for ar
configure:7417: found /usr/bin/ar
configure:7428: result: ar
configure:7497: checking for ranlib
configure:7513: found /usr/bin/ranlib
configure:7524: result: ranlib
configure:7593: checking for strip
configure:7609: found /usr/bin/strip
configure:7620: result: strip
configure:7906: checking if cc supports -fno-rtti -fno-exceptions
configure:7924: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:7928: $? = 0
configure:7941: result: no
configure:7956: checking for cc option to produce PIC
configure:8188: result: -fPIC
configure:8196: checking if cc PIC flag -fPIC works
configure:8214: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall -fPIC -DPIC conftest.c >&5
configure:8218: $? = 0
configure:8231: result: yes
configure:8259: checking if cc static flag -static works
configure:8287: result: yes
configure:8297: checking if cc supports -c -o file.o
configure:8318: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall -o out/conftest2.o conftest.c >&5
configure:8322: $? = 0
configure:8344: result: yes
configure:8370: checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:9350: result: yes
configure:9371: checking whether -lc should be explicitly linked in
configure:9376: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:9379: $? = 0
configure:9394: cc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:9397: $? = 0
configure:9409: result: no
configure:9417: checking dynamic linker characteristics
configure:10021: result: GNU/Linux ld.so
configure:10030: checking how to hardcode library paths into programs
configure:10055: result: immediate
configure:10069: checking whether stripping libraries is possible
configure:10074: result: yes
configure:10876: checking if libtool supports shared libraries
configure:10878: result: yes
configure:10881: checking whether to build shared libraries
configure:10902: result: yes
configure:10905: checking whether to build static libraries
configure:10909: result: no
configure:11002: creating libtool
configure:11590: checking for ld used by g++
configure:11657: result: /usr/bin/ld -m elf_x86_64
configure:11666: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:11681: result: yes
configure:11732: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:12706: result: yes
configure:12724: g++ -c -g -O2 conftest.cpp >&5
configure:12727: $? = 0
configure:12879: checking for g++ option to produce PIC
configure:13163: result: -fPIC
configure:13171: checking if g++ PIC flag -fPIC works
configure:13189: g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5
configure:13193: $? = 0
configure:13206: result: yes
configure:13234: checking if g++ static flag -static works
configure:13262: result: yes
configure:13272: checking if g++ supports -c -o file.o
configure:13293: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:13297: $? = 0
configure:13319: result: yes
configure:13345: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:13370: result: yes
configure:13437: checking dynamic linker characteristics
configure:13989: result: GNU/Linux ld.so
configure:13998: checking how to hardcode library paths into programs
configure:14023: result: immediate
configure:14557: checking if libtool supports shared libraries
configure:14559: result: yes
configure:14562: checking whether to build shared libraries
configure:14582: result: yes
configure:14585: checking whether to build static libraries
configure:14589: result: no
configure:14599: checking for gfortran option to produce PIC
configure:14831: result: -fPIC
configure:14839: checking if gfortran PIC flag -fPIC works
configure:14857: gfortran -c -g -O2 -fPIC conftest.f >&5
configure:14861: $? = 0
configure:14874: result: yes
configure:14902: checking if gfortran static flag -static works
configure:14930: result: yes
configure:14940: checking if gfortran supports -c -o file.o
configure:14961: gfortran -c -g -O2 -o out/conftest2.o conftest.f >&5
configure:14965: $? = 0
configure:14987: result: yes
configure:15013: checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:15973: result: yes
configure:16040: checking dynamic linker characteristics
configure:16592: result: GNU/Linux ld.so
configure:16601: checking how to hardcode library paths into programs
configure:16626: result: immediate
configure:20211: checking for a BSD-compatible install
configure:20267: result: /usr/bin/install -c
configure:20281: checking for sin in -lm
configure:20316: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:29:6: warning: conflicting types for built-in function 'sin' [enabled by default]
configure:20322: $? = 0
configure:20340: result: yes
configure:20353: checking for ANSI C header files
configure:20517: result: yes
configure:20550: checking fcntl.h usability
configure:20567: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20573: $? = 0
configure:20587: result: yes
configure:20591: checking fcntl.h presence
configure:20606: cc -E conftest.c
configure:20612: $? = 0
configure:20626: result: yes
configure:20659: checking for fcntl.h
configure:20667: result: yes
configure:20550: checking limits.h usability
configure:20567: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20573: $? = 0
configure:20587: result: yes
configure:20591: checking limits.h presence
configure:20606: cc -E conftest.c
configure:20612: $? = 0
configure:20626: result: yes
configure:20659: checking for limits.h
configure:20667: result: yes
configure:20550: checking malloc.h usability
configure:20567: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20573: $? = 0
configure:20587: result: yes
configure:20591: checking malloc.h presence
configure:20606: cc -E conftest.c
configure:20612: $? = 0
configure:20626: result: yes
configure:20659: checking for malloc.h
configure:20667: result: yes
configure:20540: checking for stdlib.h
configure:20546: result: yes
configure:20540: checking for string.h
configure:20546: result: yes
configure:20550: checking sys/mman.h usability
configure:20567: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20573: $? = 0
configure:20587: result: yes
configure:20591: checking sys/mman.h presence
configure:20606: cc -E conftest.c
configure:20612: $? = 0
configure:20626: result: yes
configure:20659: checking for sys/mman.h
configure:20667: result: yes
configure:20540: checking for sys/types.h
configure:20546: result: yes
configure:20540: checking for unistd.h
configure:20546: result: yes
configure:20682: checking for an ANSI C-conforming const
configure:20757: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
conftest.c: In function 'main':
conftest.c:61:10: warning: 't' is used uninitialized in this function [-Wuninitialized]
configure:20763: $? = 0
configure:20778: result: yes
configure:20788: checking for off_t
configure:20818: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20824: $? = 0
configure:20839: result: yes
configure:20851: checking for size_t
configure:20881: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20887: $? = 0
configure:20902: result: yes
configure:20914: checking whether struct tm is in sys/time.h or time.h
configure:20944: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:20950: $? = 0
configure:20965: result: time.h
configure:20975: checking for uid_t in sys/types.h
configure:20998: result: yes
configure:21015: checking for error_at_line
configure:21041: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21047: $? = 0
configure:21064: result: yes
configure:21082: checking for stdlib.h
configure:21088: result: yes
configure:21082: checking for unistd.h
configure:21088: result: yes
configure:21226: checking for getpagesize
configure:21282: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21288: $? = 0
configure:21306: result: yes
configure:21316: checking for working mmap
configure:21463: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21466: $? = 0
configure:21472: ./conftest
configure:21475: $? = 0
configure:21491: result: yes
configure:21502: checking return type of signal handlers
configure:21530: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
conftest.c: In function 'main':
conftest.c:42:1: error: void value not ignored as it ought to be
configure:21536: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "sextractor"
| #define PACKAGE_TARNAME "sextractor"
| #define PACKAGE_VERSION "2.8.6"
| #define PACKAGE_STRING "sextractor 2.8.6"
| #define PACKAGE_BUGREPORT "bertin@iap.fr"
| #define PACKAGE "sextractor"
| #define VERSION "2.8.6"
| #define DATE "2014-12-23"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_LIBM 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_MMAN_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <signal.h>
|
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
| ;
| return 0;
| }
configure:21551: result: void
configure:21559: checking whether lstat dereferences a symlink specified with a trailing slash
configure:21595: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21598: $? = 0
configure:21604: ./conftest
configure:21607: $? = 0
configure:21630: result: yes
configure:21649: checking whether stat accepts an empty string
configure:21679: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21682: $? = 0
configure:21688: ./conftest
configure:21691: $? = 0
configure:21707: result: no
configure:21727: checking for strftime
configure:21783: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:61:6: warning: conflicting types for built-in function 'strftime' [enabled by default]
configure:21789: $? = 0
configure:21807: result: yes
configure:21902: checking for atexit
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for getenv
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for memcpy
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:64:6: warning: conflicting types for built-in function 'memcpy' [enabled by default]
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for memmove
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:65:6: warning: conflicting types for built-in function 'memmove' [enabled by default]
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for memset
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:66:6: warning: conflicting types for built-in function 'memset' [enabled by default]
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for mkdir
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for munmap
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for strstr
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:69:6: warning: conflicting types for built-in function 'strstr' [enabled by default]
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for sincos
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:70:6: warning: conflicting types for built-in function 'sincos' [enabled by default]
configure:21964: $? = 0
configure:21982: result: yes
configure:21902: checking for logf
configure:21958: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
conftest.c:71:6: warning: conflicting types for built-in function 'logf' [enabled by default]
configure:21964: $? = 0
configure:21982: result: yes
configure:22001: checking for special C compiler options needed for large files
configure:22094: result: no
configure:22100: checking for _FILE_OFFSET_BITS value needed for large files
configure:22135: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:22141: $? = 0
configure:22209: result: no
configure:22344: checking for _LARGEFILE_SOURCE value needed for large files
configure:22371: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lm >&5
configure:22377: $? = 0
configure:22441: result: no
configure:22572: checking for gprof profiler mode
configure:22581: result: no
configure:22587: checking static linking
configure:22592: result: yes
configure:23194: checking fftw3.h usability
configure:23211: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:23217: $? = 0
configure:23231: result: yes
configure:23235: checking fftw3.h presence
configure:23250: cc -E conftest.c
configure:23256: $? = 0
configure:23270: result: yes
configure:23303: checking for fftw3.h
configure:23310: result: yes
configure:23999: checking for fftw_execute in -lfftw3
configure:24034: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lfftw3 -lm >&5
configure:24040: $? = 0
configure:24058: result: yes
configure:25559: checking /usr/local/atlas/include/cblas.h usability
configure:25576: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:25582: $? = 0
configure:25596: result: yes
configure:25600: checking /usr/local/atlas/include/cblas.h presence
configure:25615: cc -E conftest.c
configure:25621: $? = 0
configure:25635: result: yes
configure:25668: checking for /usr/local/atlas/include/cblas.h
configure:25676: result: yes
configure:25559: checking /usr/local/atlas/include/clapack.h usability
configure:25576: cc -c -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c >&5
configure:25582: $? = 0
configure:25596: result: yes
configure:25600: checking /usr/local/atlas/include/clapack.h presence
configure:25615: cc -E conftest.c
configure:25621: $? = 0
configure:25635: result: yes
configure:25668: checking for /usr/local/atlas/include/clapack.h
configure:25676: result: yes
configure:26479: checking for clapack_dpotrf in -llapack
configure:26514: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -llapack -L/usr/local/atlas/lib -lcblas -latlas -lm >&5
configure:26520: $? = 0
configure:26538: result: yes
configure:26552: checking for cblas_dgemm in -lcblas
configure:26587: cc -o conftest -O3 -g -funroll-loops -fomit-frame-pointer -Wall conftest.c -lcblas -L/usr/local/atlas/lib -latlas -lm -llapack >&5
configure:26593: $? = 0
configure:26611: result: yes
configure:26928: result: ***************************************************************
configure:26930: result: Compile cmdline: cc -O3 -g -funroll-loops -fomit-frame-pointer -Wall
configure:26932: result: Link cmdline: cc -static -shared-libgcc -L/usr/local/atlas/lib -llapack -lcblas -latlas -lfftw3 -lm
configure:26934: result: Default XSLT URL: file:///usr/local/share/sextractor/sextractor.xsl
configure:26936: result: ***************************************************************
configure:27004: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by sextractor config.status 2.8.6, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on csz110
config.status:684: creating Makefile
config.status:684: creating src/Makefile
config.status:684: creating src/fits/Makefile
config.status:684: creating src/levmar/Makefile
config.status:684: creating src/wcs/Makefile
config.status:684: creating man/Makefile
config.status:684: creating tests/Makefile
config.status:684: creating sextractor.spec
config.status:684: creating man/sex.1
config.status:684: creating config.h
config.status:1006: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=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_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_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_f77_compiler_gnu=yes
ac_cv_func_atexit=yes
ac_cv_func_getenv=yes
ac_cv_func_getpagesize=yes
ac_cv_func_logf=yes
ac_cv_func_lstat_dereferences_slashed_symlink=yes
ac_cv_func_memcpy=yes
ac_cv_func_memmove=yes
ac_cv_func_memset=yes
ac_cv_func_mkdir=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_munmap=yes
ac_cv_func_sincos=yes
ac_cv_func_stat_empty_string_bug=no
ac_cv_func_strftime=yes
ac_cv_func_strstr=yes
ac_cv_header__usr_local_atlas_include_cblas_h=yes
ac_cv_header__usr_local_atlas_include_clapack_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_fftw3_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_malloc_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_mman_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_cblas_cblas_dgemm=yes
ac_cv_lib_error_at_line=yes
ac_cv_lib_fftw3_fftw_execute=yes
ac_cv_lib_lapack_clapack_dpotrf=yes
ac_cv_lib_m_sin=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='cc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=cc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_F77=gfortran
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_f77_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_search_strerror='none required'
ac_cv_struct_tm=time.h
ac_cv_sys_file_offset_bits=no
ac_cv_sys_largefile_CC=no
ac_cv_sys_largefile_source=no
ac_cv_type_off_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_uid_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_prog_cc_stdc=
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_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_SED=/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_c_o_F77=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_prog_compiler_c_o_F77='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home/zhao/nvvp_workspace/gpu-sextractor/autoconf/missing --run aclocal-1.10'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/zhao/nvvp_workspace/gpu-sextractor/autoconf/missing --run tar'
AR='ar'
ATLAS_CFLAGS=''
ATLAS_ERROR=''
ATLAS_LIB='-L/usr/local/atlas/lib -llapack -lcblas -latlas'
ATLAS_LIBPATH='-L/usr/local/atlas/lib'
AUTOCONF='${SHELL} /home/zhao/nvvp_workspace/gpu-sextractor/autoconf/missing --run autoconf'
AUTOHEADER='${SHELL} /home/zhao/nvvp_workspace/gpu-sextractor/autoconf/missing --run autoheader'
AUTOMAKE='${SHELL} /home/zhao/nvvp_workspace/gpu-sextractor/autoconf/missing --run automake-1.10'
AWK='mawk'
CC='cc'
CCDEPMODE='depmode=gcc3'
CFLAGS=' -O3 -g -funroll-loops -fomit-frame-pointer -Wall'
CPP='cc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'