forked from GNOME/gvfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
986 lines (816 loc) · 32 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
976
977
978
979
980
981
982
983
984
985
AC_PREREQ([2.64])
AC_INIT([gvfs],[1.28.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=gvfs])
AM_INIT_AUTOMAKE([1.11.1 no-dist-gzip dist-xz tar-ustar -Wno-portability])
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_MACRO_DIR([m4])
AM_SANITY_CHECK
AC_C_CONST
AC_SEARCH_LIBS([strerror],[cposix])
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
AC_PATH_PROG(GIO_QUERYMODULES, gio-querymodules, no)
AM_PROG_CC_C_O
AC_PROG_SED
# Initialize libtool
LT_PREREQ([2.2])
LT_INIT([disable-static])
LIBTOOL_EXPORT_OPTIONS='-export-symbols-regex "^[[^_]].*"'
AC_SUBST(LIBTOOL_EXPORT_OPTIONS)
AC_ARG_ENABLE([documentation],
[AS_HELP_STRING([--enable-documentation],
[build documentation])],,
[enable_documentation=yes])
if test x$enable_documentation = xyes; then
AC_PATH_PROG([XSLTPROC], [xsltproc])
if test x$XSLTPROC = x; then
AC_MSG_ERROR([xsltproc is required to build documentation])
fi
fi
AM_CONDITIONAL([BUILD_DOCUMENTATION], [test x$enable_documentation = xyes])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
AC_TYPE_PID_T
AC_TYPE_SIGNAL
AC_TYPE_SIZE_T
AC_TYPE_UID_T
GLIB_GSETTINGS
AH_VERBATIM([_GNU_SOURCE],
[/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif])
saved_CFLAGS=$CFLAGS
AC_CHECK_MEMBERS([struct stat.st_mtimensec, struct stat.st_mtim.tv_nsec, struct stat.st_atimensec, struct stat.st_atim.tv_nsec, struct stat.st_ctimensec, struct stat.st_ctim.tv_nsec])
CFLAGS=$saved_CFLAGS
GTK_DOC_CHECK
DISTCHECK_CONFIGURE_FLAGS="--enable-gtk-doc"
AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.45.7 gobject-2.0 gmodule-no-export-2.0 gio-unix-2.0 gio-2.0])
PKG_CHECK_MODULES([DBUS], [dbus-1])
AC_ARG_WITH([dbus_service_dir],
[AS_HELP_STRING([--with-dbus-service-dir=PATH],[choose directory for dbus service files, [default=PREFIX/share/dbus-1/services]])],
[with_dbus_service_dir="$withval"], [with_dbus_service_dir=$datadir/dbus-1/services])
DBUS_SERVICE_DIR=$with_dbus_service_dir
AC_SUBST(DBUS_SERVICE_DIR)
giomodulesdir=$libdir/gio/modules
AC_SUBST(giomodulesdir)
dnl *********************
dnl *** Check for gcr ***
dnl *********************
AC_ARG_ENABLE([gcr], [AS_HELP_STRING([--disable-gcr],[build without gcr])])
msg_gcr=no
if test "x$enable_gcr" != "xno"; then
PKG_CHECK_MODULES([GCR], [gcr-base-3], [msg_gcr=yes])
AC_DEFINE([HAVE_GCR], 1, [Define to 1 if gcr is available])
fi
dnl ****************************
dnl *** Checks for intltool ***
dnl ****************************
IT_PROG_INTLTOOL([0.35.0])
GETTEXT_PACKAGE=gvfs
AC_SUBST([GETTEXT_PACKAGE])
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[The gettext domain name])
AM_GLIB_GNU_GETTEXT
dnl ****************************
dnl *** Checks for gettext ***
dnl ****************************
dnl *** disabled by now, using intltool ***
dnl *** we'll revert when glib-gettexttize will be able
dnl *** to manage [enconding: UTF-8] in POTIFILES.in
dnl GETTEXT_PACKAGE=gvfs
dnl AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [The gettext domain name])
dnl AC_SUBST(GETTEXT_PACKAGE)
dnl ALL_LINGUAS=""
dnl AM_GLIB_GNU_GETTEXT
dnl LIBS="$LIBS $INTLLIBS"
dnl AM_GLIB_DEFINE_LOCALEDIR(GVFS_LOCALEDIR)
dnl ****************************
dnl *** Checks for ssh stuff ***
dnl ****************************
AC_PATH_PROG(SSH_PROGRAM, ssh, "ssh")
dnl ****************************
dnl *** Checks for pty stuff ***
dnl ****************************
AC_CHECK_HEADERS(sys/un.h stropts.h termios.h util.h utmp.h sys/uio.h sys/param.h)
# Check for PTY handling functions.
AC_CHECK_FUNCS(getpt posix_openpt grantpt unlockpt ptsname ptsname_r)
# Pull in the right libraries for various functions which might not be
# bundled into an exploded libc.
AC_CHECK_FUNC(socketpair,[have_socketpair=1],AC_CHECK_LIB(socket,socketpair,[have_socketpair=1; LIBS="$LIBS -lsocket"]))
AC_CHECK_FUNC(openpty,[have_openpty=1],AC_CHECK_LIB(util,openpty,[have_openpty=1; LIBS="$LIBS -lutil"]))
if test x$have_socketpair = x1 ; then
AC_DEFINE([HAVE_SOCKETPAIR],1,[Define if you have the socketpair function.])
fi
if test x$have_openpty = x1 ; then
AC_DEFINE([HAVE_OPENPTY],1,[Define if you have the openpty function.])
fi
AC_SEARCH_LIBS([login_tty], [util], [AC_DEFINE([HAVE_LOGIN_TTY],[],[Whether login_tty is available])])
dnl **************************************************
dnl *** Check if we should build with http backend ***
dnl **************************************************
AC_ARG_ENABLE([http], [AS_HELP_STRING([--disable-http],[build without http/dav backend])])
msg_http=no
if test "x$enable_http" != "xno"; then
PKG_CHECK_EXISTS([libsoup-2.4 >= 2.42.0], [msg_http=yes])
if test "x$msg_http" = "xyes"; then
PKG_CHECK_MODULES([HTTP], [libsoup-2.4 libxml-2.0])
AC_DEFINE([HAVE_HTTP], 1, [Define to 1 if http/dav is going to be built])
fi
fi
AC_SUBST(HTTP_CFLAGS)
AC_SUBST(HTTP_LIBS)
AM_CONDITIONAL([HAVE_HTTP], [test "$msg_http" = "yes"])
dnl **************************************************
dnl *** Check if we should build with DNS-SD backend ***
dnl **************************************************
AM_CONDITIONAL(HAVE_AVAHI, false)
AC_ARG_ENABLE([avahi], [AS_HELP_STRING([--disable-avahi],[build without avahi support])])
msg_avahi=no
if test "x$enable_avahi" != "xno"; then
PKG_CHECK_MODULES([AVAHI], [avahi-glib >= 0.6 avahi-client >= 0.6],
[AM_CONDITIONAL([HAVE_AVAHI], [true])
AC_DEFINE([HAVE_AVAHI], [], [Set if we can use avahi])]
[msg_avahi=yes],
[AM_CONDITIONAL([HAVE_AVAHI], [false])])
AC_SUBST(AVAHI_CFLAGS)
AC_SUBST(AVAHI_LIBS)
fi
dnl ************************
dnl *** Check for libXML ***
dnl ************************
PKG_CHECK_MODULES([LIBXML], [libxml-2.0],
[AM_CONDITIONAL([HAVE_LIBXML], [true])
AC_DEFINE([HAVE_LIBXML], [], [Set if we have libxml])]
[msg_libxml=yes],
[AM_CONDITIONAL([HAVE_LIBXML], [false])])
dnl *************************
dnl *** Check for libudev ***
dnl *************************
AC_ARG_ENABLE([udev], [AS_HELP_STRING([--disable-udev],[build without libudev])])
msg_udev=no
if test "x$enable_udev" != "xno"; then
PKG_CHECK_EXISTS([libudev >= 138], [msg_udev=yes])
if test "x$msg_udev" = "xyes"; then
PKG_CHECK_MODULES([UDEV], [libudev])
AC_DEFINE([HAVE_LIBUDEV], 1, [Define to 1 if libudev is available])
fi
fi
dnl **********************
dnl *** Check for FUSE ***
dnl **********************
AC_ARG_ENABLE([fuse], [AS_HELP_STRING([--disable-fuse],[build without FUSE support])])
msg_fuse=no
if test "x$enable_fuse" != "xno"; then
PKG_CHECK_EXISTS([fuse], [msg_fuse=yes])
if test "x$msg_fuse" = "xyes"; then
PKG_CHECK_MODULES([FUSE], [fuse >= 2.8.0])
AC_DEFINE([HAVE_FUSE], 1, [Define to 1 if FUSE is available])
fi
fi
AM_CONDITIONAL([USE_FUSE], [test "$msg_fuse" = "yes"])
dnl ************************************
dnl *** Check for gnome-disk-utility ***
dnl ************************************
AC_ARG_ENABLE([gdu], [AS_HELP_STRING([--disable-gdu],[build without GDU volume monitor])])
msg_gdu=no
GDU_REQUIRED=3.0.2
if test "x$enable_gdu" != "xno"; then
PKG_CHECK_EXISTS([gdu >= $GDU_REQUIRED], [msg_gdu=yes])
if test "x$msg_gdu" = "xyes"; then
PKG_CHECK_MODULES([GDU],[gdu >= $GDU_REQUIRED])
AC_DEFINE([HAVE_GDU], 1, [Define to 1 if gnome-disk-utility is available])
fi
fi
AM_CONDITIONAL(USE_GDU, [test "$msg_gdu" = "yes"])
dnl *************************
dnl *** Check for udisks2 ***
dnl *************************
AC_ARG_ENABLE([udisks2], [AS_HELP_STRING([--disable-udisks2],[build without libudisks2])])
msg_udisks2=no
UDISKS2_REQUIRED=1.97
if test "x$enable_udisks2" != "xno"; then
PKG_CHECK_EXISTS([udisks2 >= $UDISKS2_REQUIRED], [msg_udisks2=yes])
if test "x$msg_udisks2" = "xyes"; then
PKG_CHECK_MODULES([UDISKS2],[udisks2 >= $UDISKS2_REQUIRED])
AC_DEFINE([HAVE_UDISKS2], 1, [Define to 1 if libudisks2 is available])
fi
fi
AM_CONDITIONAL(USE_UDISKS2, [test "$msg_udisks2" = "yes"])
dnl ************************************
dnl *** Check for systemd user units ***
dnl ************************************
msg_systemd_user_units=no
AC_ARG_WITH([systemduserunitdir],
[AS_HELP_STRING([--with-systemduserunitdir=PATH], [Set directory for systemd user units, or 'no' to disable])],
[systemd_userdir="$withval"],
[systemd_userdir="${prefix}/lib/systemd/user"])
AC_SUBST([systemd_userdir])
if test "x$systemd_userdir" != "xno"; then
PKG_CHECK_MODULES([SYSTEMD], [systemd >= 206], [msg_systemd_user_units=yes], 1)
fi
AM_CONDITIONAL([USE_SYSTEMD_USER_UNITS], [test "$msg_systemd_user_units" = "yes"])
dnl **********************************
dnl *** Check for libsystemd-login ***
dnl **********************************
AC_ARG_ENABLE([libsystemd_login], [AS_HELP_STRING([--disable-libsystemd-login],[build without libsystemd-login])])
msg_libsystemd_login=no
LIBSYSTEMD_LOGIN_REQUIRED=44
if test "x$enable_libsystemd_login" != "xno"; then
PKG_CHECK_EXISTS([libsystemd], [msg_libsystemd_login=yes],
[PKG_CHECK_EXISTS([libsystemd-login >= $LIBSYSTEMD_LOGIN_REQUIRED], [msg_libsystemd_login=yes])])
if test "x$msg_libsystemd_login" = "xyes"; then
PKG_CHECK_MODULES([LIBSYSTEMD_LOGIN],[libsystemd],,
[PKG_CHECK_MODULES([LIBSYSTEMD_LOGIN],[libsystemd-login >= $LIBSYSTEMD_LOGIN_REQUIRED])])
AC_DEFINE([HAVE_LIBSYSTEMD_LOGIN], 1, [Define to 1 if libsystemd_login is available])
fi
fi
AM_CONDITIONAL(USE_LIBSYSTEMD_LOGIN, [test "$msg_libsystemd_login" = "yes"])
dnl **********************
dnl *** Check for HAL ***
dnl **********************
AC_ARG_ENABLE([hal], [AS_HELP_STRING([--disable-hal],[build without HAL support])])
msg_hal=no
have_hal_fast_init=no
HAL_REQUIRED=0.5.10
if test "x$enable_hal" != "xno" && test "x$msg_gdu" = "xno"; then
PKG_CHECK_EXISTS([hal >= $HAL_REQUIRED], [msg_hal=yes])
if test "x$msg_hal" = "xyes"; then
PKG_CHECK_MODULES([HAL],[hal >= $HAL_REQUIRED])
AC_DEFINE([HAVE_HAL], 1, [Define to 1 if HAL is available])
save_libs="$LIBS"
LIBS="$HAL_LIBS"
AC_CHECK_LIB([hal], [libhal_get_all_devices_with_properties], [have_hal_fast_init=yes])
if test "x$have_hal_fast_init" = "xyes"; then
AC_DEFINE([HAVE_HAL_FAST_INIT], 1, [Define to 1 if libhal_get_all_devices_with_properties is available])
fi
LIBS="$save_libs"
fi
fi
AM_CONDITIONAL([USE_HAL], [test "$msg_hal" = "yes"])
dnl **********************
dnl *** Check for gudev ***
dnl **********************
AC_ARG_ENABLE([gudev], [AS_HELP_STRING([--disable-gudev],[build without gudev support])])
msg_gudev=no
GUDEV_REQUIRED=147
if test "x$enable_gudev" != "xno"; then
PKG_CHECK_EXISTS([gudev-1.0 >= $GUDEV_REQUIRED], [msg_gudev=yes])
if test "x$msg_gudev" = "xyes"; then
PKG_CHECK_MODULES([GUDEV], [gudev-1.0 >= $GUDEV_REQUIRED])
AC_DEFINE([HAVE_GUDEV], 1, [Define to 1 if gudev is available])
fi
fi
AM_CONDITIONAL([USE_GUDEV], [test "$msg_gudev" = "yes"])
if test "x$msg_gudev" = "xyes"; then
msg_hotplug_backend="gudev"
else
if test "x$msg_hal" = "xyes"; then
msg_hotplug_backend="hal"
else
msg_hotplug_backend="none"
fi
fi
dnl **************************************************
dnl *** Check if we should build with CDDA backend ***
dnl **************************************************
AC_ARG_ENABLE([cdda], [AS_HELP_STRING([--disable-cdda],[build without CDDA backend])])
msg_cdda=no
if test "x$enable_cdda" != "xno" -a \( "x$msg_hal" = "xyes" -o "x$msg_gudev" = "xyes" \); then
PKG_CHECK_EXISTS([libcdio_paranoia >= 0.78.2], [msg_cdda=yes])
if test "x$msg_cdda" = "xyes"; then
PKG_CHECK_MODULES([CDDA], [libcdio_paranoia])
AC_DEFINE([HAVE_CDDA], 1, [Define to 1 if CDDA is going to be built])
# test for actual headers location
CPPFLAGS_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $CDDA_CFLAGS"
AC_CHECK_HEADER(cdio/paranoia/paranoia.h, [
AC_DEFINE([HAVE_PARANOIA_NEW_INCLUDES], 1, [Define to 1 if cdio/paranoia/paranoia.h is present]) ])
CPPFLAGS="$CPPFLAGS_save"
fi
fi
AC_SUBST(CDDA_LIBS)
AC_SUBST(CDDA_CFLAGS)
AM_CONDITIONAL([USE_CDDA], [test "$msg_cdda" = "yes"])
dnl *************************************************
dnl *** Check if we should build with AFC backend ***
dnl *************************************************
AC_ARG_ENABLE([afc], [AS_HELP_STRING([--disable-afc],[build without AFC backend])])
msg_afc=no
if test "x$enable_afc" != "xno" ; then
PKG_CHECK_EXISTS([libimobiledevice-1.0 >= 1.1.5 libplist >= 0.15], [msg_afc=yes])
if test "x$msg_afc" = "xyes"; then
PKG_CHECK_MODULES([AFC], [libimobiledevice-1.0 libplist])
AC_DEFINE([HAVE_AFC], 1, [Define to 1 if AFC is going to be built])
fi
fi
AC_SUBST(AFC_LIBS)
AC_SUBST(AFC_CFLAGS)
AM_CONDITIONAL([USE_AFC], [test "$msg_afc" = "yes"])
dnl ********************************************************
dnl *** Check if we should build with GOA volume monitor ***
dnl ********************************************************
AC_ARG_ENABLE([goa], [AS_HELP_STRING([--disable-goa],[build without GOA volume monitor])])
msg_goa=no
if test "x$enable_goa" != "xno" ; then
PKG_CHECK_EXISTS([goa-1.0 >= 3.7.1], [msg_goa=yes])
if test "x$msg_goa" = "xyes"; then
PKG_CHECK_MODULES([GOA], [goa-1.0])
AC_DEFINE([HAVE_GOA], 1, [Define to 1 if GOA is going to be built])
fi
fi
AC_SUBST(GOA_LIBS)
AC_SUBST(GOA_CFLAGS)
AM_CONDITIONAL([USE_GOA], [test "$msg_goa" = "yes"])
dnl ****************************************************
dnl *** Check if we should build with Google backend ***
dnl ****************************************************
AC_ARG_ENABLE([google], [AS_HELP_STRING([--disable-google],[build without Google backend])])
msg_google=no
if test "x$enable_google" != "xno" ; then
PKG_CHECK_EXISTS([goa-1.0 >= 3.17.1 libgdata >= 0.17.3], [msg_google=yes])
if test "x$msg_google" = "xyes"; then
PKG_CHECK_MODULES([GOOGLE], [goa-1.0 libgdata])
AC_DEFINE([HAVE_GOOGLE], 1, [Define to 1 if Google is going to be built])
fi
fi
AC_SUBST(GOOGLE_LIBS)
AC_SUBST(GOOGLE_CFLAGS)
AM_CONDITIONAL(USE_GOOGLE, [test "$msg_google" = "yes"])
dnl *************************
dnl *** Check for gphoto2 ***
dnl *************************
AC_ARG_ENABLE([gphoto2], [AS_HELP_STRING([--disable-gphoto2],[build without gphoto2 support])])
msg_gphoto2=no
if test "x$enable_gphoto2" != "xno" -a \( "x$msg_hal" = "xyes" -o "x$msg_gudev" = "xyes" \); then
PKG_CHECK_MODULES([GPHOTO2], [libgphoto2 >= 2.4.0], [msg_gphoto2=yes])
# Need OS tweaks in hal volume monitor backend
case "$host" in
*-linux* | *-freebsd* | *-kfreebsd*-gnu)
use_gphoto2=yes
;;
*)
use_gphoto2=no
;;
esac
if test "x$enable_gphoto2" = "xyes" -a "x$msg_gphoto2" != "xyes"; then
AC_MSG_ERROR([gphoto2 support requested but not available])
fi
if test "x$msg_gphoto2" = "xyes"; then
if test "x$use_gphoto2" = "xyes"; then
AC_DEFINE([HAVE_GPHOTO2], 1, [Define to 1 if gphoto2 is available])
PKG_CHECK_MODULES([GPHOTO25], [libgphoto2 >= 2.5.0],
[AC_DEFINE([HAVE_GPHOTO25], 1, [Define to 1 if libgphoto2 2.5 is available])],
[]
)
else
if test "x$enable_gphoto2" = "xyes"; then
AC_MSG_ERROR([Cannot build with gphoto2 support. Need OS tweaks in hal volume monitor.])
else
AC_MSG_WARN([Not building with gphoto2 support. Need OS tweaks in hal volume monitor.])
fi
msg_gphoto2=no
fi
fi
fi
AM_CONDITIONAL([USE_GPHOTO2], [test "$msg_gphoto2" = "yes"])
dnl *******************************
dnl *** Check for GNOME Keyring ***
dnl *******************************
AC_ARG_ENABLE([keyring], [AS_HELP_STRING([--disable-keyring],[build without GNOME Keyring support])])
msg_keyring=no
if test "x$enable_keyring" != "xno"; then
PKG_CHECK_EXISTS([libsecret-unstable], [msg_keyring=yes])
if test "x$msg_keyring" = "xyes"; then
PKG_CHECK_MODULES([KEYRING], [libsecret-unstable])
AC_DEFINE([HAVE_KEYRING], 1, [Define to 1 if GNOME Keyring is available])
fi
fi
AM_CONDITIONAL([USE_KEYRING], [test "$msg_keyring" = "yes"])
dnl ***********************************************
dnl *** Check if we should build with libbluray ***
dnl ***********************************************
AC_ARG_ENABLE([bluray], [AS_HELP_STRING([--disable-bluray],[build without bluray metadata support])])
msg_bluray=no
if test "x$enable_bluray" != "xno"; then
PKG_CHECK_EXISTS([libbluray], [msg_bluray=yes])
if test "x$msg_bluray" = "xyes"; then
PKG_CHECK_MODULES([BLURAY], [libbluray])
AC_DEFINE([HAVE_BLURAY], 1, [Define to 1 if bluray metadata is going to be built])
fi
fi
AC_SUBST(BLURAY_CFLAGS)
AC_SUBST(BLURAY_LIBS)
AM_CONDITIONAL([HAVE_BLURAY], [test "$msg_bluray" = "yes"])
dnl *************************
dnl *** Check for libmtp ***
dnl *************************
AC_ARG_ENABLE([libmtp], [AS_HELP_STRING([--disable-libmtp],[build without libmtp support])])
msg_libmtp=no
if test "x$enable_libmtp" != "xno" -a "x$msg_gudev" = "xyes"; then
PKG_CHECK_EXISTS([libmtp], [msg_libmtp=yes])
if test "x$msg_libmtp" = "xyes"; then
PKG_CHECK_MODULES([LIBMTP], [libmtp >= 1.1.0])
AC_DEFINE([HAVE_LIBMTP], 1, [Define to 1 if libmtp is available])
PKG_CHECK_MODULES([LIBMTP_1_1_5], [libmtp >= 1.1.5],
[AC_DEFINE([HAVE_LIBMTP_1_1_5], 1, [Define to 1 if libmtp 1.1.5 is available])],
[]
)
PKG_CHECK_MODULES([LIBMTP_1_1_6], [libmtp >= 1.1.6],
[AC_DEFINE([HAVE_LIBMTP_1_1_6], 1, [Define to 1 if libmtp 1.1.6 is available])],
[]
)
PKG_CHECK_MODULES([LIBMTP_1_1_9], [libmtp >= 1.1.9],
[AC_DEFINE([HAVE_LIBMTP_1_1_9], 1, [Define to 1 if libmtp 1.1.9 is available])],
[]
)
fi
fi
AC_SUBST(LIBMTP_CFLAGS)
AC_SUBST(LIBMTP_LIBS)
AM_CONDITIONAL(USE_LIBMTP, [test "$msg_libmtp" = "yes"])
AM_CONDITIONAL(USE_GPHOTO2UTILS,
[test "$msg_libmtp" = "yes" -o \( "$msg_gphoto2" = "yes" -a "$msg_gudev" = "yes" \)])
dnl ==========================================================================
dnl Samba 3.0
dnl Samba 4 ships a pc file and requires a non-default include subdir, so pick it up:
PKG_CHECK_MODULES([SMBCLIENT], [smbclient], [samba_default_cflags="$SMBCLIENT_CFLAGS"], [samba_default_cflags=-I/usr/include])
AC_ARG_ENABLE([samba], [AS_HELP_STRING([--disable-samba],[build without samba support])])
msg_samba="no"
if test "x$enable_samba" != "xno"; then
AC_ARG_WITH([samba-includes], [AS_HELP_STRING([--with-samba-includes=PREFIX],[Location of samba includes.])],
[with_samba_includes="-I$withval"], [with_samba_includes=${samba_default_cflags}])
have_samba_includes="no"
if test "x${with_samba_includes}" != "x-Ino"; then
CPPFLAGS_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $with_samba_includes"
AC_CHECK_HEADER(libsmbclient.h, [ samba_includes="yes" ])
CPPFLAGS="$CPPFLAGS_save"
if test "x{samba_includes}" != "xno" -a "x${samba_includes}" != "x"; then
have_samba_includes="yes"
if test "${with_samba_includes}" != "/usr/include" ; then
SAMBA_CFLAGS="$with_samba_includes"
else
SAMBA_CFLAGS=""
fi
else
SAMBA_CFLAGS=""
fi
fi
AC_ARG_WITH([samba-libs], [AS_HELP_STRING([--with-samba-libs=PREFIX],[Location of Samba libs.])],
[with_samba_libs="$withval"], [with_samba_libs="/usr/lib"])
if test "x${with_samba_libs}" != "xno" -a "x${have_samba_includes}" != "xno"; then
LDFLAGS_save="$LDFLAGS"
LDFLAGS="$LDFLAGS -L$with_samba_libs"
AC_CHECK_LIB([smbclient], [smbc_getFunctionStatVFS], [samba_libs="yes"], [samba_libs="no"])
LDFLAGS="$LDFLAGS_save"
if test "x${samba_libs}" != "xno"; then
AC_DEFINE([HAVE_SAMBA],, [Define to 1 if you have the samba libraries])
msg_samba="yes"
if test x$with_samba_libs != x/usr/lib; then
SAMBA_LIBS="-L$with_samba_libs -lsmbclient"
else
SAMBA_LIBS="-lsmbclient"
fi
else
AC_CHECK_LIB([smbclient], [smbc_new_context], [samba_old_libs="yes"], [samba_old_libs="no"])
if test "x${samba_old_libs}" != "xno"; then
msg_samba="Too old, need at least samba 3.4.0"
fi
SAMBA_CFLAGS=""
SAMBA_LIBS=""
fi
fi
AC_MSG_CHECKING([for Samba libraries])
AC_MSG_RESULT($msg_samba)
fi
AM_CONDITIONAL([HAVE_SAMBA], [test "$msg_samba" = "yes"])
AC_SUBST(SAMBA_CFLAGS)
AC_SUBST(SAMBA_LIBS)
dnl ==========================================================================
dnl ****************************
dnl *** Check for GTK ***
dnl ****************************
AC_ARG_ENABLE([gtk], [AS_HELP_STRING([--disable-gtk],[build without GTK+])])
msg_gtk=no
GTK_REQUIRED=3.0
if test "x$enable_gtk" != "xno"; then
PKG_CHECK_EXISTS([gtk+-3.0 >= $GTK_REQUIRED], [msg_gtk=yes])
if test "x$msg_gtk" = "xyes"; then
PKG_CHECK_MODULES([GTK],[gtk+-3.0 >= $GTK_REQUIRED])
AC_DEFINE([HAVE_GTK], 1, [Define to 1 if GTK+ is available])
fi
fi
AM_CONDITIONAL([USE_GTK], [test "$msg_gtk" = "yes"])
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
dnl ****************************
dnl *** Check for libarchive ***
dnl ****************************
AC_ARG_ENABLE([archive], [AS_HELP_STRING([--disable-archive],[build without archive support])])
msg_archive="no"
if test "x$enable_archive" != "xno"; then
AC_ARG_WITH([archive-includes], [AS_HELP_STRING([--with-archive-includes=PREFIX],[Location of archive includes.])],
[with_archive_includes="$withval"], [with_archive_includes="/usr/include"])
have_archive_includes="no"
if test "x${with_archive_includes}" != "xno"; then
CPPFLAGS_save="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$with_archive_includes"
AC_CHECK_HEADER([archive.h], [ archive_includes="yes" ])
CPPFLAGS="$CPPFLAGS_save"
if test "x{archive_includes}" != "xno" -a "x${archive_includes}" != "x"; then
have_archive_includes="yes"
if test "${with_archive_includes}" != "/usr/include" ; then
ARCHIVE_CFLAGS="-I$with_archive_includes"
else
ARCHIVE_CFLAGS=""
fi
else
ARCHIVE_CFLAGS=""
fi
fi
AC_ARG_WITH([archive-libs], [AS_HELP_STRING([--with-archive-libs=PREFIX], [Location of Archive libs.])],
[with_archive_libs="$withval"], [with_archive_libs="/usr/lib"])
if test "x${with_archive_libs}" != "xno" -a "x${have_archive_includes}" != "xno"; then
LDFLAGS_save="$LDFLAGS"
LDFLAGS="$LDFLAGS -L$with_archive_libs"
AC_CHECK_LIB(archive, archive_entry_filetype, archive_libs="yes", archive_libs="no")
LDFLAGS="$LDFLAGS_save"
if test "x${archive_libs}" != "xno"; then
AC_DEFINE([HAVE_ARCHIVE],, [Define to 1 if you have the libarchive library])
msg_archive="yes"
if test x$with_archive_libs != x/usr/lib; then
ARCHIVE_LIBS="-L$with_archive_libs -larchive"
else
ARCHIVE_LIBS="-larchive"
fi
else
AC_CHECK_LIB([archive], [archive_entry_filetype], [archive_old_libs="yes"], [archive_old_libs="no"])
if test "x${archive_old_libs}" != "xno"; then
msg_archive="Too old, need at least archive 3.0.22"
fi
ARCHIVE_CFLAGS=""
ARCHIVE_LIBS=""
fi
fi
AC_MSG_CHECKING(for Archive 3.libraries)
AC_MSG_RESULT($msg_archive)
fi
AM_CONDITIONAL([HAVE_ARCHIVE], [test "$msg_archive" = "yes"])
AC_SUBST(ARCHIVE_CFLAGS)
AC_SUBST(ARCHIVE_LIBS)
dnl ***************************
dnl *** Check for libgcrypt ***
dnl ***************************
GCRYPT_VERSION=1.2.2
GCRYPT_LIBVER=1
AM_PATH_LIBGCRYPT($GCRYPT_LIBVER:$GCRYPT_VERSION, have_gcrypt="yes",
have_gcrypt="no")
if test "x$have_gcrypt" != "xno"; then
AC_DEFINE(HAVE_GCRYPT, 1, [Define to 1 if libgcrypt is available])
fi
AC_SUBST([LIBGCRYPT_CFLAGS])
AC_SUBST([LIBGCRYPT_LIBS])
dnl *******************
dnl *** AFP backend ***
dnl *******************
AC_ARG_ENABLE([afp], [AS_HELP_STRING([--disable-afp], [build without AFP support])])
msg_afp="no"
if test "x$enable_afp" != "xno"; then
if test "x$have_gcrypt" = "xyes"; then
msg_afp="yes"
else
msg_afp="partial (crypt support missing! Only anonymous logins)"
fi
fi
AM_CONDITIONAL([USE_AFP], [test "x$enable_afp" != "xno"])
dnl *******************
dnl *** NFS backend ***
dnl *******************
AC_ARG_ENABLE([nfs], [AS_HELP_STRING([--disable-nfs], [build without NFS support])])
msg_nfs="no"
if test "x$enable_nfs" != "xno"; then
PKG_CHECK_EXISTS([libnfs >= 1.9.7], [msg_nfs=yes])
if test "x$msg_nfs" = "xyes"; then
PKG_CHECK_MODULES([NFS],[libnfs >= 1.9.7])
AC_DEFINE([HAVE_NFS], 1, [Define to 1 if nfs is going to be built])
fi
fi
AC_SUBST(NFS_CFLAGS)
AC_SUBST(NFS_LIBS)
AM_CONDITIONAL(HAVE_NFS, [test "$msg_nfs" = "yes"])
dnl ***************************************
dnl *** Check for nl_langinfo constants ***
dnl ***************************************
AC_CHECK_DECL(_NL_ADDRESS_LANG_TERM,
AC_DEFINE(HAVE_NL_ADDRESS_LANG_TERM, 1, Define to 1 if _NL_ADDRESS_LANG_TERM is declared),,
[#include <langinfo.h>])
AC_CHECK_DECL(_NL_ADDRESS_COUNTRY_AB3,
AC_DEFINE(HAVE_NL_ADDRESS_COUNTRY_AB3, 1, Define to 1 if _NL_ADDRESS_COUNTRY_AB3 is declared),,
[#include <langinfo.h>])
dnl Install bash-completion file?
AC_ARG_ENABLE([bash-completion],
[AS_HELP_STRING([--disable-bash-completion],
[build without bash-completion support])],
[msg_bash_completion=$enableval],
[msg_bash_completion=yes])
if test "x$enable_bash_completion" != "xno"; then
msg_bash_completion=yes
fi
AM_CONDITIONAL([ENABLE_BASHCOMP], [test "$msg_bash_completion" = "yes"])
AC_ARG_WITH([bash-completion-dir],
[AS_HELP_STRING([--with-bash-completion-dir=PATH],
[choose directory for bash-completion file (default=DATADIR/bash-completion/completions)])],
[with_bashcomp_dir=$withval],
[with_bashcomp_dir=$datadir/bash-completion/completions])
BASHCOMP_DIR=$with_bashcomp_dir
AC_SUBST(BASHCOMP_DIR)
dnl ==========================================================================
dnl Globally define_GNU_SOURCE and therefore enable the GNU extensions
AC_DEFINE([_GNU_SOURCE], 1, [Enable GNU Extensions])
dnl ==========================================================================
AC_DEFINE([_FILE_OFFSET_BITS], 64, [Enable LFS])
dnl ==========================================================================
AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
dnl ==========================================================================
dnl Look for various fs info getters
AC_CHECK_HEADERS([sys/statfs.h sys/statvfs.h sys/vfs.h sys/mount.h sys/param.h])
AC_CHECK_FUNCS(statvfs statfs)
AC_CHECK_MEMBERS([struct statfs.f_fstypename, struct statfs.f_bavail],,, [#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif])
# struct statvfs.f_basetype is available on Solaris but not for Linux.
AC_CHECK_MEMBERS([struct statvfs.f_basetype],,, [#include <sys/statvfs.h>])
dnl
dnl if statfs() takes 2 arguments (Posix) or 4 (Solaris)
dnl
if test "$ac_cv_func_statfs" = yes ; then
AC_MSG_CHECKING([number of arguments to statfs()])
AC_TRY_COMPILE([#include <unistd.h>
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_VFS_H
#include <sys/vfs.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif], [struct statfs st;
statfs(NULL, &st);],[
AC_MSG_RESULT([2])
AC_DEFINE(STATFS_ARGS, 2, [Number of arguments to statfs()])],[
AC_TRY_COMPILE([#include <unistd.h>
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_VFS_H
#include <sys/vfs.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif], [struct statfs st;
statfs(NULL, &st, sizeof (st), 0);],[
AC_MSG_RESULT([4])
AC_DEFINE(STATFS_ARGS, 4, [Number of arguments to statfs()])],[
AC_MSG_RESULT(unknown)
AC_MSG_ERROR([unable to determine number of arguments to statfs()])])])
fi
dnl ==========================================================================
dnl Turn on the additional warnings last, so -Werror doesn't affect other tests.
AC_ARG_ENABLE([more-warnings],
[AS_HELP_STRING([--enable-more-warnings],[Maximum compiler warnings])],
[set_more_warnings="$enableval"],[
if test -f $srcdir/.git; then
set_more_warnings=yes
else
set_more_warnings=no
fi
])
AC_MSG_CHECKING([for more warnings])
if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
AC_MSG_RESULT(yes)
CFLAGS="\
-Wall \
-Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
-Wnested-externs -Wpointer-arith \
-Wcast-align -Wsign-compare \
$CFLAGS"
for option in -Wno-strict-aliasing -Wno-sign-compare -Wtype-limits; do
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $option"
AC_MSG_CHECKING([whether gcc understands $option])
AC_TRY_COMPILE([], [],
has_option=yes,
has_option=no,)
if test $has_option = no; then
CFLAGS="$SAVE_CFLAGS"
fi
AC_MSG_RESULT($has_option)
unset has_option
unset SAVE_CFLAGS
done
unset option
else
AC_MSG_RESULT(no)
fi
msg_installed_tests="no"
AC_ARG_ENABLE([installed-tests],
[AS_HELP_STRING([--enable-installed-tests],
[Enable installation of some test cases])],
[case ${enableval} in
yes) ENABLE_INSTALLED_TESTS="1" ;;
no) ENABLE_INSTALLED_TESTS="" ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-installed-tests]) ;;
esac])
AM_CONDITIONAL([ENABLE_INSTALLED_TESTS], [test "$ENABLE_INSTALLED_TESTS" = "1"])
AC_ARG_ENABLE([always-build-tests],
[AS_HELP_STRING([--enable-always-build-tests],
[Enable always building tests during 'make all'])],
[case ${enableval} in
yes) ENABLE_ALWAYS_BUILD_TESTS="1" ;;
no) ENABLE_ALWAYS_BUILD_TESTS="" ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-always-build-tests]) ;;
esac])
AM_CONDITIONAL([ENABLE_ALWAYS_BUILD_TESTS], [test "$ENABLE_ALWAYS_BUILD_TESTS" = "1"])
if test "$ENABLE_INSTALLED_TESTS" = "1"; then
AC_SUBST(installed_test_metadir, [${datadir}/installed-tests/]AC_PACKAGE_NAME)
AC_SUBST(installed_testdir, [${libexecdir}/installed-tests/]AC_PACKAGE_NAME)
msg_installed_tests="yes"
fi
AC_CONFIG_FILES([
Makefile
common/Makefile
client/Makefile
metadata/Makefile
daemon/trashlib/Makefile
daemon/Makefile
monitor/Makefile
monitor/proxy/Makefile
monitor/hal/Makefile
monitor/gdu/Makefile
monitor/udisks2/Makefile
monitor/gphoto2/Makefile
monitor/afc/Makefile
monitor/mtp/Makefile
monitor/goa/Makefile
programs/Makefile
programs/completion/Makefile
man/Makefile
test/Makefile
po/Makefile.in
])
AC_OUTPUT
echo
echo "gvfs configuration summary:"
echo "
gio module directory : $giomodulesdir
hotplug backend: $msg_hotplug_backend
Blu-ray metadata support: $msg_bluray
Google support: $msg_google
HTTP/WebDAV support: $msg_http
Samba support: $msg_samba
FUSE support: $msg_fuse
CDDA support: $msg_cdda
Gphoto2 support: $msg_gphoto2
MTP support: $msg_libmtp
archive support: $msg_archive
AFC support: $msg_afc
AFP support: $msg_afp
NFS support: $msg_nfs
DNS-SD support: $msg_avahi
Build HAL volume monitor: $msg_hal (with fast init path: $have_hal_fast_init)
Build GDU volume monitor: $msg_gdu
Build udisks2 volume monitor: $msg_udisks2
Build GOA volume monitor: $msg_goa
Use systemd user units: $msg_systemd_user_units
Use libsystemd-login: $msg_libsystemd_login
Use GCR: $msg_gcr
GNOME Keyring support: $msg_keyring
GTK+ support: $msg_gtk
Bash-completion support: $msg_bash_completion
Installed tests: $msg_installed_tests
"
# The gudev gphoto monitor needs a recent libgphoto; point to the required patch if the version is too old
if test "x$msg_gudev" = "xyes"; then
PKG_CHECK_EXISTS([libgphoto2 >= 2.4.7],, [msg_gphoto_patch=yes])
if test "x$msg_gphoto_patch" = "xyes"; then
AC_MSG_WARN([You are using a libgphoto2 version earlier than 2.4.7. To work with gudev, you must apply the patch in http://sourceforge.net/tracker/?func=detail&aid=2801117&group_id=8874&atid=308874])
fi
fi