-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfigure.ac
975 lines (881 loc) · 31.4 KB
/
configure.ac
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
dnl====================================================================
dnl NeXus - Neutron & X-ray Common Data Format
dnl
dnl Autoconf (configure script) generation file
dnl
dnl $Id$
dnl
dnl Copyright (C) 2004 Freddie Akeroyd
dnl
dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Lesser General Public
dnl License as published by the Free Software Foundation; either
dnl version 2 of the License, or (at your option) any later version.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl Lesser General Public License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public
dnl License along with this library; if not, write to the Free
dnl Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
dnl MA 02111-1307 USA
dnl
dnl For further information, see <http://www.nexusformat.org>
dnl
dnl -*- Autoconf -*-
dnl Process this file with autoconf to produce a configure script.
dnl
AC_PREREQ(2.61)
AC_REVISION($Revision$)
m4_define([ISODATE],m4_esyscmd([date +%Y%m%d | tr -d '\n' ]))dnl
dnl m4_define([SVNREV],m4_esyscmd_s([`svnversion`]))
m4_define([SVNREV],m4_esyscmd([svn info | grep Revision | awk '{print $2}' | tr -d '\n' ]))dnl
m4_define([SVN_RELEASE],m4_join([],ISODATE,[svn],SVNREV)))dnl
## main version we are based on
m4_define([NEXUS_VERSION],[4.3.1])dnl
## things like rc1 or 20100903svn1734
#m4_define([NEXUS_RELEASE],SVN_RELEASE)dnl
m4_define([NEXUS_RELEASE],[])dnl
# 0.* for pre release; 1, 2, ... post releas
m4_define([PACKAGE_RELEASE],[1])dnl
AC_INIT([NeXus Library], m4_join([],NEXUS_VERSION,NEXUS_RELEASE), [nexus-developers@nexusformat.org], [nexus])
AC_COPYRIGHT([Copyright (C) 2004 NeXus International Advisory Committee
This software is covered by the GNU LESSER GENERAL PUBLIC LICENSE
see file COPYING for further information])
m4_join([],[NEXUS_VERSION=],"NEXUS_VERSION")
m4_join([],[NEXUS_RELEASE=],"NEXUS_RELEASE")
m4_join([],[SVN_REVISION=],"SVN_REVISION")
m4_join([],[PACKAGE_RELEASE=],"PACKAGE_RELEASE")
AC_SUBST([NEXUS_VERSION])
AC_SUBST([NEXUS_RELEASE])
AC_SUBST([SVN_REVISION])
AC_SUBST([PACKAGE_RELEASE])
# AC_DEFINE([NEXUS_VERSION], "NEXUS_VERSION", [NeXus Version])dnl
# AC_DEFINE([NEXUS_RELEASE], "NEXUS_RELEASE", [NeXus Release])dnl
# AC_DEFINE([PACKAGE_RELEASE], "PACKAGE_RELEASE", [Package Release])dnl
AC_DEFINE([SVN_REVISION], "SVNREV", [SVN Revision])dnl
# used by libtool - need to get if from 4.3.0 better
#NXLTVERSINFO="1:0:1"
#NXLTVERSINFO="4:3:4"
NXLTVERSINFO="5:0:5"
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR([src/napi.c])
AC_CANONICAL_TARGET
AC_CANONICAL_BUILD
dnl $EGREP is used in macros included from acinclude.m4
AC_PROG_EGREP
dnl check for correct autoconf version - the same check is done in autogen.sh
if test ! -z "$srcdir"; then
. $srcdir/autoversion.sh
else
. ./autoversion.sh
fi
FCFLAGS="$F90FLAGS $FCFLAGS" # for compatibility with nexus-3.0
# default is tar-v7 but this only supports paths up to 99 characters
# and the doxygen doc has longer than this.
AM_INIT_AUTOMAKE([1.6 tar-pax])
AC_SUBST(NXLTVERSINFO)
AM_CONFIG_HEADER(include/nxconfig.h:include/nxconfig_h.in)
AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug],[Turn off optimisation]), [enable_debug=$enableval],[enable_debug=no])
AC_ARG_ENABLE([32bit], AC_HELP_STRING([--enable-32bit],[build 32bit binary on 64 bit computer]), [enable_32bit=$enableval],[enable_32bit=no])
dnl Checks for programs.
AC_ARG_WITH([cc], AC_HELP_STRING([--with-cc=c compiler], [Specify name of C compiler]),
[with_cc=$withval], [with_cc=yes])
if test x"$with_cc" != x"no" ; then
if test x"$with_cc" != x"yes" ; then CC="$with_cc"; fi
AC_PROG_CC
dnl Check C compiler options
AC_CHECK_CPP_OPTION([-fno-common])
else
AC_MSG_ERROR([You need a C compiler to compile this package])
fi
AC_ARG_WITH([cxx], AC_HELP_STRING([--with-cxx=c++ compiler], [Specify name of C++ compiler]), [with_cxx=$withval], [with_cxx=yes])
if test x"$with_cxx" != x"no" ; then
if test x"$with_cxx" != x"yes" ; then CXX="$with_cxx"; fi
AC_PROG_CXX
else
CXX=
fi
AC_SUBST(WITH_F77)
AC_ARG_WITH([f77], AC_HELP_STRING([--with-f77=f77 compiler], [Specify name of FORTRAN 77 compiler]),
[], [with_f77=no])
if test ! -z "$with_f77" -a x"$with_f77" != x"no" ; then
if test x"$with_f77" != x"yes" ; then F77="$with_f77"; fi
AC_PROG_F77
dnl Check FORTRAN compiler options
dnl AC_CHECK_F77_OPTION([-Wno-globals])
dnl AC_CHECK_F77_OPTION([-fno-common]) # use with caution
mytop=`pwd`
dnl get right F77 include option
AC_CHECK_F77_OPTION([-I$mytop/bindings/f77],[ INCLUDE 'napif.inc'])
FFLAGS="$FFLAGS -g"
AC_F77_LIBRARY_LDFLAGS
WITH_F77=yes
else
F77=
WITH_F77=no
fi
AC_SUBST(WITH_F90)
AC_ARG_WITH([f90], AC_HELP_STRING([--with-f90=f90 compiler], [Specify name of FORTRAN 90 compiler]),
[], [with_f90=no])
if test ! -z "$with_f90" -a x"$with_f90" != x"no" ; then
if test x"$with_f90" = x"yes" ; then
AC_CHECK_PROGS(FC, [g95 gfortran f90 f95 ifort])
else
FC="$with_f90"
AC_CHECK_PROGS(FC, [$with_f90])
fi
dnl f90 has a "module path" option - hard to get as you really need a
dnl ready compiled module to point the option at so for now we are just
dnl check that the option takes a directory and the compiler works
mytop=`pwd`
FCFLAGS="$FCFLAGS -g -I$mytop/bindings/f90"
dnl AC_CHECK_F90_OPTION([-p $mytop/bindings/f90],[ INCLUDE 'NXmodule.f90'])
dnl AC_CHECK_F90_OPTION([-p $mytop/bindings/f90],[ INCLUDE 'NXmodule.f90'])
dnl AC_CHECK_F90_OPTION([-qextname])
AC_FC_LIBRARY_LDFLAGS
# if test x$with_f77=xno; then with_f77=$FC; fi
# if test x$with_f77=xno; then with_f77=yes; fi
WITH_F90=yes
else
FC=
WITH_F90=no
fi
AC_ARG_WITH([matlabroot], AC_HELP_STRING([--with-matlabroot=path to matlab install dir], [Specify location of matlab installation directory]),
[], [with_matlabroot=no])
if test x"$with_matlabroot" != x"no" ; then
MATLABROOT="$with_matlabroot"
fi
AC_PATH_PROG(MATLAB,matlab,[],[$MATLABROOT/bin:/usr/local/matlab/bin:/opt/matlab/bin:$PATH])
if test x"$MATLABROOT" = x -a x"$MATLAB" != x; then
MATLABROOT=`dirname $MATLAB`/..
fi
dnl thread local storage
AC_MSG_CHECKING([for __thread])
AC_LINK_IFELSE([AC_LANG_PROGRAM([#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && ((__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC__MINOR__ < 1) || (__GNUC__ == 4 && __GNUC__MINOR__ == 1 && __GNUC_PATCHLEVEL__ < 2))
#endif], [static __thread int p = 0])],
[AC_DEFINE(HAVE_TLS, 1,
Define to 1 if compiler supports __thread)
AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])])
java_host="linux"
JAVAROOT=""
AC_ARG_WITH([java-home], AC_HELP_STRING([--with-java-home=JAVA SDK Home], [Specify location of top directory of JAVA SDK i.e. where the bin, lib and include directories live]),
[], [with_java_home=$withval])
AC_ARG_WITH([java], AC_HELP_STRING([--with-java=path to java executable], [Specify location of JAVA executable]),
[], [with_java=no])
if test -z "$with_java_home" -a x$with_java != xno; then
def_javac=`which javac`
link_javac=`readlink -e "$def_javac"`
with_java_home=`dirname "$link_javac"`/..
fi
if test -d "$with_java_home"; then
JAVAROOT="$with_java_home"
AC_MSG_NOTICE([Java SDK home is $JAVAROOT])
JAVAINCLUDE="-I$JAVAROOT/include"
AC_PATH_PROGS(JAVAC,javac gcj,,[$JAVAROOT/bin])
if test `basename "$JAVAC"` = "gcj"; then
JAVACFLAGS="-C" # force creation of .class files
fi
AC_PATH_PROGS(JAVA,java gij,,[$JAVAROOT/bin])
AC_PATH_PROGS(JAVAH,javah gcjh,,[$JAVAROOT/bin])
AC_PATH_PROGS(JAVADOC,javadoc,,[$JAVAROOT/bin:$PATH])
AC_PATH_PROGS(JAR,jar fastjar,,[$JAVAROOT/bin:$PATH])
AX_CHECK_JUNIT
fi
AC_ARG_WITH([contrib], AC_HELP_STRING([--with-contrib=names_of_apps_to_build], [Specify a list of targets from the contrib directory to build]),
[CONTRIB=$withval], [CONTRIB=no])
AM_CONDITIONAL(BUILD_CONTRIB, [test "$CONTRIB" != "no"])
AC_SUBST(CBFLIBROOT)
AC_ARG_WITH([cbflib],
AC_HELP_STRING([--with-cbflib=/path/to/cbflib],
[Specify location of CBFLib files]),
[if test $withval != no; then CBFLIBROOT=$withval; fi])
AM_CONDITIONAL(HAVE_CBFLIB, [test "$CBFLIBROOT" != ""])
AC_SUBST(IDLROOT)
AC_ARG_WITH([idlroot],
AC_HELP_STRING([--with-idlroot=/path/to/idlroot],
[Specify root directory of system idl installation]),
[if test $withval != no; then IDLROOT=$withval; fi])
AM_CONDITIONAL(HAVE_IDL, [test "$IDLROOT" != ""])
IDLDLM="\${prefix}/lib"
AC_SUBST(IDLDLM)
AC_ARG_WITH([idldlm],
AC_HELP_STRING([--with-idldlm=/path/to/idldlm],
[Specify location ito install idl dlm files to]),
[if test $withval != no; then IDLDLM=$withval; fi])
AC_ARG_WITH([doxygen], AC_HELP_STRING([--with-doxygen=/path/to/doxygen], [Specify path to doxygen]), [with_doxygen=$withval], [with_doxygen=no])
if test x"$with_doxygen" != x"no" ; then
if test x"$with_doxygen" != x"yes" ; then DOXYGEN="$with_doxygen"; fi
AC_CHECK_PROGS(DOXYGEN,[doxygen])
AC_CHECK_PROGS(DOT,[dot])
AC_CHECK_PROGS(PDFLATEX,[pdflatex])
AC_PROG_CXX
else
DOXYGEN=
PDFLATEX=
DOT=
fi
AC_SUBST(FCFLAGS)
AC_SUBST(JAVACFLAGS)
AC_SUBST(SHARED_LDFLAGS)
AC_SUBST(JAVAINCLUDE)
SHARED_LDFLAGS=""
NXDOCDIR='${datadir}/nexus/doc'
NXEXAMPLEDIR='${datadir}/nexus/examples'
NXTESTDIR='${prefix}/nexus/tests'
AC_SUBST(NXDOCDIR)
AC_SUBST(NXEXAMPLEDIR)
AC_SUBST(NXTESTDIR)
AM_PROG_GCJ
AM_PROG_CC_C_O
AC_PROG_LIBTOOL
dnl AC_LIBTOOL_WIN32_DLL
AC_PROG_MAKE_SET
AC_PROG_RANLIB
if test x$with_tcl != xno; then
AC_CHECK_ROOT([tcl],[TCLROOT],[/usr /usr/local],[include/tcl.h],[no])
fi
if test x$with_guile != xno; then
AC_CHECK_ROOT([guile],[GUILEROOT],[/usr /usr/local],[include/libguile.h],[no])
fi
if test x$with_opengenie != xno; then
AC_CHECK_ROOT([opengenie],[OPENGENIEROOT],[/usr/local],[genie/genie.so],[no])
fi
if test x$with_python != xno; then
AC_CHECK_ROOT([python],[PYTHONROOT],[/usr /usr/local],[bin/python],[yes])
if test x$PYTHONROOT != x; then
if test -r "$PYTHONROOT/bin/python"; then PYTHON="$PYTHONROOT/bin/python"; fi
if test -r "$PYTHONROOT/python"; then PYTHON="$PYTHONROOT/python"; fi
fi
AM_PATH_PYTHON(,, :)
AC_CHECK_PYTHON_MODULE(numpy)
AC_CHECK_PYTHON_MODULE(ctypes)
fi
AC_ARG_WITH([swig], AC_HELP_STRING([--with-swig=swig compiler], [Specify path of swig compiler]), [with_swig=$withval], [with_swig=])
if test x$with_tcl != xno -o x$with_guile != xno; then
if test x$with_swig != xyes; then
SWIG=$with_swig
fi
AC_CHECK_PROGS(SWIG,[swig])
else
SWIG=
fi
AC_CHECK_PROGS(DOCBOOK2PDF,[docbook2pdf])
AC_CHECK_PROGS(DOCBOOK2TXT,[docbook2txt])
AC_CHECK_PROGS(TCLSH,[tclsh])
AC_CHECK_PROGS(GUILE,[guile])
AC_CHECK_PROGS(LATEX,[latex])
AC_CHECK_PROGS(WGET,[wget])
AC_CHECK_PROGS(XMLLINT,[xmllint])
AC_CHECK_PROGS(SVN2CL,[svn2cl])
dnl flags for building swig guile bindings
AC_SUBST(SWGUILEFLAGS)
if test x$GUILEROOT != x -a x$SWIG != x; then
if test `$SWIG -guile -help 2>&1 | grep -i '\-linkage' | wc -l` -gt 0; then
SWGUILEFLAGS="-Linkage ltdlmod"
else
SWGUILEFLAGS=""
fi
fi
dnl These are used in build_rules.am to pass any approptiate
dnl tag to libtool for f90 building
#if test `$EGREP "available_tags=.*F77" libtool | wc -l` -gt 0; then
# LTF90COMPILETAG="--tag=F77"
# LTF90LINKTAG="--tag=CC"
#else
# LTF90COMPILETAG=""
# LTF90LINKTAG=""
#fi
#AC_SUBST(LTF90COMPILETAG)
#AC_SUBST(LTF90LINKTAG)
dnl
dnl First any host specific bits
dnl
MINGW_MSYS=no
dnl microsoft LIB command (used in MinGW makefile to create .LIB file)
AC_CHECK_PROGS(MS_LIB, [LIB])
AM_CONDITIONAL(HAVE_MS_LIB, [test ! -z "$MS_LIB"])
# strict aliasing causes issues with casts from NXmalloc()
CFLAGS="$CFLAGS -fno-strict-aliasing"
CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
# check for debug
if test "$enable_debug" = "yes"; then
CFLAGS="$CFLAGS -O0 -g"
CXXFLAGS="$CXXFLAGS -O0 -g"
fi
if test "$enable_32bit" = "yes"; then
CFLAGS="$CFLAGS -m32"
CXXFLAGS="$CXXFLAGS -m32"
fi
# enable compiler warnings if gcc
if test "$CC" = "gcc"; then
# CFLAGS="$CFLAGS -Wall -Wno-unused-variable -Wno-sign-compare -Wno-comment"
CFLAGS="$CFLAGS -Wall"
fi
if test "$CXX" = "g++"; then
# CXXFLAGS="$CXXFLAGS -Wall -Wno-unused-variable -Wno-sign-compare -Wno-comment"
CXXFLAGS="$CXXFLAGS -Wall"
fi
dnl extra FCFLAGS for Absoft f90
if test ! -z "$FC"; then
fcpathlc=`which $FC 2>/dev/null | tr 'A-Z' 'a-z'`
case "$fcpathlc" in
*absoft*)
echo "Absoft f90 compiler detected - adjusting FCFLAGS"
FCFLAGS="$FCFLAGS -p$mytop/bindings/f90 -g -cons -YEXT_NAMES=LCS -YEXT_SFX=_"
case "$host_cpu" in
*powerpc*)
FCFLAGS="$FCFLAGS -N11"
;;
esac
;;
esac
fi
dnl extra FFLAGS for Absoft f77
if test ! -z "$F77"; then
f77pathlc=`which $F77 2>/dev/null | tr 'A-Z' 'a-z'`
case "$f77pathlc" in
*absoft*)
echo "Absoft f77 compiler detected - adjusting FFLAGS"
FFLAGS="$FFLAGS -g -f -N15"
;;
esac
fi
HDF_EXT=a # library file extent to look for with HDF libraries
HDF5_EXT=so # library file extent to look for with HDF5 libraries
SHARED_EXT=so
AC_SUBST(SHARED_EXT)
SAVE_LIBS="$LIBS"
AC_CHECK_LIB(xml2, [xmlParseFile])
if test "x$ac_cv_lib_xml2_xmlParseFile" = xyes; then
LIBXML2_CFLAGS='`xml2-config --cflags`'
LIBXML2_LDFLAGS='`xml2-config --libs`'
LIBXML2_MESSAGE="yes"
else
LIBXML2_CFLAGS=''
LIBXML2_LDFLAGS=''
LIBXML2_MESSAGE="no (will not build NXsummary or NXtranslate)"
fi
LIBS="$SAVE_LIBS"
AC_SUBST(LIBXML2_CFLAGS)
AC_SUBST(LIBXML2_LDFLAGS)
# set up for linux here - mac is covered in the case $host statement
AS_CASE([$build_cpu], [x86|i386|i686], [IDLCPU=x86], [IDLCPU=$build_cpu])
if test $enable_32bit = yes; then
IDL_HOST="bin.linux.x86" # force 32 bit on a 64 bit machine
else
IDL_HOST="bin.linux.$IDLCPU"
fi
AC_SUBST(IDL_HOST)
case $host in
alpha*-dec-osf*)
java_host="alpha"
if test "$CC" = "cc" -o "$CC" = "c89"; then
CPPFLAGS="$CPPFLAGS -pthread"
fi
if test "$CXX" = "cxx"; then
CPPFLAGS="$CPPFLAGS -pthread -D__USE_STD_IOSTREAM"
CXXFLAGS="$CXXFLAGS -std gnu"
fi
;;
*mingw*)
SHARED_LDFLAGS="$SHARED_LDFLAGS -no-undefined" # -Wl,--add-stdcall-alias
MINGW_MSYS=yes
HDF_EXT=dll
HDF5_EXT=dll
SHARED_EXT=dll
LIBXML2_CFLAGS=-I/usr/local/include
java_host="win32"
;;
*cygwin*)
# SHARED_LDFLAGS="$SHARED_LDFLAGS -no-undefined" # -Wl,--add-stdcall-alias
;;
*darwin*)
dnl -no-cpp-precomp needed on MacOS-X (and others?)
AC_CHECK_C_OPTION([-no-cpp-precomp])
CPPFLAGS="$CPPFLAGS -D__unix"
CFLAGS="$CFLAGS -g"
FFLAGS="$FFLAGS -g"
HDF5_EXT=dylib
SHARED_EXT=dylib
dnl This is a hack for libtool - for some reason the F77 tag
dnl does not get set with the commands to create a shared library
AC_MSG_NOTICE([Patching libtool for F77 shared linking])
sed -e "s/^archive_cmds=\"\"//" < libtool > libtool.$$
mv -f libtool.$$ libtool
chmod +x libtool
JAVAINCLUDE="-I/System/Library/Frameworks/JavaVM.framework/Headers"
dnl F90FLAGS="$F90FLAGS -g -cons -YEXT_NAMES=LCS -YEXT_SFX=_"
dnl FCFLAGS="$FCFLAGS -qextname"
SHARED_LDFLAGS="$SHARED_LDFLAGS -Wl,-single_module"
# LTF90COMPILETAG="--tag=F77"
# LTF90LINKTAG="--tag=CC"
dnl LDFLAGS="$LDFLAGS -flat_namespace"
dnl if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then
dnl lt_int_apple_cc_single_mod=yes
dnl fi
dnl if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
dnl archive_cmds='$CC -dynamiclib -single_module'
dnl fi
if test $enable_32bit = yes; then
IDL_HOST="bin.darwin.i386" # force 32bit build
else
IDL_HOST="bin.darwin.x86_64"
fi
;;
esac
if test ! -z "$JAVAINCLUDE" -a ! -z "$java_host"; then
# avoid adding /usr/include/linux to include path
if test "$JAVAROOT" != "/usr" -a "$JAVAROOT" != "/usr/"; then
JAVAINCLUDE="$JAVAINCLUDE -I$JAVAROOT/include/$java_host"
fi
fi
if test "x$JAVAROOT" != x; then
echo "looking for ant"
AC_PATH_PROG(ANT_PROG,ant)
else
ANT_PROG=""
fi
AC_SUBST(ANT_PROG)
AM_CONDITIONAL(HAVE_ANT, [ test "x$ANT_PROG" != "x" ])
dnl
dnl * locate path to HDF libraries *
dnl
dnl first see if one has been given
dnl
H4ROOT=""
H4INCSUBROOT=""
H4LIBSUBROOT=""
H5ROOT=""
MXMLROOT=""
AC_SUBST(H4ROOT)
AC_SUBST(H5ROOT)
AC_SUBST(MXMLROOT)
AC_ARG_WITH([hdf4],
AC_HELP_STRING([--with-hdf4=/path/to/hdf4],
[Specify location of HDF4 files]),
[if test $withval != no -a $withval != yes; then H4ROOT=$withval; fi])
AC_ARG_WITH([hdf5],
AC_HELP_STRING([--with-hdf5=/path/to/hdf5],
[Specify location of HDF5 files]),
[if test $withval != no -a $withval != yes; then H5ROOT=$withval; fi])
AC_ARG_WITH([xml],
AC_HELP_STRING([--with-xml=/path/to/mxml],
[Specify location of MXML library files]),
[if test $withval != no -a $withval != yes; then MXMLROOT=$withval; fi])
dnl otherwise try and find HDF path, but not if
dnl e.g. --without-hdf4 has been specified (hence check on $with_hdf4 != no )
dnl first HDF4
EXTRA_LDPATH=""
EXTRA_LD_LIBRARY_PATH=""
AC_SUBST(EXTRA_LD_LIBRARY_PATH)
HDF4SEARCH="/usr/local/hdf4 /usr/local/hdf /usr/local /sw /opt/local /usr"
if test "$with_hdf4" != "no" -a -z "$H4ROOT"; then
AC_MSG_CHECKING(for location of HDF4 libraries)
for i in $HDF4SEARCH; do
for j in lib64 lib; do
if test -z "$H4ROOT" -a -r ${i}/$j/libdf.$HDF_EXT; then H4ROOT=$i; fi
done
done
for i in lib64 lib; do
if test -r /usr/$i/hdf/libdf.$HDF_EXT; then
H4ROOT=/usr
H4LIBSUBROOT=hdf
fi
done
if test -r $H4ROOT/include/hdf; then
H4INCSUBROOT=hdf
fi
if test -z "$H4ROOT"; then
AC_MSG_RESULT(unknown)
else
AC_MSG_RESULT($H4ROOT)
fi
fi
if test "$H4ROOT"; then
H4MAJORVERSION=`grep LIBVER_MAJOR ${H4ROOT}/include/${H4INCSUBROOT}/hfile.h | awk '{ print $3}'`
H4MINORVERSION=`grep LIBVER_MINOR ${H4ROOT}/include/${H4INCSUBROOT}/hfile.h | awk '{ print $3}'`
H4RELEASE=`grep LIBVER_RELEASE ${H4ROOT}/include/${H4INCSUBROOT}/hfile.h | awk '{ print $3}'`
H4VERSION=$H4MAJORVERSION.$H4MINORVERSION.$H4RELEASE
case $H4VERSION in
4.[[12]]*)
HDF4_LDFLAGS="";
for j in lib lib64; do
if test -d $H4ROOT/$j/$H4LIBSUBROOT; then
HDF4_LDFLAGS="-L$H4ROOT/$j/$H4LIBSUBROOT $HDF4_LDFLAGS"
EXTRA_LD_LIBRARY_PATH=$EXTRA_LD_LIBRARY_PATH:$H4ROOT/$j/$H4LIBSUBROOT
fi
done
EXTRA_LDPATH="$EXTRA_LDPATH $HDF4_LDFLAGS"
HDF4_LDFLAGS="$HDF4_LDFLAGS -lmfhdf -ldf";
if test -z "$H4INCSUBROOT"; then
HDF4_CPPFLAGS="-I$H4ROOT/include -DHDF4"
else
HDF4_CPPFLAGS="-I$H4ROOT/include/$H4INCSUBROOT -DHDF4"
fi
;;
*) AC_MSG_WARN([The HDF 4 installation has not the right version ($H4VERSION). You need at least 4.1])
H4ROOT=""
;;
esac
fi
AC_SUBST(HDF4_LDFLAGS)
AC_SUBST(HDF4_CPPFLAGS)
dnl HDF5
HDF5SEARCH="/usr/local/hdf5 /usr/local/hdf /usr/local /sw /opt/local /usr"
if test "$with_hdf5" != "no" -a -z "$H5ROOT"; then
AC_MSG_CHECKING(for location of HDF5 libraries)
for i in $HDF5SEARCH; do
for j in lib lib64; do
if test -z "$H5ROOT" -a -r ${i}/$j/libhdf5.$HDF5_EXT; then H5ROOT=$i; fi
done
done
for i in $HDF5SEARCH; do
for j in lib lib64; do
if test -z "$H5ROOT" -a -r ${i}/$j/libhdf5.a; then H5ROOT=$i; fi
done
done
if test -z "$H5ROOT"; then
AC_MSG_RESULT(unknown)
else
AC_MSG_RESULT($H5ROOT)
fi
fi
# these are needed if HDF5 1.8 has been instaleld with H5_USE_16_API_DEFAULT
HDF5_API_DEFS="-DH5Acreate_vers=2 -DH5Aiterate_vers=2 -DH5Dcreate_vers=2 -DH5Dopen_vers=2 -DH5Eclear_vers=2 -DH5Eprint_vers=2 -DH5Epush_vers=2 -DH5Eset_auto_vers=2 -DH5Eget_auto_vers=2 -DH5Ewalk_vers=2 -DH5Gcreate_vers=2 -DH5Gopen_vers=2 -DH5Pget_filter_vers=2 -DH5Pget_filter_by_id_vers=2 -DH5Pinsert_vers=2 -DH5Pregister_vers=2 -DH5Rget_obj_type_vers=2 -DH5Tarray_create_vers=2 -DH5Tcommit_vers=2 -DH5Tget_array_dims_vers=2 -DH5Topen_vers=2"
if test "$H5ROOT"; then
H5VERSION=`grep H5_VERS_INFO ${H5ROOT}/include/H5public.h | cut -d '"' -f 2 | cut -d ' ' -f 4`
case $H5VERSION in
1.[[89]]*)
HDF5_LDFLAGS=""
for j in lib lib64; do
if test -d $H5ROOT/$j; then
HDF5_LDFLAGS="-L$H5ROOT/$j $HDF5_LDFLAGS"
EXTRA_LD_LIBRARY_PATH=$EXTRA_LD_LIBRARY_PATH:$H5ROOT/$j
fi
done
EXTRA_LDPATH="$EXTRA_LDPATH $HDF5_LDFLAGS"
HDF5_LDFLAGS="$HDF5_LDFLAGS -lhdf5 -lz"
HDF5_CPPFLAGS="-I$H5ROOT/include -DHDF5 -DH5_NO_DEPRECATED_SYMBOLS ${HDF5_API_DEFS}"
;;
*)
AC_MSG_WARN([The HDF 5 installation at $H5ROOT is not the right version ($H5VERSION). You need at least 1.8])
H5ROOT=""
;;
esac
fi
AC_SUBST(HDF5_LDFLAGS)
AC_SUBST(HDF5_CPPFLAGS)
dnl XML
MXMLSEARCH="/usr /usr/local"
if test "$with_xml" != "no" -a -z "$MXMLROOT"; then
AC_MSG_CHECKING(for location of mxml package)
for i in $MXMLSEARCH; do
if test -z "$MXMLROOT" -a -r ${i}/include/mxml.h; then MXMLROOT=$i; fi
done
if test -z "$MXMLROOT"; then
AC_MSG_RESULT(unknown)
else
AC_MSG_RESULT($MXMLROOT)
fi
fi
if test ! -z "$MXMLROOT"; then
XML_LDFLAGS="-lmxml"
XML_LDFLAGS="-L$MXMLROOT/lib $XML_LDFLAGS"
XML_CPPFLAGS="-I$MXMLROOT/include -DNXXML"
# meed to allow for lib64
# EXTRA_LDPATH="$EXTRA_LDPATH $XML_LDFLAGS"
# export LD_LIBRARY_PATH=$MXMLROOT/lib:$LD_LIBRARY_PATH
fi
AC_SUBST(XML_LDFLAGS)
AC_SUBST(XML_CPPFLAGS)
if test ! -z "$EXTRA_LDPATH"; then
LDFLAGS="$LDFLAGS $EXTRA_LDPATH"
fi
if test -d /usr/local/lib; then
LDFLAGS="$LDFLAGS -L/usr/local/lib"
fi
# for Mac/fink when hdf and hdf5 are not taken from fink, but jpeg is
if test -d /sw/lib; then
LDFLAGS="$LDFLAGS -L/sw/lib"
fi
# for Mac/Macports when you are not using fink at all.
if test -d /opt/local/lib; then
LDFLAGS="$LDFLAGS -L/opt/local/lib"
fi
# remove initial :
if test ! -z "$EXTRA_LD_LIBRARY_PATH"; then
EXTRA_LD_LIBRARY_PATH=`expr substr "$EXTRA_LD_LIBRARY_PATH" 2 1024`
fi
if test ! -z "$LD_LIBRARY_PATH"; then
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${EXTRA_LD_LIBRARY_PATH}
else
export LD_LIBRARY_PATH=${EXTRA_LD_LIBRARY_PATH}
fi
AC_SUBST(LIBG2C)
dnl finally set LIBS variable if we
#AC_CHECK_LIB(g2c,c_sqrt,LIBG2C="-lg2c",LIBG2C="")
AC_CHECK_LIB(SystemStubs, fprintf$LDBLStub)
case $host in
*mingw*)
;;
*)
AC_CHECK_LIB(m, log)
esac
AC_CHECK_LIB(rpc, xdr_float)
AC_CHECK_LIB(dl, dlopen)
AC_CHECK_LIB(pthread, pthread_create)
AC_CHECK_LIB(z, gzopen)
AC_CHECK_LIB(jpeg, jpeg_CreateCompress)
AC_CHECK_LIB(sz, SZ_Compress)
AC_CHECK_LIB(df, Hopen)
AC_CHECK_LIB(mfhdf, SDcreate)
AC_CHECK_LIB(hdf5, H5open)
SAVE_LIBS="$LIBS"
AC_CHECK_LIB(termcap, tputs)
AC_CHECK_LIB(readline, readline)
#AC_CHECK_LIB(history, add_history)
if test x$ac_cv_lib_termcap_tputs = xyes; then READLINE_LDFLAGS="-ltermcap $READLINE_LDFLAGS"; fi
#if test x$ac_cv_lib_history_add_history = xyes; then READLINE_LDFLAGS="-lhistory $READLINE_LDFLAGS"; fi
if test x$ac_cv_lib_readline_readline = xyes; then READLINE_LDFLAGS="-lreadline $READLINE_LDFLAGS"; fi
AC_SUBST(READLINE_LDFLAGS)
LIBS="$SAVE_LIBS"
dnl AC_LANG_PUSH([C++])
dnl AC_CHECK_LIB(mxmlplus, _ZN4MXML4NodeD2Ev)
dnl AC_LANG_POP([C++])
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([stdlib.h string.h stdint.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
AC_TYPE_INT8_T
AC_TYPE_UINT8_T
AC_TYPE_INT16_T
AC_TYPE_UINT16_T
AC_TYPE_INT32_T
AC_TYPE_UINT32_T
AC_TYPE_INT64_T
AC_TYPE_UINT64_T
AC_TYPE_LONG_LONG_INT
AC_TYPE_UNSIGNED_LONG_LONG_INT
AC_CHECK_SIZEOF([int])
AC_CHECK_SIZEOF([long int])
AC_CHECK_SIZEOF([long long int])
AC_STRUCT_TM
AC_SYS_LARGEFILE
case "$ac_cv_sys_file_offset_bits" in
"no" | "unknown" | "")
;;
*)
CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
CXXFLAGS="$CXXFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
;;
esac
dnl Checks for library functions.
#this can cause link errors with rpl_malloc undefined
#AC_FUNC_MALLOC
#this no needed
#AC_FUNC_MEMCMP
#this hangs on FC9 at the moment
#AC_FUNC_MKTIME
#AC_FUNC_STRFTIME
AC_CHECK_FUNCS([ftime memset strchr strdup strrchr strstr tzset mkstemp])
AM_CONDITIONAL(HAVE_CPP, [test ! -z "$CXX"])
AM_CONDITIONAL(HAVE_F77, [test "$with_f77" != "no"])
AM_CONDITIONAL(HAVE_F90, [test "$with_f90" != "no"])
AM_CONDITIONAL(HAVE_PYTHON, [test ! -z "$PYTHONROOT" -a "$PYTHON_numpy_found" = "yes" -a "$PYTHON_ctypes_found" = "yes"])
AM_CONDITIONAL(HAVE_TCL, [test ! -z "$TCLROOT"])
AM_CONDITIONAL(HAVE_GUILE, [test ! -z "$GUILEROOT"])
AM_CONDITIONAL(HAVE_SWIG, [test ! -z "$SWIG"])
AM_CONDITIONAL(HAVE_JAVA, [test ! -z "$JAVA" -a ! -z "$JAVAROOT"])
AM_CONDITIONAL(HAVE_JAVAC, [test ! -z "$JAVAC" -a ! -z "$JAVAROOT"])
AM_CONDITIONAL(HAVE_JAVADOC, [test ! -z "$JAVADOC" -a ! -z "$JAVAROOT"])
AM_CONDITIONAL(HAVE_HDF4, [test ! -z "$H4ROOT"])
AM_CONDITIONAL(HAVE_HDF5, [test ! -z "$H5ROOT"])
AM_CONDITIONAL(HAVE_XML, [test ! -z "$MXMLROOT"])
AM_CONDITIONAL(HAVE_LIBXML2, [ test "$ac_cv_lib_xml2_xmlParseFile" = "yes" ])
dnl AM_CONDITIONAL(HAVE_LIBMXMLPLUS, [ test "$ac_cv_lib_mxmlplus__ZN4MXML4NodeD2Ev" = "yes" ])
AM_CONDITIONAL(HAVE_DOCBOOK, [test ! -z "$DOCBOOK2TXT" -a ! -z "$DOCBOOK2PDF"])
AM_CONDITIONAL(HAVE_LATEX, [test ! -z "$LATEX"])
#AM_CONDITIONAL(INSTALL_NXPYTHON, [test ! -z "$INSTALL_NXPYTHON"])
AM_CONDITIONAL(HAVE_MZSCHEME, [test ! -z "$INSTALL_NXPYTHON"])
AM_CONDITIONAL(MINGW_MSYS, [test x$MINGW_MSYS = xyes])
AM_CONDITIONAL(HAVE_OPENGENIE, [test ! -z "$OPENGENIEROOT"])
AM_CONDITIONAL(HAVE_DOXYGEN, [test ! -z "$DOXYGEN"])
AM_CONDITIONAL(HAVE_MATLAB, [test ! -z "$MATLAB"])
AM_CONDITIONAL(HAVE_PDFLATEX, [test ! -z "$PDFLATEX"])
AM_CONDITIONAL(HAVE_DOT, [test ! -z "$DOT"])
AM_CONDITIONAL(HAVE_WGET, [test ! -z "$WGET"])
AM_CONDITIONAL(HAVE_XMLLINT, [test ! -z "$XMLLINT"])
AM_CONDITIONAL(HAVE_SVN2CL, [test ! -z "$SVN2CL"])
AC_CONFIG_TESTDIR(test)
AC_CONFIG_FILES(test/Makefile test/atlocal)
AM_MISSING_PROG([AUTOM4TE], [autom4te])
if test X$MATLAB != X; then
for i in glnxa64 glnxi64 glnx86 maci maci64; do
if test -r "$MATLABROOT/bin/$i"; then
MATLAB_ARCH="$i"
fi
done
case $MATLAB_ARCH in
glnx86)
MATLAB_MEXSUFFIX=mexglx
;;
glnxa64)
MATLAB_MEXSUFFIX=mexa64
;;
glnxi64)
MATLAB_MEXSUFFIX=mexi64
;;
maci)
MATLAB_MEXSUFFIX=mexmaci
;;
esac
AC_SUBST(MATLAB_MEXSUFFIX)
AC_SUBST(MATLAB_ARCH)
AC_SUBST(MATLABROOT)
fi
LINUX_DISTRIBUTION
CONFIGURE_ARGS="$ac_configure_args"
AC_SUBST(CONFIGURE_ARGS)
AC_CONFIG_FILES([Makefile
nexus.spec:nexus_spec.in
build_rpm
include/Makefile
src/Makefile
applications/Makefile
applications/NXdir/Makefile
applications/NXbrowse/Makefile
applications/NXtraverse/Makefile
applications/NXconvert/Makefile
applications/NXvalidate/Makefile
applications/NXvalidate/nxvalidate
applications/NXdump/Makefile
applications/nxingest/Makefile
applications/NXsummary/Makefile
applications/NXtranslate/Makefile
applications/NXtranslate/FRM2/Makefile
applications/NXtranslate/opengenie/Makefile
applications/NXtranslate/text_collist/Makefile
applications/NXtranslate/text_plain/Makefile
applications/NXtranslate/text_xml/Makefile
applications/NXtranslate/sns_histogram/Makefile
applications/NXtranslate/loopy/Makefile
applications/NXtranslate/binary/Makefile
applications/NXtranslate/spec/Makefile
applications/NXtranslate/esrf_edf/Makefile
applications/NXtranslate/docs/Makefile
examples/Makefile
doc/Makefile
doc/doxygen/Makefile
doc/api/Makefile
doc/nxdict/Makefile
doc/tech_ref/Makefile
bindings/Makefile
bindings/cpp/Makefile
bindings/f77/Makefile
bindings/f90/Makefile
bindings/java/Makefile
bindings/swig/Makefile
bindings/idl/Makefile
bindings/python/Makefile
third_party/Makefile
third_party/tclap/Makefile
contrib/Makefile
contrib/applications/Makefile
contrib/applications/NXextract/Makefile
contrib/applications/NXextract/src/Makefile
contrib/applications/CBFLib/Makefile
contrib/bindings/Makefile
contrib/bindings/python/Makefile
macosx_install_kit/Makefile
macosx_install_kit/pkg.config
scripts/Makefile
scripts/nexus-config
scripts/nexus.pc
scripts/nexus-cpp.pc
scripts/nxbuild])
dnl src/nxdict/Makefile
AC_OUTPUT
if test ! -z "$DOXYGEN" -a ! -z "$PDFLATEX" -a ! -z "$DOT"; then
DOXYGENDOCS="yes"
else
if test x"$with_doxygen" != x"no" ; then
DOXYGENDOCS="no - missing "
if test -z "$DOXYGEN"; then DOXYGENDOCS="$DOXYGENDOCS doxygen"; fi
if test -z "$PDFLATEX"; then DOXYGENDOCS="$DOXYGENDOCS pdflatex"; fi
if test -z "$DOT"; then DOXYGENDOCS="$DOXYGENDOCS graphviz"; fi
else
DOXYGENDOCS="no --with-doxygen not specified"
fi
fi
if test ! -z "$DOCBOOK2TXT" -a ! -z "$DOCBOOK2PDF"; then
DOCBOOKDOCS="yes"
else
DOCBOOKDOCS="no - missing "
if test -z "$DOCBOOK2TXT"; then DOCBOOKDOCS="$DOCBOOKDOCS docbook2txt"; fi
if test -z "$DOCBOOK2PDF"; then DOCBOOKDOCS="$DOCBOOKDOCS docbook2pdf"; fi
fi
HDF4SUPPORT=`if test -n "$H4ROOT" ; then echo yes ; else echo no ; echo " found version $H4VERSION"; fi`
HDF5SUPPORT=`if test -n "$H5ROOT" ; then echo yes ; else echo no ; echo " found version $H5VERSION"; fi`
XMLSUPPORT=`if test -n "$MXMLROOT" ; then echo yes ; else echo no ; fi`
CPPBINDING=`if test -n "$CXX" ; then echo yes ; else echo no ; fi`
F77BINDING=`if test -n "$F77" ; then echo yes ; else echo no ; fi`
F90BINDING=`if test -n "$FC" ; then echo yes ; else echo no ; fi`
JAVABINDING=`if test -n "$JAVAROOT" ; then echo yes ; else echo no ; fi`
IDLBINDING=`if test -n "$IDLROOT" ; then echo yes ; else echo no ; fi`
PYTHONBINDING=`if test -n "$HAVE_PYTHON_FALSE" ; then echo yes; else echo no ; fi`
MATLABBINDING=`if test -n "$MATLAB" ; then echo "yes (matlabroot=$MATLABROOT)"; else echo no ; fi`
if test -n "$SWIG" ; then
SWIGBINDING="yes ("
test -n "$TCLROOT" && SWIGBINDING="$SWIGBINDING tcl"
test -n "$GUILEROOT" && SWIGBINDING="$SWIGBINDING guile"
SWIGBINDING="$SWIGBINDING ) SWIG=${SWIG}"
else
SWIGBINDING=no
fi
if test -z "$JAVAROOT"; then
JAVAROOT="not specified"
fi
if test "x$ac_cv_lib_readline_readline" = xyes; then
HAVE_READLINE="yes"
else
HAVE_READLINE="no (optional)"
fi
AC_MSG_RESULT([
Configuration (NeXus):
Install prefix: ${prefix}
Source code location: ${srcdir}
Version: ${VERSION}
Compiler: ${CC},${CXX},${F77},${FC}
build:
NeXus with:
HDF4 support: ${HDF4SUPPORT} ($H4VERSION)
HDF5 support: ${HDF5SUPPORT} ($H5VERSION)
XML support: ${XMLSUPPORT}
bindings:
C++ : ${CPPBINDING} (--with-cxx=${CXX})
F77 : ${F77BINDING} (--with-f77=${F77})
F90/F95 : ${F90BINDING} (--with-f90=${FC})
JAVA: ${JAVABINDING} (--with-java-home=${JAVAROOT}, JAVA=${JAVA}, JAVAC=${JAVAC}, JAVAH=${JAVAH})
SWIG: ${SWIGBINDING}
IDL: ${IDLBINDING} (--with-idlroot=${IDLROOT}, --with-idldlm=${IDLDLM})
MATLAB: ${MATLABBINDING} (--with-matlabroot=${MATLABROOT})
PYTHON: ${PYTHONBINDING} (PYTHONROOT=${PYTHONROOT}, numpy found: $PYTHON_numpy_found, ctypes found: $PYTHON_ctypes_found)
application tools:
ant: ${ANT_PROG}
libxml2: ${LIBXML2_MESSAGE}
readline: ${HAVE_READLINE}
documentation:
Doxygen: ${DOXYGENDOCS}
Docbook: ${DOCBOOKDOCS}
Please check whether the configuration I detected matches what you would
like to have. If not, re-run configure adding the appropriate --with option
or setting the relevant environment variable.
For a list of available options type ./configure --help
])