-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
1341 lines (1181 loc) · 38.3 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
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AC_PREREQ(2.52)
AC_INIT(daemon/mdm.h)
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE(mdm,2.0.20)
AC_CONFIG_MACRO_DIRS([m4])
AM_MAINTAINER_MODE
AC_GNU_SOURCE
IT_PROG_INTLTOOL([0.35.0])
YELP_HELP_INIT
DBUS_REQUIRED=0.78
GLIB_REQUIRED=2.37.3
GTK_REQUIRED=2.24.0
GDK_PIXBUF_REQUIRED=2.22.0
PANGO_REQUIRED=1.14.0
LIBGLADE_REQUIRED=1.99.2
LIBGNOMECANVAS_REQUIRED=2.11.1
LIBRSVG_REQUIRED=2.14.4
LIBXML_REQUIRED=2.7.4
LIBART_REQUIRED=2.3.17
WEBKIT_REQUIRED=1.3.10
dnl
dnl Let the user configure where to look for the configuration files.
dnl
AC_ARG_WITH(sysconfsubdir, AC_HELP_STRING([--with-sysconfsubdir],
[directory name used under sysconfdir, default=mdm]),
sysconfsubdir=${withval}, sysconfsubdir=mdm)
AC_SUBST(sysconfsubdir)
if test x"${sysconfsubdir}" != xno -a x"${sysconfsubdir}" != x; then
mdmconfdir='${sysconfdir}/${sysconfsubdir}'
else
mdmconfdir='${sysconfdir}'
fi
AC_SUBST(mdmconfdir)
AC_ARG_WITH(dmconfdir, AC_HELP_STRING([--with-dmconfdir],
[directory where Sessions are stored, default=SYSCONFDIR/dm]),
dmconfdir=${withval}, dmconfdir=${sysconfdir}/dm)
AC_SUBST(dmconfdir)
dnl
dnl Configure arguments
dnl
AC_ARG_ENABLE(console-helper,
[ --enable-console-helper=[auto/no/yes] Enable PAM console helper [default=auto]],,
enable_console_helper=auto)
AC_ARG_ENABLE(authentication-scheme,
[ --enable-authentication-scheme=[auto/pam/crypt/shadow] Choose a specific
authentication scheme [default=auto]],,
enable_authentication_scheme=auto)
AC_ARG_WITH(xinerama,
[ --with-xinerama=[auto/yes/no] Add Xinerama support [default=auto]],,
with_xinerama=auto)
AC_ARG_WITH(tcp-wrappers,
[ --with-tcp-wrappers=[auto/yes/no] Use TCP Wrappers [default=auto]],,
with_tcp_wrappers=auto)
AC_ARG_WITH(dmx,
[ --with-dmx=[auto/yes/no] Add DMX (Distributed Multihead X) support [default=auto]],,
with_dmx=auto)
AC_ARG_WITH(selinux, [ --with-selinux Add SELinux support])
AC_ARG_WITH(console-kit,
[ --with-console-kit=[auto/yes/no] Add ConsoleKit support [default=auto]],,
with_console_kit=auto)
# Some distros may want to add directories to the end of the default path.
# The --with-post-path can be used to add these at configure time.
#
# On Solaris, you should use "--with-post-path=/usr/openwin/bin" for
# full Xserver support since some X programs are still in the older
# location (such as sessreg). Someday the Sun Xserver team will fix this,
# and then you will not have to do this anymore.
#
withval=""
AC_ARG_WITH(post-path,
[ --with-post-path=<PATH> add PATH to end of user's PATH when logging in],[
if test x$withval != x; then
AC_MSG_RESULT("PATH ${withval} with be added to end of user's PATH when logging in.")
fi])
if test x$withval != x; then
USER_POST_PATH="$withval"
fi
dnl
dnl PAM prefix
dnl
withval=""
AC_ARG_WITH(pam-prefix,
[ --with-pam-prefix=<prefix> specify where pam files go],[
if test x$withval != x; then
AC_MSG_RESULT("PAM files will be installed in prefix ${withval}.")
fi])
if test x$withval != x; then
PAM_PREFIX="$withval"
else
PAM_PREFIX='${sysconfdir}'
fi
AC_SUBST(PAM_PREFIX)
dnl
dnl file that sets LANG
dnl
withval=""
AC_ARG_WITH(lang-file,
[ --with-lang-file=<filename> file containing default language setting],[
if test x$withval != x; then
AC_MSG_RESULT("System locale will be looked for in file ${withval}.")
fi])
if test x$withval != x; then
LANG_CONFIG_FILE="$withval"
else
LANG_CONFIG_FILE='${sysconfdir}/sysconfig/i18n'
fi
AC_SUBST(LANG_CONFIG_FILE)
AC_PATH_PROG(CONSOLE_HELPER,consolehelper,no)
if test "x$CONSOLE_HELPER" = "xno" ; then
if test "x$enable_console_helper" = "xyes" ; then
AC_MSG_ERROR(Console helper requested but consolehelper binary not found)
fi
# if it was no, nothing happens, if it was auto, well then we're out of luck
enable_console_helper=no
else
if test ! "x$enable_console_helper" = "xno" ; then
enable_console_helper=yes
fi
fi
AC_ISC_POSIX
AC_PROG_CC
AC_STDC_HEADERS
dnl AC_ARG_PROGRAM
AM_PROG_LIBTOOL
AC_PATH_XTRA
dnl socklen_t may be declared, but not in a "standard" C header location
AC_CHECK_HEADERS(sys/socket.h)
AC_CHECK_TYPE(socklen_t,,
AC_DEFINE(socklen_t,size_t,Compatibility type),
[AC_INCLUDES_DEFAULT]
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
)
AC_CHECK_FUNCS([setresuid setenv unsetenv clearenv getutxent updwtmpx logwtmp login logout])
dnl checks needed for Darwin compatibility to linux **environ.
AC_CHECK_HEADERS(crt_externs.h)
AC_CHECK_FUNCS(_NSGetEnviron)
GNOME_COMPILE_WARNINGS
CFLAGS="$CFLAGS $WARN_CFLAGS"
PKG_CHECK_MODULES(COMMON, gtk+-2.0 >= $GTK_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED)
AC_SUBST(COMMON_CFLAGS)
AC_SUBST(COMMON_LIBS)
PKG_CHECK_MODULES(DAEMON, gtk+-2.0 >= $GTK_REQUIRED)
AC_SUBST(DAEMON_CFLAGS)
AC_SUBST(DAEMON_LIBS)
PKG_CHECK_MODULES(GUI, gtk+-2.0 >= $GTK_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED)
AC_SUBST(GUI_CFLAGS)
AC_SUBST(GUI_LIBS)
PKG_CHECK_MODULES(WEBKIT, gtk+-2.0 >= $GTK_REQUIRED webkit-1.0 >= $WEBKIT_REQUIRED)
AC_SUBST(WEBKIT_CFLAGS)
AC_SUBST(WEBKIT_LIBS)
PKG_CHECK_MODULES(GUIGLADE, gtk+-2.0 >= $GTK_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED)
AC_SUBST(GUIGLADE_CFLAGS)
AC_SUBST(GUIGLADE_LIBS)
PKG_CHECK_MODULES(GUING, gtk+-2.0 >= $GTK_REQUIRED)
AC_SUBST(GUING_CFLAGS)
AC_SUBST(GUING_LIBS)
PKG_CHECK_MODULES(GREETER, gtk+-2.0 >= $GTK_REQUIRED libgnomecanvas-2.0 >= $LIBGNOMECANVAS_REQUIRED librsvg-2.0 >= $LIBRSVG_REQUIRED libxml-2.0 >= $LIBXML_REQUIRED libart-2.0 >= $LIBART_REQUIRED)
AC_SUBST(GREETER_CFLAGS)
AC_SUBST(GREETER_LIBS)
PKG_CHECK_MODULES(UTILS, gtk+-2.0 >= $GTK_REQUIRED libglade-2.0 >= $LIBGLADE_REQUIRED)
AC_SUBST(UTILS_CFLAGS)
AC_SUBST(UTILS_LIBS)
PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED)
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
PKG_CHECK_MODULES(GOBJECT, gobject-2.0 >= $GLIB_REQUIRED)
AC_SUBST(GOBJECT_CFLAGS)
AC_SUBST(GOBJECT_LIBS)
PKG_CHECK_MODULES(PANGO, pango >= $PANGO_REQUIRED)
AC_SUBST(PANGO_CFLAGS)
AC_SUBST(PANGO_LIBS)
PKG_CHECK_MODULES(PANGOFT, pangoft2 >= $PANGO_REQUIRED)
AC_SUBST(PANGOFT_CFLAGS)
AC_SUBST(PANGOFT_LIBS)
PKG_CHECK_MODULES(GDK, gdk-2.0 >= $GTK_REQUIRED)
AC_SUBST(GDK_CFLAGS)
AC_SUBST(GDK_LIBS)
PKG_CHECK_MODULES(GDKPIXBUF, gdk-pixbuf-2.0 >= $GDK_PIXBUF_REQUIRED)
AC_SUBST(GDKPIXBUF_CFLAGS)
AC_SUBST(GDKPIXBUF_LIBS)
dnl Allow users to run mdmsetup using the console helper PAM stuff.
if test "x$enable_console_helper" = "xyes"; then
AM_CONDITIONAL(CONSOLE_HELPER, true)
else
AM_CONDITIONAL(CONSOLE_HELPER, false)
fi
dnl ## Language Support
GETTEXT_PACKAGE=mdm
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE")
AC_SUBST(GETTEXT_PACKAGE)
dnl ## internationalization support
AM_GLIB_GNU_GETTEXT
EXTRA_DAEMON_LIBS=""
EXTRA_GREETER_LIBS=""
EXTRA_SOCKET_LIB=""
EXTRA_NSL_LIB=""
AC_CHECK_FUNC(socket,,[
AC_CHECK_LIB(socket,socket, [
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lsocket"
EXTRA_SOCKET_LIB="-lsocket"])])
AC_CHECK_FUNC(gethostbyname,,[
AC_CHECK_LIB(nsl,gethostbyname, [
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lnsl"
EXTRA_NSL_LIB="-lnsl"])])
AC_CHECK_FUNC(sched_yield,[
AC_DEFINE(HAVE_SCHED_YIELD)],[
AC_CHECK_LIB(rt,sched_yield, [
AC_DEFINE(HAVE_SCHED_YIELD)
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lrt"], [
echo "No sched_yield found"])])
AC_MSG_CHECKING(if utmpx structure has ut_syslen field)
AC_TRY_COMPILE([
#include <utmpx.h>],[
struct utmpx record;
record.ut_syslen = sizeof (record.ut_host);
],
have_ut_syslen=yes,
have_ut_syslen=no
)
if test x$have_ut_syslen = xyes; then
AC_DEFINE(HAVE_UT_SYSLEN)
fi
AC_MSG_RESULT($have_ut_syslen)
COMMON_GNOME_LIBS="libmdmcommon-ui.a"
AC_SUBST(COMMON_GNOME_LIBS)
dnl *****************************
dnl IPv6 specific checks
dnl *****************************
AC_MSG_CHECKING([whether to enable IPv6])
AC_ARG_ENABLE(ipv6, [ --enable-ipv6=[yes/no] Enables compilation of IPv6 code default=[no]],, enable_ipv6=no)
if test x$enable_ipv6 = xyes; then
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/socket.h>],[
struct sockaddr_storage ss;
socket(AF_INET6, SOCK_STREAM, 0)
],
have_ipv6=yes,
have_ipv6=no
)
if test x$have_ipv6 = xyes; then
have_getaddrinfo=no
have_inet_ntop=no
AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes)
if test x$have_getaddrinfo != xyes; then
for lib in bsd socket inet; do
AC_CHECK_LIB($lib,getaddrinfo,["LIBS=$LIBS -l$lib";have_getaddrinfo=yes;break])
done
fi
AC_CHECK_FUNC(inet_ntop,have_inet_ntop=yes)
if test x$have_inet_ntop != xyes; then
for lib in bsd nsl inet; do
AC_CHECK_LIB($lib,inet_ntop,["LIBS=$LIBS -l$lib";have_inet_ntop=yes;break])
done
fi
if test x$have_getaddrinfo = xyes; then
if test x$have_inet_ntop = xyes; then
have_ipv6=yes
AC_DEFINE(ENABLE_IPV6)
AC_MSG_RESULT($have_ipv6)
else
have_ipv6=no
AC_MSG_RESULT($have_ipv6)
fi
fi
fi
else
AC_MSG_RESULT(no)
fi
dnl borrowed from gnu findutils
dnl and relicensed as LGPL by the FSF
AC_ARG_WITH(prefetch,
[ --with-prefetch=[yes/no] Install MDM library prefetch utility [default=no]],,
with_prefetch=no)
if test x$with_prefetch != xno ; then
MDMPREFETCH="mdmprefetch"
MDMPREFETCHLIST="mdmprefetchlist"
MDMPREFETCHCMD='${libdir}/mdmprefetch \@${mdmconfdir}/mdmprefetchlist'
fi
AC_ARG_WITH(afs,
[ --with-afs support -fstype afs],
[ AC_DEFINE(AFS, [], [Define if you have the Andrew File System])
CPPFLAGS="$CPPFLAGS -I/usr/afsws/include"
LIBS="$LIBS -L/usr/afsws/lib -L/usr/afsws/lib/afs -lsys -lrx -llwp"])
AC_MSG_CHECKING(how to get filesystem type)
fstype=no
# The order of these tests is important.
AC_TRY_CPP([#include <sys/statvfs.h>
#include <sys/fstyp.h>], AC_DEFINE(FSTYPE_STATVFS, [],
[Define to use SVR4 statvfs to get filesystem type]) fstype=SVR4)
if test $fstype = no; then
AC_TRY_CPP([#include <sys/statfs.h>
#include <sys/fstyp.h>], AC_DEFINE(FSTYPE_USG_STATFS, [],
[Define to use SVR3.2 statfs to get filesystem type]) fstype=SVR3)
fi
if test $fstype = no; then
AC_TRY_CPP([#include <sys/statfs.h>
#include <sys/vmount.h>], AC_DEFINE(FSTYPE_AIX_STATFS, [],
[Define to use AIX3 statfs to get filesystem type]) fstype=AIX)
fi
if test $fstype = no; then
AC_TRY_CPP([#include <mntent.h>], AC_DEFINE(FSTYPE_MNTENT, [],
[Define to use 4.3BSD getmntent to get filesystem typ]) fstype=4.3BSD)
fi
if test $fstype = no; then
AC_EGREP_HEADER(f_type;, sys/mount.h, AC_DEFINE(FSTYPE_STATFS, [],
[Define to use 4.4BSD and OSF1 statfs to get filesystem typ]) fstype=4.4BSD/OSF1)
fi
if test $fstype = no; then
AC_TRY_CPP([#include <sys/mount.h>
#include <sys/fs_types.h>], AC_DEFINE(FSTYPE_GETMNT, [],
[Define to use Ultrix getmnt to get filesystem typ]) fstype=Ultrix)
fi
AC_MSG_RESULT($fstype)
dnl ****************************
dnl IPv6 checks end here
dnl ****************************
dnl ## mdmopen building
dnl There are perhaps others where this works
MDMOPEN=
AC_CHECK_HEADERS(sys/vt.h, [
AC_DEFINE(HAVE_SYS_VT_H)])
AC_CHECK_HEADERS(sys/vt.h, [
MDMOPEN=mdmopen])
AC_SUBST(MDMOPEN)
dnl ## Authentication scheme
have_pam=no
VRFY="verify-crypt"
if test x$enable_authentication_scheme != xcrypt -a \
x$enable_authentication_scheme != xshadow ; then
AC_CHECK_HEADERS(security/pam_appl.h, [
have_pam=yes
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lpam"
VRFY="verify-pam"
AC_DEFINE(HAVE_PAM)])
fi
MDMASKPASS=
EXTRA_MDMASKPASS_LIBS=
if test x$have_pam = xyes ; then
AC_CHECK_HEADERS(security/pam_misc.h, [
MDMASKPASS=mdmaskpass])
if test x$MDMASKPASS != x ; then
AC_CHECK_LIB(pam,misc_conv,,[AC_CHECK_LIB(pam_misc,misc_conv, [
EXTRA_MDMASKPASS_LIBS="$EXTRA_MDMASKPASS_LIBS -lpam_misc"], [
MDMASKPASS=], [
-lpam])])
fi
fi
AC_SUBST(MDMASKPASS)
AC_SUBST(EXTRA_MDMASKPASS_LIBS)
if test x$enable_authentication_scheme = xpam -a x$have_pam = xno ; then
AC_MSG_ERROR(PAM support requested but not available)
fi
if test x$have_pam = xno; then
# Check if -lcrypt is necessary, and if so
# add it to the front of the link chain
AC_CHECK_LIB(crypt, crypt, [
EXTRA_DAEMON_LIBS="-lcrypt $EXTRA_DAEMON_LIBS"])
# Check if crypt lives in a separate header file
AC_CHECK_HEADERS(crypt.h, [
AC_DEFINE(HAVE_CRYPT)])
if test x$enable_authentication_scheme = xshadow ; then
VRFY="verify-shadow"
AC_DEFINE(HAVE_SHADOW)
elif test x$enable_authentication_scheme != xcrypt ; then
# Check for shadow passwords (hack)
AC_MSG_CHECKING(for /etc/shadow)
if test -f /etc/shadow; then
VRFY="verify-shadow"
AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_SHADOW)
else
AC_MSG_RESULT(no)
fi
fi
# Check How to handle authentication with the functions 'loginrestrictions',
# 'passwdexpired', 'chpass', 'setpwdb', 'getuserpw', 'putuserpw' and 'endpwdb'
AC_CHECK_FUNCS(loginrestrictions)
can_clear_admchg_flag=yes
AC_CHECK_FUNCS([passwdexpired chpass setpwdb getuserpw putuserpw endpwdb],
,can_clear_admchg_flag=no)
if test x$can_clear_admchg_flag = xyes ; then
AC_COMPILE_IFELSE([
#if !defined(S_READ) || !defined(S_WRITE) || !defined(PW_ADMCHG)
choke me
#endif
],
,[AC_CHECK_HEADERS(
usersec.h
,[AC_COMPILE_IFELSE([
#include <usersec.h>
#if !defined(S_READ) || !defined(S_WRITE) || !defined(PW_ADMCHG)
choke me
#endif
],
,
can_clear_admchg_flag=no
)]
,can_clear_admchg_flag=no
)]
)
fi
if test x$can_clear_admchg_flag = xyes ; then
AC_DEFINE(CAN_CLEAR_ADMCHG,,[Define this variable if the code to clear
the ADMCHG flag can be compiled])
fi
fi
AC_SUBST(VRFY)
dnl Check if we can use the setpenv function to add specialvariable
dnl to the environment (such as the /etc/environment file under AIX)
AC_LINK_IFELSE([
AC_LANG_PROGRAM([[
#ifdef HAVE_USERSEC_H
#include <usersec.h>
#endif
]],[[
return (setpenv(NULL, (PENV_INIT | PENV_NOEXEC), NULL, NULL));
]])],
can_use_setpenv=yes,
can_use_setpenv=no)
if test x$can_use_setpenv = xyes ; then
AC_DEFINE(CAN_USE_SETPENV,,[Define this variable if the code to use
the setpenv function can be compiled and used])
fi
#
# Can we use BSD's setusercontext
#
AC_CHECK_HEADER(login_cap.h, [
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lutil"
AC_DEFINE(HAVE_LOGINCAP)])
#
# Check for sys/sockio.h
#
AC_CHECK_HEADERS(sys/sockio.h, [
AC_DEFINE(HAVE_SYS_SOCKIO_H)])
#
# Check for libgen.h
#
AC_CHECK_HEADERS(libgen.h, [
AC_DEFINE(HAVE_LIBGEN_H)])
#
# Check for utmp stuff
#
AC_CHECK_HEADERS(utmp.h utmpx.h libutil.h sys/param.h)
AC_CHECK_FUNC(getutmpx updwtmpx)
AC_CHECK_LIB(util,login)
AC_CHECK_LIB(util,logout)
MDM_CHECK_UTMP
#
# TCP Wrappers for XDMCP access control
#
if test x$with_tcp_wrappers = xno ; then
echo "TCP wrappers disabled"
else
LIBWRAP_PATH=""
case "$host" in
*-*-solaris*)
if test -f /usr/lib/libwrap.so; then
LIBWRAP_PATH=/usr/lib/libwrap.so
echo "Found $LIBWRAP_PATH" 1>&5
nm $LIBWRAP_PATH | grep 'T setenv' && LIBWRAP_PATH=""
fi
if test -z "$LIBWRAP_PATH"; then
if test -f /usr/sfw/lib/libwrap.so; then
LIBWRAP_PATH=/usr/sfw/lib/libwrap.so
echo "Found $LIBWRAP_PATH" 1>&5
nm $LIBWRAP_PATH | grep 'T setenv' && LIBWRAP_PATH=""
fi
fi
if test -z "$LIBWRAP_PATH"; then
echo "*********************************************************"
echo " You have a broken TCP wrappers library (setenv included)"
echo " Please get the latest TCP wrappers package from your OS"
echo " vendor, or recompile TCP wrappers to not include a"
echo " setenv() implementation."
echo
echo "Not using TCP wrappers after all."
echo "*********************************************************"
else
LIBWRAP_LIBS="-L/usr/sfw/lib -R/usr/sfw/lib -lwrap"
AC_DEFINE(HAVE_TCPWRAPPERS)
fi
;;
*)
AC_CHECK_LIB([wrap], [hosts_ctl], [
LIBWRAP_LIBS="-lwrap"
LIBWRAP_PATH=auto
AC_DEFINE(HAVE_TCPWRAPPERS)])
;;
esac
AC_MSG_CHECKING([whether to use TCP wrappers])
if test -n "$LIBWRAP_PATH"; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
dnl find out if we need -lnsl or whatever
LIB_NSL=
if test -n "$LIBWRAP_PATH"; then
AC_MSG_CHECKING(whether -lwrap also requires -lnsl)
ORIG_LIBS="$LIBS"
LIBS="$EXTRA_DAEMON_LIBS $LIBS $LIBWRAP_LIBS"
AC_TRY_LINK([
#include <tcpd.h>
int allow_severity, deny_severity;
], [return hosts_access;], ,[
dnl try with -lnsl
OLD_LIBS="$LIBS"
LIBS="$LIBS -lnsl"
AC_TRY_LINK([
#include <tcpd.h>
int allow_severity, deny_severity;
], [return hosts_access;], LIB_NSL="-lnsl",
LIBWRAP_PATH="")
LIBS="$OLD_LIBS"
])
LIBS="$ORIG_LIBS"
if test -n "$LIB_NSL"; then
AC_MSG_RESULT(yes)
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS $LIB_NSL"
else
AC_MSG_RESULT(no)
fi
fi
fi
AC_SUBST(LIBWRAP_LIBS)
AC_MSG_CHECKING([for corrupt government])
AC_MSG_RESULT(yes)
have_xinput=
AC_CHECK_LIB(Xi, XOpenDevice, XINPUT_LIBS=-lXi)
if test "x$XINPUT_LIBS" = x; then
save_LIBS="$LIBS"
for xinputpath in $x_libraries /usr/X11R6/lib /usr/openwin/lib; do
LIBS="-L$xinputpath -lXi"
case "$host" in
*solaris*) XINPUT_RPATH_FLAGS="-R$xinputpath"
;;
esac
AC_MSG_CHECKING(for -lXi in $xinputpath)
AC_TRY_LINK([], [XOpenDevice()], [
AC_MSG_RESULT(yes)
XINPUT_LIBS="$XINPUT_RPATH_FLAGS -L$xinputpath -lXi"
LIBS="$save_LIBS"
break],[AC_MSG_RESULT(no)])
done
if test "x$XINPUT_LIBS" = x; then
AC_MSG_ERROR(Couldn't find the XInput library. Check config.log for details)
fi
fi
AC_CHECK_HEADER(X11/extensions/XInput.h, have_xinput=yes)
if test "x$have_xinput" = xyes; then
AC_DEFINE(HAVE_XINPUT)
X_EXTRA_LIBS="$X_EXTRA_LIBS $XINPUT_LIBS"
fi
# Check for defopen
#
if test -f /etc/default/login; then
AC_CHECK_LIB(cmd, defopen, use_defopen=yes, use_defopen=no)
if test "x$use_defopen" = "xyes"; then
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lcmd"
AC_DEFINE(HAVE_DEFOPEN)
fi
fi
#
# X11 Xinerama extension
#
# Check for Xinerama extension (Solaris impl or Xfree impl)
xinerama_save_cppflags="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
ALL_X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
if test ! x$with_xinerama = xno ; then
# Check for XFree
use_xfree_xinerama=yes
AC_CHECK_LIB(Xinerama, XineramaQueryExtension,
[AC_CHECK_HEADER(X11/extensions/Xinerama.h,
if test -z "`echo $ALL_X_LIBS | grep "\-lXext" 2> /dev/null`"; then
X_EXTRA_LIBS="-lXext $X_EXTRA_LIBS"
fi
AC_DEFINE(HAVE_XFREE_XINERAMA)
AC_DEFINE(HAVE_XINERAMA)
XINERAMA_LIBS="-lXinerama"
XINERAMA_SUPPORT=yes,
use_xfree_xinerama=no,
[#include <X11/Xlib.h>])],
use_xfree_xinerama=no, -lXext $ALL_X_LIBS)
AC_MSG_CHECKING(for Xinerama support on XFree86)
AC_MSG_RESULT($use_xfree_xinerama);
if test x$use_xfree_xinerama = xno ; then
case "$host" in
*-*-solaris*)
# Check for solaris
use_solaris_xinerama=yes
AC_CHECK_LIB(Xext, XineramaGetInfo,
use_solaris_xinerama=yes, use_solaris_xinerama=no,
$ALL_X_LIBS)
if test "x$use_solaris_xinerama" = "xyes"; then
AC_CHECK_HEADER(X11/extensions/xinerama.h,
if test -z "`echo $ALL_X_LIBS | grep "\-lXext" 2> /dev/null`"; then
X_EXTRA_LIBS="-lXext $X_EXTRA_LIBS"
fi
AC_DEFINE(HAVE_SOLARIS_XINERAMA)
AC_DEFINE(HAVE_XINERAMA)
XINERAMA_LIBS=""
XINERAMA_SUPPORT=yes,
use_solaris_xinerama=no,
[#include <X11/Xlib.h>])
fi
AC_MSG_CHECKING(for Xinerama support on Solaris)
AC_MSG_RESULT($use_solaris_xinerama);
;;
*)
;;
esac
fi
fi
AC_SUBST(XINERAMA_LIBS)
CPPFLAGS="$xinerama_save_cppflags"
#
# Distributed Multihead X extension (DMX)
#
DMX_SUPPORT=""
DMX_LIBS=""
if test x$with_dmx != xno ; then
dmx_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
AC_CHECK_HEADER(X11/extensions/dmxext.h, [
AC_CHECK_LIB(dmx, DMXQueryExtension, [
DMX_LIBS="-ldmx"
DMX_SUPPORT=yes],,[$X_LIBS -lX11 $X_EXTRA_LIBS])
],,[#include <X11/Xlib.h>])
if test x$with_dmx = xyes -a x$DMX_SUPPORT = x ; then
AC_MSG_ERROR(DMX support requested but DMX librariy not found)
fi
CPPFLAGS="$dmx_save_CPPFLAGS"
fi
AC_SUBST(DMX_LIBS)
AM_CONDITIONAL(DMX_SUPPORT, test x$DMX_SUPPORT = xyes)
#
# SELinux stuff
#
if test "x$with_selinux" = "xyes" ; then
echo "SELinux support requested (--with-selinux was given), checking prerequisites"
if test -d /usr/local/selinux/include ; then
echo "Found /usr/local/selinux/include, will look there for SELinux stuff as well"
CFLAGS="$CFLAGS -I/usr/local/selinux/include"
LDFLAGS="$LDFLAGS -L/usr/local/selinux/lib"
fi
AC_CHECK_HEADER(selinux/selinux.h)
AC_CHECK_HEADER(selinux/get_context_list.h)
AC_CHECK_LIB(attr,attr_get,/bin/true)
# I'm anal and I don't know which versions have which symbols,
# so I check for all the ones we use
AC_CHECK_LIB(selinux,get_ordered_context_list,/bin/true)
AC_CHECK_LIB(selinux,freecon,/bin/true)
AC_CHECK_LIB(selinux,freeconary,/bin/true)
AC_CHECK_LIB(selinux,setexeccon,/bin/true)
AC_CHECK_LIB(selinux,is_selinux_enabled,/bin/true)
AC_DEFINE(HAVE_SELINUX)
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lselinux -lattr"
fi
#
# ConsoleKit support
#
use_console_kit=no
if test "x$with_console_kit" != "xno" ; then
use_console_kit=yes
PKG_CHECK_MODULES(DBUS, dbus-glib-1 >= $DBUS_REQUIRED)
AC_DEFINE(WITH_CONSOLE_KIT, 1, [Define to enable ConsoleKit support])
fi
AM_CONDITIONAL(WITH_CONSOLE_KIT, test x$use_console_kit = xyes)
AC_SUBST(WITH_CONSOLE_KIT)
AC_SUBST(DBUS_CFLAGS)
AC_SUBST(DBUS_LIBS)
#
# Define some variables to represent the directories we use.
#
AC_SUBST(authdir, ${localstatedir}/mdm)
AC_SUBST(mdmlocaledir, ${mdmconfdir})
AC_SUBST(pixmapdir, ${datadir}/pixmaps)
AC_ARG_WITH(log-dir, [ --with-log-dir=<file> log dir])
if ! test -z "$with_log_dir"; then
MDM_LOG_DIR=$with_log_dir
else
MDM_LOG_DIR=/var/log/mdm
fi
AC_SUBST(logdir, $MDM_LOG_DIR)
AC_ARG_WITH(libaudit,
[ --with-libaudit=[auto/yes/no] Add Linux audit support [default=auto]],,
with_libaudit=auto)
withval=""
AC_ARG_WITH(at-bindir,
[ --with-at-bindir=<PATH> PATH to Accessible Technology programs [default=BINDIR]],)
if test x$withval != x; then
AT_BINDIR="$withval"
else
AT_BINDIR='${bindir}'
fi
AC_SUBST(AT_BINDIR)
withval=""
AC_ARG_WITH(defaults_conf,
[ --with-defaults-conf=<FILENAME> FILENAME to give to defaults file [default=DATADIR/mdm/defaults.conf]],)
if test x$withval != x; then
MDM_DEFAULTS_CONF="$withval"
else
MDM_DEFAULTS_CONF='${datadir}/mdm/defaults.conf'
fi
AC_SUBST(MDM_DEFAULTS_CONF)
withval=""
AC_ARG_WITH(custom_conf,
[ --with-custom-conf=<FILENAME> FILENAME to give to custom configuration file [default=MDMCONFDIR/custom.conf]],)
if test x$withval != x; then
MDM_CUSTOM_CONF="$withval"
else
MDM_CUSTOM_CONF='${mdmconfdir}/custom.conf'
fi
AC_SUBST(MDM_CUSTOM_CONF)
AC_SUBST(MDM_OLD_CONF, '${mdmconfdir}/mdm.conf')
AC_ARG_WITH(prefetch,
[ --with-prefetch=[yes/no] Install MDM library prefetch utility [default=no]],,
with_prefetch=no)
if test x$with_prefetch != xno ; then
MDMPREFETCH="mdmprefetch"
MDMPREFETCHLIST="mdmprefetchlist"
MDMPREFETCHCMD='${libdir}/mdmprefetch \@${mdmconfdir}/mdmprefetchlist'
fi
AC_SUBST(MDMPREFETCH)
AC_SUBST(MDMPREFETCHLIST)
AC_SUBST(MDMPREFETCHCMD)
AC_ARG_ENABLE(secureremote,
[ --enable-secureremote=[yes/no] Enable to offer a secure X connection through ssh [default=no]],,
enable_secureremote=no)
AC_PATH_PROG(ZENITY,zenity,no)
if test "x$ZENITY" = "xno" ; then
if test "x$enable_secureremote" = "xyes" ; then
AC_MSG_ERROR(Secure remote connection requested but zenity binary not found)
fi
# if it was no, nothing happens, if it was auto, well then we're out of luck
enable_console_helper=no
else
if test ! "x$enable_secureremote" = "xno" ; then
enable_secureremote=yes
fi
fi
if test ${exec_prefix} != "NONE"; then
real_mdm_prefix=$exec_prefix
elif test ${prefix} != "NONE"; then
real_mdm_prefix=$prefix
else
real_mdm_prefix=$ac_default_prefix
fi
if test ${libexecdir} = "\${exec_prefix}/libexec"; then
mdm_libexec="$real_mdm_prefix/libexec"
else
mdm_libexec="${libexecdir}"
fi
AC_ARG_WITH(atspi-dir,
[ --with-atspi-dir=<PATH> PATH to at-spi-registryd [default=LIBEXECDIR]])
if ! test -z "$with_atspi_dir"; then
ATSPI_DIR="$with_atspi_dir"
else
ATSPI_DIR="$mdm_libexec"
fi
AC_SUBST(atspidir, $ATSPI_DIR)
if test x$enable_secureremote != xno ; then
SSHDESKTOP="ssh.desktop"
MDMSSHSESSION="mdm-ssh-session"
MDMSSHSESSIONCMD="${mdm_libexec}/mdm-ssh-session"
fi
AC_SUBST(SSHDESKTOP)
AC_SUBST(MDMSSHSESSION)
AC_SUBST(MDMSSHSESSIONCMD)
AC_ARG_WITH(xevie,
[ --with-xevie=[yes/no] Add XEvIE Xserver extension support [default=no]],,
with_xevie=no)
if test x$with_xevie != xno ; then
XEVIE_OPTION="+extension XEVIE"
else
XEVIE_OPTION=""
fi
AC_SUBST(XEVIE_OPTION)
AC_DEFINE_UNQUOTED(XEVIE_OPTION,"$XEVIE_OPTION")
# Check for Linux auditing API
#
# libaudit detection
if test x$with_libaudit = xno ; then
have_libaudit=no;
else
# See if we have audit daemon library
AC_CHECK_LIB(audit, audit_log_user_message,
have_libaudit=yes, have_libaudit=no)
fi
AM_CONDITIONAL(HAVE_LIBAUDIT, test x$have_libaudit = xyes)
if test x$have_libaudit = xyes ; then
EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -laudit"
AC_DEFINE(HAVE_LIBAUDIT,1,[linux audit support])
fi
# check for the nologin location
AC_PATH_PROG(NOLOGIN, nologin, /sbin/nologin)
AC_DEFINE_UNQUOTED(NOLOGIN, "$NOLOGIN", [Path to the nologin binary])
#
# Subst the extra libs
#
AC_SUBST(EXTRA_DAEMON_LIBS)
AC_SUBST(EXTRA_GREETER_LIBS)
AC_SUBST(EXTRA_SOCKET_LIB)
AC_SUBST(EXTRA_NSL_LIB)
# Define different Halt, and Reboot commands differently for Solaris.
#
# On Solaris/bin is a symlink to /usr/bin, so don't include it in
# MDM_USER_PATH.
#
MDM_USER_PATH=""
MDM_RBAC_SYSCMD_KEYS=""
case "$host" in
*solaris*)
HOST_MDM_USER_PATH="/usr/bin"
HOST_HALT_COMMAND="/sbin/init 5"
HOST_REBOOT_COMMAND="/sbin/init 6"
HOST_SUSPEND_COMMAND="/usr/openwin/bin/sys-suspend -n"
HOST_XSESSION_SHELL=/bin/ksh
HOST_SOUND_PROGRAM=/usr/bin/audioplay
HOST_MDMGNOMESESSIONCMD=/usr/dt/config/Xsession.jds
HOST_MDM_RBAC_SYSCMD_KEYS="HALT:solaris.system.shutdown;REBOOT:solaris.system.shutdown;SUSPEND:solaris.system.power.suspend.ram"
HOST_UTMP_LINE_ATTACHED="/dev/dtlocal"
HOST_UTMP_PSEUDO_DEVICE="true"
os_solaris=yes
;;
*freebsd*)
HOST_MDM_USER_PATH="/bin:/usr/bin"
HOST_HALT_COMMAND="/sbin/shutdown -p now;/usr/sbin/shutdown -p now"
HOST_REBOOT_COMMAND="/sbin/shutdown -r now;/usr/sbin/shutdown -r now"
HOST_SUSPEND_COMMAND="/usr/sbin/zzz"
HOST_XSESSION_SHELL=/bin/sh
HOST_SOUND_PROGRAM=
HOST_MDMGNOMESESSIONCMD=cinnamon-session
HOST_UTMP_LINE_ATTACHED="/dev/console"
HOST_UTMP_PSEUDO_DEVICE="false"
;;
*openbsd*)
HOST_MDM_USER_PATH="/bin:/usr/bin"
HOST_HALT_COMMAND="/sbin/halt -p;/usr/bin/poweroff;/sbin/poweroff;/sbin/shutdown -h now;/usr/sbin/shutdown -h now"
HOST_REBOOT_COMMAND="/usr/bin/reboot;/sbin/reboot;/sbin/shutdown -r now;/usr/sbin/shutdown -r now"
HOST_SUSPEND_COMMAND="/usr/bin/zzz"
HOST_XSESSION_SHELL=/bin/sh
HOST_SOUND_PROGRAM="$real_mdm_prefix/bin/play"
HOST_MDMGNOMESESSIONCMD=cinnamon-session
HOST_UTMP_LINE_ATTACHED="/dev/console"
HOST_UTMP_PSEUDO_DEVICE="false"
;;
*)
HOST_MDM_USER_PATH="/bin:/usr/bin"
HOST_HALT_COMMAND="/usr/bin/poweroff;/sbin/poweroff;/sbin/shutdown -h now;/usr/sbin/shutdown -h now"
HOST_REBOOT_COMMAND="/usr/bin/reboot;/sbin/reboot;/sbin/shutdown -r now;/usr/sbin/shutdown -r now"
HOST_SUSPEND_COMMAND=""
HOST_XSESSION_SHELL=/bin/sh
HOST_SOUND_PROGRAM=/usr/bin/paplay
HOST_MDMGNOMESESSIONCMD=cinnamon-session
HOST_UTMP_LINE_ATTACHED="/dev/tty0"
HOST_UTMP_PSEUDO_DEVICE="false"
;;
esac
# allow user to override the host-specific default
test "x$MDM_USER_PATH" == x && MDM_USER_PATH=${HOST_MDM_USER_PATH}
test "x$MDM_HALT_COMMAND" == x && MDM_HALT_COMMAND=${HOST_MDM_HALT_COMMAND}
test "x$HALT_COMMAND" == x && HALT_COMMAND=${HOST_HALT_COMMAND}
test "x$REBOOT_COMMAND" == x && REBOOT_COMMAND=${HOST_REBOOT_COMMAND}
test "x$SUSPEND_COMMAND" == x && SUSPEND_COMMAND=${HOST_SUSPEND_COMMAND}
test "x$XSESSION_SHELL" == x && XSESSION_SHELL=${HOST_XSESSION_SHELL}
test "x$SOUND_PROGRAM" == x && SOUND_PROGRAM=${HOST_SOUND_PROGRAM}
test "x$MDMGNOMESESSIONCMD" == x && MDMGNOMESESSIONCMD=${HOST_MDMGNOMESESSIONCMD}
test "x$UTMP_LINE_ATTACHED" == x && UTMP_LINE_ATTACHED=${HOST_UTMP_LINE_ATTACHED}
test "x$UTMP_PSEUDO_DEVICE" == x && UTMP_PSEUDO_DEVICE=${HOST_UTMP_PSEUDO_DEVICE}
test "x$MDM_RBAC_SYSCMD_KEYS" == x && MDM_RBAC_SYSCMD_KEYS=${HOST_MDM_RBAC_SYSCMD_KEYS}