forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.in
1969 lines (1444 loc) · 57.1 KB
/
configure.in
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
dnl Disable configure caching ... it causes lots of hassles.
define([AC_CACHE_LOAD], )
define([AC_CACHE_SAVE], )
dnl Process this file with autoconf to produce a configure script.
AC_INIT(GDALmake.opt.in)
AC_CONFIG_HEADER(port/cpl_config.h)
dnl We require autoconf 2.52+ for libtool support on cygwin/mingw hosts
AC_PREREQ(2.52)
dnl Compute the canonical target-system type variable $target
AC_CANONICAL_TARGET
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
dnl switch between libtool and native build system
AC_ARG_WITH(libtool, [ --without-libtool Don't use libtool to build the library],,)
if test "$with_libtool" = "no"; then
AC_PROG_RANLIB
AC_COMPILER_PIC
AC_LD_SHARED
else
with_libtool=yes
fi
AC_SUBST(HAVE_LIBTOOL,$with_libtool)
dnl Checks for libraries.
AC_CHECK_LIB(dl,dlopen,,,)
dnl Needed on Solaris.
AC_CHECK_LIB(rt,nanosleep,,,)
dnl We don't need to add math library at all targets
case "$target_os" in
cygwin* | mingw32* | beos* | darwin*)
;;
*)
AC_CHECK_LIB(m,main,,,)
;;
esac
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(assert.h fcntl.h unistd.h dbmalloc.h dlfcn.h stdint.h limits.h locale.h values.h float.h errno.h)
AC_C_BIGENDIAN
dnl Check for 64 bit file API
AC_HAVE_LONG_LONG
AC_UNIX_STDIO_64
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
dnl Some compilers (IBM VisualAge) has these types defined, so check it here.
dnl These types are used in internal libtiff.
AC_CHECK_TYPES([int8, int16, int32],,,
[
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
])
dnl We need the following lines for libtiff too.
HAVE_IEEEFP=1
AC_DEFINE_UNQUOTED(HAVE_IEEEFP, $HAVE_IEEEFP, [Define as 0 or 1 according to the floating point format suported by the machine])
dnl Check the native cpu bit order (also libtiff stuff).
AC_MSG_CHECKING([native cpu bit order])
case "$target_cpu" in
i*86*)
HOST_FILLORDER=FILLORDER_LSB2MSB
AC_MSG_RESULT([lsb2msb])
;;
*)
HOST_FILLORDER=FILLORDER_MSB2LSB
AC_MSG_RESULT([msb2lsb])
;;
esac
AC_DEFINE_UNQUOTED(HOST_FILLORDER, $HOST_FILLORDER, [Set the native cpu bit order (FILLORDER_LSB2MSB or FILLORDER_MSB2LSB)])
dnl Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(vsnprintf)
AC_CHECK_FUNCS(snprintf)
AC_CHECK_FUNCS(atoll)
dnl Make sure at least these are checked under C++. Prototypes missing on
dnl some platforms.
AC_LANG_PUSH(C++)
AC_CHECK_FUNC_CUSTOM(gmtime_r,[#include <time.h>],[time_t t; struct tm ltime; t = time(0); gmtime_r( &t, <ime );])
AC_CHECK_FUNC_CUSTOM(localtime_r,[#include <time.h>],[time_t t; struct tm ltime; t = time(0); localtime_r( &t, <ime );])
AC_LANG_POP(C++)
AC_CHECK_FUNC(setlocale)
OPT_GDAL_FORMATS=
EXTRA_INCLUDES=
dnl ---------------------------------------------------------------------------
dnl Check if user requests /usr/local to be included.
dnl ---------------------------------------------------------------------------
AC_MSG_CHECKING([for local include/lib path])
AC_ARG_WITH(local,[ --with-local[=dir] Include /usr/local or other local tree for INCLUDE/LIBS],,)
if test "$with_local" != "no" -a "$with_local" != "" ; then
if test "$with_local" = "yes" ; then
ADD_PREFIX=/usr/local
else
ADD_PREFIX=$with_local
fi
AC_MSG_RESULT(adding $ADD_PREFIX)
LIBS="$LIBS -L$ADD_PREFIX/lib"
CPPFLAGS="$CPPFLAGS -I$ADD_PREFIX/include"
else
AC_MSG_RESULT([none])
fi
dnl ---------------------------------------------------------------------
dnl ENABLE THREADS ONLY IF REQUESTED.
dnl ---------------------------------------------------------------------
THREAD_LIB=""
THREAD_FLAG=""
AC_ARG_WITH(threads,
[ --with-threads[=linkopt]Include thread safe support],,)
if test "$with_threads" = "yes" ; then
AC_CHECK_LIB(pthread,pthread_create,THREAD_FLAG=CPL_MULTIPROC_PTHREAD,,,)
if test -n "$THREAD_FLAG" ; then
THREAD_LIB="-lpthread"
fi
elif test -n "$with_threads" -a "$with_threads" != "no" ; then
THREAD_FLAG=CPL_MULTIPROC_PTHREAD
THREAD_LIB="$with_threads"
AC_CHECKING(whether we should include thread/mutex support...)
AC_MSG_RESULT([ using threads with link options "$THREAD_LIB".])
else
AC_CHECKING(whether we should include thread/mutex support...)
AC_MSG_RESULT([ thread safe support disabled.])
fi
if test "$THREAD_FLAG" = "CPL_MULTIPROC_PTHREAD" ; then
AC_DEFINE_UNQUOTED(CPL_MULTIPROC_PTHREAD,1, [Define if you want to use pthreads based multiprocessing support])
fi
LIBS="$THREAD_LIB $LIBS"
dnl ---------------------------------------------------------------------------
dnl Check if libz is available.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(libz,[ --with-libz[=ARG] Include libz support (ARG=internal or libz directory)],,)
if test "$with_libz" = "external" -o "$with_libz" = "" -o "$with_libz" = "yes" ; then
AC_CHECK_LIB(z,deflateInit_,LIBZ_SETTING=external,LIBZ_SETTING=internal,)
if test "$LIBZ_SETTING" = "external" ; then
AC_MSG_RESULT([using pre-installed libz])
fi
elif test "$with_libz" != "no" -a "$with_libz" != "internal" ; then
LIBS="-L$with_libz -L$with_libz/lib $LIBS"
LIBZ_SETTING=external
AC_MSG_RESULT([using libz library from $with_libz])
fi
if test "$LIBZ_SETTING" = "external" ; then
LIBS="-lz $LIBS"
elif test "$with_libz" = "no" ; then
LIBZ_SETTING=no
AC_MSG_RESULT([not using libz at all.])
else
LIBZ_SETTING=internal
OPT_GDAL_FORMATS="zlib $OPT_GDAL_FORMATS"
AC_MSG_RESULT([using internal libz code.])
fi
AC_SUBST(LIBZ_SETTING,$LIBZ_SETTING)
dnl ---------------------------------------------------------------------------
dnl Select an PostgreSQL Library to use, or disable driver.
dnl ---------------------------------------------------------------------------
PG_CONFIG=no
AC_ARG_WITH(pg,[ --with-pg[=ARG] Include PostgreSQL OGR Support (ARG=path to pg_config)],,)
if test "$with_pg" = "yes" -o "$with_pg" = "" ; then
AC_PATH_PROG(PG_CONFIG, pg_config, no)
else
PG_CONFIG=$with_pg
fi
AC_MSG_CHECKING([for PostgreSQL])
if test "$PG_CONFIG" = "no" ; then
HAVE_PG=no
PG_LIB=
PG_INC=
AC_MSG_RESULT([no])LIBZ
else
if test -d $PG_CONFIG ; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([--with-pg argument is a directory. It should be the path to the pg_config script, often somewhere like /usr/local/pgsql/bin/pg_config.])
fi
if test \! -x $PG_CONFIG ; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([--with-pg argument is a not an executable file. It should be the path to the pg_config script, often somewhere like /usr/local/pgsql/bin/pg_config.])
fi
HAVE_PG=yes
LIBS="-L`$PG_CONFIG --libdir` -lpq $LIBS"
AC_MSG_RESULT([yes])
PG_EXTRA_DEC=
AC_CHECK_LIB(pq,PQputCopyData,,PG_EXTRA_DEC=-DPG_PRE74,)
PG_INC="-I`$PG_CONFIG --includedir` $PG_EXTRA_DEC"
fi
AC_SUBST(HAVE_PG,$HAVE_PG)
AC_SUBST(PG_INC,$PG_INC)
AC_SUBST(PG_LIB,$PG_LIB)
dnl ---------------------------------------------------------------------------
dnl Check if we should build with GRASS support.
dnl ---------------------------------------------------------------------------
GRASS_SETTING=no
GRASS_INCLUDE=
HAVE_GRASS=no
export GRASS_INCLUDE GRASS_SETTING
AC_ARG_WITH(grass,[ --with-grass[=ARG] Include GRASS support (GRASS 5.7+, ARG=GRASS install tree dir)],,)
AC_ARG_WITH(libgrass,[ --with-libgrass[=ARG] Include GRASS support based on libgrass (GRASS 5.0+)],,)
# default use of grass libraries off since we can't easily auto-find them.
if test "$with_grass" = "" ; then
with_grass=no
fi
# Check for GRASS 5.7.0 or later library use.
# TODO: separate libs for rasters and vectors
if test "$with_grass" != "yes" -a "$with_grass" != "no" ; then
AC_CHECK_LIB(grass_gis,G_asprintf,GRASS_SETTING=grass57+,GRASS_SETTING=no,-L$with_grass/lib -lgrass_datetime)
if test "$GRASS_SETTING" = "grass57+" ; then
G_RASTLIBS="-lgrass_I"
G_VECTLIBS="-lgrass_vect -lgrass_dig2 -lgrass_dgl -lgrass_rtree -lgrass_linkm -lgrass_dbmiclient -lgrass_dbmibase"
LIBS="-L$with_grass/lib $G_VECTLIBS $G_RASTLIBS -lgrass_gproj -lgrass_vask -lgrass_gmath -lgrass_gis -lgrass_datetime $LIBS"
GRASS_INCLUDE="-I$with_grass/include"
GRASS_GISBASE="$with_grass"
HAVE_GRASS=yes
else
AC_MSG_ERROR([--with-grass=$with_grass requested, but libraries not found!])
fi
# Check if libgrass is disabled.
elif test "$with_libgrass" = "no" ; then
echo "GRASS support disabled."
elif test "$with_libgrass" = "yes" -o "$with_libgrass" = "" ; then
AC_CHECK_LIB(grass5,G_gisinit_2,GRASS_SETTING=libgrass,GRASS_SETTING=no,)
if test "$GRASS_SETTING" = "libgrass" ; then
LIBS="-lgrass5 $LIBS"
fi
else
AC_CHECK_LIB(grass5,G_gisinit_2,GRASS_SETTING=libgrass,GRASS_SETTING=no,-L$with_libgrass/lib)
if test "$GRASS_SETTING" = "libgrass" ; then
LIBS="-L$with_libgrass -L$with_libgrass/lib -lgrass5 $LIBS"
GRASS_INCLUDE="-I$with_libgrass -I$with_libgrass/include $EXTRA_INCLUDES"
else
AC_MSG_ERROR([--with-libgrass=$with_grass requested, but libgrass5 not found!])
fi
fi
AC_SUBST(GRASS_SETTING,$GRASS_SETTING)
AC_SUBST(GRASS_INCLUDE,$GRASS_INCLUDE)
AC_SUBST(GRASS_GISBASE,$GRASS_GISBASE)
AC_SUBST(HAVE_GRASS)
if test "$GRASS_SETTING" != "no" ; then
OPT_GDAL_FORMATS="grass $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Check if cfitsio library is available.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(cfitsio,[ --with-cfitsio[=ARG] Include FITS support (ARG=no or libcfitsio path)],,)
if test "$with_cfitsio" = "no" ; then
FITS_SETTING=no
echo "FITS support disabled."
elif test "$with_cfitsio" = "yes" -o "$with_cfitsio" = "" ; then
AC_CHECK_LIB(cfitsio,ffopen,FITS_SETTING=external,FITS_SETTING=no,)
if test "$FITS_SETTING" = "external" ; then
LIBS="-lcfitsio $LIBS"
echo "using pre-installed libcfitsio."
else
echo "libcfitsio not found - FITS support disabled"
fi
else
FITS_SETTING=external
LIBS="-L$with_cfitsio -L$with_cfitsio/lib -lcfitsio $LIBS"
EXTRA_INCLUDES="-I$with_cfitsio -I$with_cfitsio/include $EXTRA_INCLUDES"
echo "using libcfitsio from $with_cfitsio."
fi
AC_SUBST(FITS_SETTING,$FITS_SETTING)
if test "$FITS_SETTING" != "no" ; then
OPT_GDAL_FORMATS="fits $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Check if PCRaster (libcsf) library is available.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(pcraster,[ --with-pcraster[=ARG] Include PCRaster (libcsf) support (ARG=internal, no or path)],,)
if test "$with_pcraster" = "no" ; then
PCRASTER_SETTING=no
echo "PCRaster support disabled."
elif test "$with_pcraster" = "yes" -o "$with_pcraster" = "" ; then
AC_CHECK_LIB(csf,Mopen,PCRASTER_SETTING=external,PCRASTER_SETTING=internal,$LIBS)
AC_CHECK_HEADERS(csf.h)
if test "$PCRASTER_SETTING" = "external" -a "$ac_cv_header_csf_h" = "no" ; then
PCRASTER_SETTING=internal
fi
if test "$PCRASTER_SETTING" = "external" ; then
LIBS="-lcsf $LIBS"
echo "using pre-installed libcsf."
else
echo "using internal csf code."
fi
elif test "$with_pcraster" = "internal" ; then
PCRASTER_SETTING=internal
echo "using internal csf code."
else
PCRASTER_SETTING=external
LIBS="-L$with_pcraster/lib -lcsf $LIBS"
EXTRA_INCLUDES="-I$with_pcraster/include $EXTRA_INCLUDES"
echo "using libcsf from $with_pcraster."
fi
AC_SUBST(PCRASTER_SETTING,$PCRASTER_SETTING)
if test "$PCRASTER_SETTING" != "no" ; then
OPT_GDAL_FORMATS="pcraster $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Check if netcdf library is available.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(netcdf,[ --with-netcdf[=ARG] Include netCDF support (ARG=no or netCDF tree prefix)],,)
if test "$with_netcdf" = "no" ; then
NETCDF_SETTING=no
echo "netCDF support disabled."
elif test "$with_netcdf" = "yes" -o "$with_netcdf" = "" ; then
AC_CHECK_LIB(netcdf,nc_open,NETCDF_SETTING=yes,NETCDF_SETTING=no,)
if test "$NETCDF_SETTING" = "yes" ; then
LIBS="-lnetcdf $LIBS"
echo "using pre-installed libnetcdf."
else
echo "libnetcdf not found - netCDF support disabled"
fi
else
NETCDF_SETTING=yes
LIBS="-L$with_netcdf -L$with_netcdf/lib -lnetcdf $LIBS"
EXTRA_INCLUDES="-I$with_netcdf -I$with_netcdf/include $EXTRA_INCLUDES"
echo "using libnetcdf from $with_netcdf."
fi
AC_SUBST(NETCDF_SETTING,$NETCDF_SETTING)
if test "$NETCDF_SETTING" != "no" ; then
OPT_GDAL_FORMATS="netcdf $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select a PNG Library to use, or disable driver.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(png,[ --with-png[=ARG] Include PNG support (ARG=internal, no or path)],,)
if test "$with_png" = "no" ; then
PNG_SETTING=no
echo "png support disabled."
elif test "$with_png" = "yes" -o "$with_png" = "" ; then
AC_CHECK_LIB(png,png_set_IHDR,PNG_SETTING=external,PNG_SETTING=internal,$LIBS)
AC_CHECK_HEADERS(png.h)
if test "$PNG_SETTING" = "external" -a "$ac_cv_header_png_h" = "no" ; then
PNG_SETTING=internal
fi
if test "$PNG_SETTING" = "external" ; then
LIBS="-lpng $LIBS"
echo "using pre-installed libpng."
else
echo "using internal png code."
fi
elif test "$with_png" = "internal" ; then
PNG_SETTING=internal
echo "using internal png code."
else
PNG_SETTING=external
LIBS="-L$with_png -L$with_png/lib -lpng $LIBS"
EXTRA_INCLUDES="-I$with_png -I$with_png/include $EXTRA_INCLUDES"
echo "using libpng from $with_png."
fi
AC_SUBST(PNG_SETTING,$PNG_SETTING)
if test "$PNG_SETTING" != "no" ; then
OPT_GDAL_FORMATS="png $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select a libtiff library to use.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(libtiff,[ --with-libtiff=ARG Libtiff library to use (ARG=internal, yes or path)],,)
if test "$with_libtiff" = "yes" -o "$with_libtiff" = "" ; then
# We now effectively require libtiff 3.6.0.
AC_CHECK_LIB(tiff,TIFFGetTagListCount,TIFF_SETTING=external,TIFF_SETTING=internal,)
dnl Cygwin takes a somewhat restrictive view of what should be exported
dnl from the dll, so don't use the external library if missing semi-private
dnl functions.
if test "$TIFF_SETTING" = "external" ; then
AC_CHECK_LIB(tiff,_TIFFsetDoubleArray,TIFF_SETTING=external,TIFF_SETTING=internal,)
fi
if test "$TIFF_SETTING" = "external" ; then
LIBS="-ltiff $LIBS"
echo "using pre-installed libtiff."
else
echo "using internal TIFF code."
fi
elif test "$with_libtiff" = "internal" ; then
TIFF_SETTING=internal
echo "using internal TIFF code."
else
TIFF_SETTING=external
if test -r $with_libtiff/tiff.h ; then
LIBS="-L$with_libtiff -ltiff $LIBS"
EXTRA_INCLUDES="-I$with_libtiff $EXTRA_INCLUDES"
else
LIBS="-L$with_libtiff/lib -ltiff $LIBS"
EXTRA_INCLUDES="-I$with_libtiff/include $EXTRA_INCLUDES"
fi
echo "using libtiff from $with_libtiff."
fi
AC_SUBST(TIFF_SETTING,$TIFF_SETTING)
dnl ---------------------------------------------------------------------------
dnl Select a libgeotiff library to use.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(geotiff,[ --with-geotiff=ARG Libgeotiff library to use (ARG=internal, yes or path)],,)
if test "$with_geotiff" = "yes" -o "$with_geotiff" = "" ; then
if test "$TIFF_SETTING" = "internal" ; then
GEOTIFF_SETTING=internal
else
dnl We now require libgeotiff 1.2.1 (for XTIFFClientOpen).
AC_CHECK_LIB(geotiff,XTIFFClientOpen,GEOTIFF_SETTING=external,GEOTIFF_SETTING=internal,-L$with_geotiff/lib)
fi
if test "$GEOTIFF_SETTING" = "external" ; then
LIBS="-lgeotiff $LIBS"
echo "using pre-installed libgeotiff."
else
echo "using internal GeoTIFF code."
fi
elif test "$with_geotiff" = "internal" ; then
GEOTIFF_SETTING=internal
echo "using internal GeoTIFF code."
else
GEOTIFF_SETTING=external
dnl We now require libgeotiff 1.2.1 (for XTIFFClientOpen).
AC_CHECK_LIB(geotiff,XTIFFClientOpen,GEOTIFF_SETTING=external,AC_MSG_ERROR([We require at least GeoTIFF 1.2.1. Consider using the one supplied with GDAL]))
if test -r $with_geotiff/libgeotiff.a ; then
LIBS="-L$with_geotiff -lgeotiff $LIBS"
EXTRA_INCLUDES="-I$with_geotiff $EXTRA_INCLUDES"
else
LIBS="-L$with_geotiff/lib -lgeotiff $LIBS"
EXTRA_INCLUDES="-I$with_geotiff/include $EXTRA_INCLUDES"
fi
echo "using libgeotiff from $with_geotiff."
fi
AC_SUBST(GEOTIFF_SETTING,$GEOTIFF_SETTING)
dnl ---------------------------------------------------------------------------
dnl Select a JPEG Library to use, or disable driver.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(jpeg,[ --with-jpeg[=ARG] Include JPEG support (ARG=internal, no or path)],,)
if test "$with_jpeg" = "no" ; then
JPEG_SETTING=no
echo "jpeg support disabled."
elif test "$with_jpeg" = "yes" -o "$with_jpeg" = "" ; then
AC_CHECK_LIB(jpeg,jpeg_read_scanlines,JPEG_SETTING=external,JPEG_SETTING=internal,)
AC_CHECK_HEADERS(jpeglib.h)
if test "$JPEG_SETTING" = "external" -a "$ac_cv_header_jpeglib_h" = "no" ; then
JPEG_SETTING=internal
fi
if test "$JPEG_SETTING" = "external" -a "$TIFF_SETTING" = "internal" ; then
AC_MSG_CHECKING([for width_in_blocks in jpeglib.h])
rm -f conftest.c
echo '#include <stdio.h>' >> conftest.c
echo '#include "jpeglib.h"' >> conftest.c
echo 'int main() { jpeg_component_info *comptr=0; int i; i = comptr->width_in_blocks; }' >> conftest.c
if test -z "`${CC} -o conftest conftest.c 2>&1`" ; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
JPEG_SETTING=internal
fi
rm -f conftest*
fi
if test "$JPEG_SETTING" = "external" ; then
LIBS="-ljpeg $LIBS"
echo "using pre-installed libjpeg."
else
echo "using internal jpeg code."
fi
elif test "$with_jpeg" = "internal" ; then
JPEG_SETTING=internal
echo "using internal jpeg code."
else
JPEG_SETTING=external
LIBS="-L$with_jpeg -L$with_jpeg/lib -ljpeg $LIBS"
EXTRA_INCLUDES="-I$with_jpeg -I$with_jpeg/include $EXTRA_INCLUDES"
echo "using libjpeg from $with_jpeg."
fi
AC_SUBST(JPEG_SETTING,$JPEG_SETTING)
if test "$JPEG_SETTING" != "no" ; then
OPT_GDAL_FORMATS="jpeg $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select a GIF Library to use, or disable driver.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(gif,[ --with-gif[=ARG] Include GIF support (ARG=internal, no or path)],,)
if test "$with_gif" = "no" ; then
GIF_SETTING=no
echo "gif support disabled."
elif test "$with_gif" = "yes" -o "$with_gif" = "" ; then
AC_CHECK_LIB(gif,DGifOpenFileName,GIF_SETTING=external,GIF_SETTING=internal,)
if test "$GIF_SETTING" = "external" ; then
LIBS="-lgif $LIBS"
echo "using pre-installed libgif."
else
echo "using internal gif code."
fi
elif test "$with_gif" = "internal" ; then
GIF_SETTING=internal
echo "using internal gif code."
else
GIF_SETTING=external
LIBS="-L$with_gif -L$with_gif/lib -lgif $LIBS"
EXTRA_INCLUDES="-I$with_gif -I$with_gif/include $EXTRA_INCLUDES"
echo "using libgif from $with_gif."
fi
AC_SUBST(GIF_SETTING,$GIF_SETTING)
if test "$GIF_SETTING" != "no" ; then
OPT_GDAL_FORMATS="gif $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select an OGDI Library to use, or disable driver.
dnl ---------------------------------------------------------------------------
OGDI_INCLUDE=
export OGDI_INCLUDE
AC_ARG_WITH(ogdi,[ --with-ogdi[=ARG] Include OGDI support (ARG=path)],,)
if test "$with_ogdi" = "no" ; then
HAVE_OGDI=no
echo "ogdi support disabled."
elif test "$with_ogdi" = "yes" -o "$with_ogdi" = "" ; then
AC_CHECK_LIB(ogdi31,cln_GetLayerCapabilities,HAVE_OGDI=yes,HAVE_OGDI=no,)
if test "$HAVE_OGDI" = "yes" ; then
LIBS="-logdi31 $LIBS"
fi
else
HAVE_OGDI=yes
LIBS="-L$with_ogdi -L$with_ogdi/lib -logdi31 $LIBS"
OGDI_INCLUDE="-I$with_ogdi -I$with_ogdi/include"
echo "using libogdi31 from $with_ogdi."
fi
AC_SUBST(HAVE_OGDI,$HAVE_OGDI)
AC_SUBST(OGDI_INCLUDE,$OGDI_INCLUDE)
if test "$HAVE_OGDI" != "no" ; then
OPT_GDAL_FORMATS="ogdi $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select FME_HOME or disable FME support.
dnl ---------------------------------------------------------------------------
X_FME_HOME=
export X_FME_HOME
AC_ARG_WITH(fme,[ --with-fme[=ARG] Include FMEObjects support (ARG=FME_HOME path)],,)
AC_MSG_CHECKING([for FMEObjects])
if test "$with_fme" = "no" ; then
AC_MSG_RESULT([disabled by user])
elif test "$with_fme" = "yes" ; then
if test "$FME_HOME" = "" ; then
AC_MSG_ERROR([no, FME_HOME not defined!])
elif test -f $FME_HOME/fmeobjects/cpp/isession.h ; then
AC_MSG_RESULT([yes])
X_FME_HOME=$FME_HOME
else
AC_MSG_ERROR([FME_HOME defined, but $FME_HOME/fmeobjects/cpp/issesion.h not found.])
fi
elif test "$with_fme" = "" ; then
if test "$FME_HOME" = "" ; then
AC_MSG_RESULT([no])
elif test -f $FME_HOME/fmeobjects/cpp/isession.h ; then
AC_MSG_RESULT([yes])
X_FME_HOME=$FME_HOME
else
AC_MSG_RESULT([no, FME_HOME defined, but $FME_HOME/fmeobjects/cpp/issesion.h not found.])
fi
else
if test -f $with_fme/fmeobjects/cpp/isession.h ; then
AC_MSG_RESULT([yes])
X_FME_HOME=$with_fme
else
AC_MSG_ERROR([$with_fme/fmeobjects/cpp/issesion.h not found!])
fi
fi
AC_SUBST(X_FME_HOME,$X_FME_HOME)
dnl ---------------------------------------------------------------------------
dnl Select an HDF4 Library to use, or disable driver.
dnl
dnl We assume the user will have libjpeg and libz from other sources when
dnl linking against static HDF4 libraries.
dnl ---------------------------------------------------------------------------
HDF4_INCLUDE=
export HDF4_INCLUDE
AC_ARG_WITH(hdf4,[ --with-hdf4[=ARG] Include HDF4 support (ARG=path)],,)
if test "$with_hdf4" = "no" ; then
HAVE_HDF4=no
echo "hdf4 support disabled."
elif test "$with_hdf4" = "yes" -o "$with_hdf4" = "" ; then
AC_CHECK_LIB(mfhdf,SDreaddata,HAVE_HDF4=yes,HAVE_HDF4=no,-ldf)
if test "$HAVE_HDF4" = "yes" ; then
LIBS="-lmfhdf -ldf $LIBS"
fi
dnl Some Linux distros install hdf include files here.
if test "$HAVE_HDF4" = "yes" -a -r /usr/include/hdf/hdf.h ; then
HDF4_INCLUDE="-I/usr/include/hdf"
fi
else
if test -d $with_hdf4/lib ; then
HDF_LIB_DIR=$with_hdf4/lib
else
HDF_LIB_DIR=$with_hdf4
fi
ORIG_LIBS="$LIBS"
LIBS="-L$HDF_LIB_DIR $LIBS"
AC_CHECK_LIB(mfhdf,SDreaddata,HDF_LIB_NAME="-lmfhdf -ldf",HDF_LIB_NAME=missing,-ldf)
if test "$HDF_LIB_NAME" = "missing" ; then
AC_CHECK_LIB(hdf4,SDreaddata,HDF_LIB_NAME=-lhdf4,HDF_LIB_NAME=missing,)
fi
dnl Check again, with -ldf, -ljpeg and -lz this time.
if test "$HDF_LIB_NAME" = "missing" ; then
unset ac_cv_lib_mfhdf_SDreaddata
AC_CHECK_LIB(mfhdf,SDreaddata,HDF_LIB_NAME="-lmfhdf -ldf",HDF_LIB_NAME=missing,-ldf -ljpeg -lz)
fi
dnl Not found... again, with -lsz.
if test "$HDF_LIB_NAME" = "missing" ; then
unset ac_cv_lib_mfhdf_SDreaddata
AC_CHECK_LIB(mfhdf,SDreaddata,HDF_LIB_NAME="-lmfhdf -ldf -lsz",HDF_LIB_NAME=missing,-ldf -lsz -ljpeg -lz)
fi
if test "$HDF_LIB_NAME" = "missing" ; then
AC_MSG_ERROR([HDF4 support requested with arg $with_hdf4, but neither hdf4 nor mfhdf lib found])
fi
LIBS="-L$HDF_LIB_DIR $HDF_LIB_NAME $ORIG_LIBS"
if test -r "$with_hdf4/hdf/hdf.h" ; then
HDF4_INCLUDE="-I$with_hdf4/hdf"
elif test -r "$with_hdf4/include/hdf/hdf.h" ; then
HDF4_INCLUDE="-I$with_hdf4/include/hdf"
elif test -r "$with_hdf4/include/hdf.h" ; then
HDF4_INCLUDE="-I$with_hdf4/include"
elif test -r "$with_hdf4/hdf.h" ; then
HDF4_INCLUDE="-I$wHDF4_INCLUDEith_hdf4"
fi
HAVE_HDF4=yes
fi
AC_SUBST(HAVE_HDF4,$HAVE_HDF4)
AC_SUBST(HDF4_INCLUDE,$HDF4_INCLUDE)
if test "$HAVE_HDF4" != "no" ; then
OPT_GDAL_FORMATS="hdf4 $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select an HDF5 Library to use, or disable driver.
dnl
dnl ---------------------------------------------------------------------------
HDF5_INCLUDE=
export HDF5_INCLUDE
AC_ARG_WITH(hdf5,[ --with-hdf5[=ARG] Include HDF5 support (ARG=path)],,)
if test "$with_hdf5" = "no" ; then
HAVE_HDF5=no
echo "hdf5 support disabled."
elif test "$with_hdf5" = "yes" -o "$with_hdf5" = "" ; then
AC_CHECK_LIB(hdf5,H5Fopen,HAVE_HDF5=yes,HAVE_HDF5=no,)
if test "$HAVE_HDF5" = "yes" ; then
LIBS="-lhdf5 $LIBS"
fi
dnl Some Linux distros install hdf include files here.
if test "$HAVE_HDF5" = "yes" -a -r /usr/include/hdf5.h ; then
HDF5_INCLUDE="-I/usr/include"
fi
else
if test -d $with_hdf5/lib ; then
HDF5_LIB_DIR=$with_hdf5/lib
else
HDF5_LIB_DIR=$with_hdf5
fi
ORIG_LIBS="$LIBS"
LIBS="-L$HDF5_LIB_DIR $LIBS -lhdf5"
AC_CHECK_LIB(hdf5,H5Fopen,HDF5_LIB_NAME="-lhdf5 ",HDF5_LIB_NAME=missing,-lhdf5)
if test "$HDF_LIB_NAME" = "missing" ; then
AC_MSG_ERROR([HDF4 support requested with arg $with_hdf4, but neither hdf4 nor mfhdf lib found])
fi
LIBS="-L$HDF5_LIB_DIR $HDF5_LIB_NAME $ORIG_LIBS"
if test -r "$with_hdf5/hdf5/hdf5.h" ; then
HDF5_INCLUDE="-I$with_hdf5/hdf5"
elif test -r "$with_hdf5/include/hdf5/hdf5.h" ; then
HDF5_INCLUDE="-I$with_hdf5/include/hdf5"
elif test -r "$with_hdf5/include/hdf5.h" ; then
HDF5_INCLUDE="-I$with_hdf5/include"
elif test -r "$with_hdf5/hdf.h" ; then
HDF5_INCLUDE="-I$with_hdf5"
fi
HAVE_HDF5=yes
fi
AC_SUBST(HAVE_HDF5,$HAVE_HDF5)
AC_SUBST(HDF5_INCLUDE,$HDF5_INCLUDE)
if test "$HAVE_HDF5" != "no" ; then
OPT_GDAL_FORMATS="hdf5 $OPT_GDAL_FORMATS"
fi
dnl ---------------------------------------------------------------------------
dnl Select a JasPer Library to use, or disable driver.
dnl ---------------------------------------------------------------------------
AC_ARG_WITH(jasper,[ --with-jasper[=ARG] Include JPEG-2000 support via JasPer library (ARG=path)],,)
if test "$with_jasper" = "no" ; then
HAVE_JASPER=no
AC_MSG_NOTICE([JasPer (JPEG2000) support disabled.])
elif test "$with_jasper" = "yes" -o "$with_jasper" = "" ; then
AC_CHECK_LIB(jasper,jpc_decode,HAVE_JASPER=yes,HAVE_JASPER=no,)
AC_CHECK_LIB(jasper,jp2_decode,HAVE_JASPER=yes,HAVE_JASPER=no,)
AC_CHECK_LIB(jasper,pgx_decode,HAVE_JASPER=yes,HAVE_JASPER=no,)
if test "$HAVE_JASPER" = "yes" ; then
LIBS="-ljasper $LIBS"
fi
else
HAVE_JASPER=yes
LIBS="-L$with_jasper -L$with_jasper/lib -ljasper $LIBS"
EXTRA_INCLUDES="-I$with_jasper -I$with_jasper/include $EXTRA_INCLUDES"
AC_MSG_NOTICE([using JasPer library from $with_jasper.])
fi
if test "$HAVE_JASPER" != "no" ; then
OPT_GDAL_FORMATS="jpeg2000 $OPT_GDAL_FORMATS"
dnl Test whether we have UUID JasPer hack
AC_CHECK_LIB(jasper,jp2_encode_uuid,HAVE_JASPER_UUID=yes,HAVE_JASPER_UUID=no,)
if test "$HAVE_JASPER_UUID" = "yes" ; then
AC_MSG_NOTICE([hacked JasPer version found (JasPer UUID), GeoJP2 enabled.])
JASPER_FLAGS=-DHAVE_JASPER_UUID
else
AC_MSG_NOTICE([hacked JasPer version not found, GeoJP2 disabled.])
fi
fi
AC_SUBST(HAVE_JASPER,$HAVE_JASPER)
AC_SUBST(JASPER_FLAGS,$JASPER_FLAGS)
dnl ---------------------------------------------------------------------------
dnl Select a ECW Library to use, or disable driver.
dnl ---------------------------------------------------------------------------