]> git.pld-linux.org Git - packages/autofs.git/blame - autofs-5.0.4-configure-libtirpc.patch
- import latest patchset.
[packages/autofs.git] / autofs-5.0.4-configure-libtirpc.patch
CommitLineData
e5fd101c
PS
1autofs-5.0.4 - configure libtirpc
2
3From: Ian Kent <raven@themaw.net>
4
5With NFS over ipv6 on the way we need to update autofs to use the
6libtirpc library as it provides ipv6 functionality. This change adds
7configure checks to look for libtirpc (if it has been requested with
8--with-libtirpc) and checks whether it has been built with ipv6
9support and uses it if so.
10---
11
12 Makefile.conf.in | 3
13 Makefile.rules | 5
14 aclocal.m4 | 81 +++
15 autofs.spec | 2
16 configure | 1548 ++++++++++++++++++++++++++++-----------------------
17 configure.in | 6
18 daemon/automount.c | 13
19 include/config.h.in | 6
20 8 files changed, 970 insertions(+), 694 deletions(-)
21
22
23diff --git a/Makefile.conf.in b/Makefile.conf.in
24index ffda2a0..f0287c3 100644
25--- a/Makefile.conf.in
26+++ b/Makefile.conf.in
27@@ -49,6 +49,9 @@ YACC = @PATH_YACC@
28 RPCGEN = @PATH_RPCGEN@
29 RANLIB = @PATH_RANLIB@
30
31+# Use libtirpc if requested and available
32+TIRPCLIB = @TIRPCLIB@
33+
34 # Use dmalloc for memory debuging
35 DMALLOCLIB = @DMALLOCLIB@
36
37diff --git a/Makefile.rules b/Makefile.rules
38index 30716dc..f2ba386 100644
39--- a/Makefile.rules
40+++ b/Makefile.rules
41@@ -47,6 +47,11 @@ SOLDFLAGS = -shared
42 CFLAGS += -D_REENTRANT -D_FILE_OFFSET_BITS=64
43 LDFLAGS += -lpthread
44
45+ifdef TIRPCLIB
46+CFLAGS += -I/usr/include/tirpc
47+LDFLAGS += $(TIRPCLIB)
48+endif
49+
50 ifdef DMALLOCLIB
51 LDFLAGS += $(DMALLOCLIB)
52 endif
53diff --git a/aclocal.m4 b/aclocal.m4
54index ab11112..5777fcd 100644
55--- a/aclocal.m4
56+++ b/aclocal.m4
57@@ -304,3 +304,84 @@ fi
58 LIBS="$af_check_ldap_parse_page_control_save_libs"
59 ])
60
61+dnl --------------------------------------------------------------------------
62+dnl AF_CHECK_LIBTIRPC_IPV6
63+dnl
64+dnl Use libtirpc for rpc transport
65+dnl --------------------------------------------------------------------------
66+AC_DEFUN([AF_CHECK_LIBTIRPC_IPV6],
67+[AC_MSG_CHECKING(if libtirpc has IPv6 support)
68+
69+# save current flags
70+af_check_libtirpc_ipv6_save_cflags="$CFLAGS"
71+af_check_libtirpc_ipv6_save_ldflags="$LDFLAGS"
72+CFLAGS="$CFLAGS -I/usr/include/tirpc"
73+LDFLAGS="$LDFLAGS -ltirpc"
74+
75+AC_TRY_LINK(
76+ [ #define INET6
77+ #include <rpc/rpc.h> ],
78+ [ CLIENT *cl;
79+ struct sockaddr_in addr;
80+ int fd;
81+ unsigned long ul; struct timeval t; unsigned int ui;
82+ cl = clntudp6_bufcreate(&addr,ul,ul,t,&fd,ui,ui); ],
83+ [ af_have_libtirpc_ipv6=yes
84+ AC_MSG_RESULT(yes) ],
85+ [ AC_MSG_RESULT(no) ])
86+
87+if test "$af_have_libtirpc_ipv6" = "yes"; then
88+ AC_DEFINE(INET6,1, [Use IPv6 with libtirpc])
89+fi
90+
91+# restore flags
92+CFLAGS="$af_check_libtirpc_ipv6_save_cflags"
93+LDFLAGS="$af_check_libtirpc_ipv6_save_ldflags"
94+])
95+
96+dnl --------------------------------------------------------------------------
97+dnl AF_CHECK_LIBTIRPC
98+dnl
99+dnl Use libtirpc for rpc transport
100+dnl --------------------------------------------------------------------------
101+AC_DEFUN([AF_CHECK_LIBTIRPC],
102+[
103+# save current flags
104+af_check_libtirpc_save_cflags="$CFLAGS"
105+af_check_libtirpc_save_ldflags="$LDFLAGS"
106+CFLAGS="$CFLAGS -I/usr/include/tirpc"
107+LDFLAGS="$LDFLAGS -ltirpc"
108+
109+AC_TRY_LINK(
110+ [ #include <rpc/rpc.h> ],
111+ [ CLIENT *cl;
112+ struct sockaddr_in addr;
113+ int fd;
114+ unsigned long ul; struct timeval t; unsigned int ui;
115+ cl = clntudp_bufcreate(&addr,ul,ul,t,&fd,ui,ui); ],
116+ [ af_have_libtirpc=yes
117+ AC_MSG_RESULT(yes) ],
118+ [ AC_MSG_RESULT(no) ])
119+
120+if test "$af_have_libtirpc" = "yes"; then
121+ AC_DEFINE(TIRPC_WORKAROUND,1, [Use libtirpc tsd usage workaround])
122+ TIRPCLIB="-ltirpc"
123+fi
124+
125+# restore flags
126+CFLAGS="$af_check_libtirpc_save_cflags"
127+LDFLAGS="$af_check_libtirpc_save_ldflags"
128+])
129+
130+AC_DEFUN([AM_WITH_LIBTIRPC],
131+[AC_MSG_CHECKING([if libtirpc is requested and available])
132+AC_ARG_WITH(libtirpc,
133+[ --with-libtirpc use libtirpc if available],
134+[if test "$withval" = yes; then
135+ AF_CHECK_LIBTIRPC()
136+ AF_CHECK_LIBTIRPC_IPV6()
137+else
138+ AC_MSG_RESULT(no)
139+fi], [AC_MSG_RESULT(no)])
140+])
141+
142diff --git a/autofs.spec b/autofs.spec
143index 9fec583..f4b096e 100644
144--- a/autofs.spec
145+++ b/autofs.spec
146@@ -57,7 +57,7 @@ inkludera n
147 echo %{version}-%{release} > .version
148
149 %build
150-CFLAGS="$RPM_OPT_FLAGS -Wall" ./configure --libdir=%{_libdir} --disable-mount-locking --enable-ignore-busy
151+CFLAGS="$RPM_OPT_FLAGS -Wall" ./configure --libdir=%{_libdir} --disable-mount-locking --enable-ignore-busy --with-libtirpc
152 CFLAGS="$RPM_OPT_FLAGS -Wall" make initdir=/etc/rc.d/init.d DONTSTRIP=1
153
154 %install
155diff --git a/configure b/configure
156index afa692c..8a6d944 100755
157--- a/configure
158+++ b/configure
159@@ -656,6 +656,14 @@ confdir
160 mapdir
161 fifodir
162 flagdir
163+CC
164+CFLAGS
165+LDFLAGS
166+CPPFLAGS
167+ac_ct_CC
168+EXEEXT
169+OBJEXT
170+TIRPCLIB
171 DMALLOCLIB
172 MOUNT
173 HAVE_MOUNT
174@@ -676,13 +684,6 @@ PATH_RANLIB
175 RPCGEN
176 PATH_RPCGEN
177 XML_CONFIG
178-CC
179-CFLAGS
180-LDFLAGS
181-CPPFLAGS
182-ac_ct_CC
183-EXEEXT
184-OBJEXT
185 LIBNSL
186 LIBRESOLV
187 HAVE_HESIOD
188@@ -1297,6 +1298,7 @@ Optional Packages:
189 --with-mapdir=PATH look in PATH for mount maps used by the automounter
190 --with-fifodir=PATH use PATH as the directory for fifos used by the automounter
191 --with-flagdir=PATH use PATH as the directory for the flag file used by the automounter
192+ --with-libtirpc use libtirpc if available
193 --with-dmalloc use dmalloc, as in
194 http://www.dmalloc.com/dmalloc.tar.gz
195 --with-hesiod=DIR enable Hesiod support (libs and includes in DIR)
196@@ -1908,681 +1910,7 @@ echo "${ECHO_T}$flagdir" >&6; }
197
198
199 #
200-# Optional include dmalloc
201-#
202-{ echo "$as_me:$LINENO: checking if malloc debugging is wanted" >&5
203-echo $ECHO_N "checking if malloc debugging is wanted... $ECHO_C" >&6; }
204-
205-# Check whether --with-dmalloc was given.
206-if test "${with_dmalloc+set}" = set; then
207- withval=$with_dmalloc; if test "$withval" = yes; then
208- { echo "$as_me:$LINENO: result: yes" >&5
209-echo "${ECHO_T}yes" >&6; }
210-
211-cat >>confdefs.h <<\_ACEOF
212-#define WITH_DMALLOC 1
213-_ACEOF
214-
215- DMALLOCLIB="-ldmallocth"
216- LDFLAGS="$LDFLAGS -g"
217-else
218- { echo "$as_me:$LINENO: result: no" >&5
219-echo "${ECHO_T}no" >&6; }
220-fi
221-else
222- { echo "$as_me:$LINENO: result: no" >&5
223-echo "${ECHO_T}no" >&6; }
224-fi
225-
226-
227-
228-
229-#
230-# Programs needed for various system functions or modules
231-#
232-for ac_prog in mount
233-do
234- # Extract the first word of "$ac_prog", so it can be a program name with args.
235-set dummy $ac_prog; ac_word=$2
236-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
237-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
238-if test "${ac_cv_path_MOUNT+set}" = set; then
239- echo $ECHO_N "(cached) $ECHO_C" >&6
240-else
241- case $MOUNT in
242- [\\/]* | ?:[\\/]*)
243- ac_cv_path_MOUNT="$MOUNT" # Let the user override the test with a path.
244- ;;
245- *)
246- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
247-for as_dir in $searchpath
248-do
249- IFS=$as_save_IFS
250- test -z "$as_dir" && as_dir=.
251- for ac_exec_ext in '' $ac_executable_extensions; do
252- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
253- ac_cv_path_MOUNT="$as_dir/$ac_word$ac_exec_ext"
254- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
255- break 2
256- fi
257-done
258-done
259-IFS=$as_save_IFS
260-
261- ;;
262-esac
263-fi
264-MOUNT=$ac_cv_path_MOUNT
265-if test -n "$MOUNT"; then
266- { echo "$as_me:$LINENO: result: $MOUNT" >&5
267-echo "${ECHO_T}$MOUNT" >&6; }
268-else
269- { echo "$as_me:$LINENO: result: no" >&5
270-echo "${ECHO_T}no" >&6; }
271-fi
272-
273-
274- test -n "$MOUNT" && break
275-done
276-test -n "$MOUNT" || MOUNT="/bin/mount"
277-
278-if test -n "$MOUNT"; then
279-
280-cat >>confdefs.h <<\_ACEOF
281-#define HAVE_MOUNT 1
282-_ACEOF
283-
284-
285-cat >>confdefs.h <<_ACEOF
286-#define PATH_MOUNT "$MOUNT"
287-_ACEOF
288-
289- HAVE_MOUNT=1
290-else
291- HAVE_MOUNT=0
292-fi
293-
294-for ac_prog in umount
295-do
296- # Extract the first word of "$ac_prog", so it can be a program name with args.
297-set dummy $ac_prog; ac_word=$2
298-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
299-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
300-if test "${ac_cv_path_UMOUNT+set}" = set; then
301- echo $ECHO_N "(cached) $ECHO_C" >&6
302-else
303- case $UMOUNT in
304- [\\/]* | ?:[\\/]*)
305- ac_cv_path_UMOUNT="$UMOUNT" # Let the user override the test with a path.
306- ;;
307- *)
308- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
309-for as_dir in $searchpath
310-do
311- IFS=$as_save_IFS
312- test -z "$as_dir" && as_dir=.
313- for ac_exec_ext in '' $ac_executable_extensions; do
314- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
315- ac_cv_path_UMOUNT="$as_dir/$ac_word$ac_exec_ext"
316- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
317- break 2
318- fi
319-done
320-done
321-IFS=$as_save_IFS
322-
323- ;;
324-esac
325-fi
326-UMOUNT=$ac_cv_path_UMOUNT
327-if test -n "$UMOUNT"; then
328- { echo "$as_me:$LINENO: result: $UMOUNT" >&5
329-echo "${ECHO_T}$UMOUNT" >&6; }
330-else
331- { echo "$as_me:$LINENO: result: no" >&5
332-echo "${ECHO_T}no" >&6; }
333-fi
334-
335-
336- test -n "$UMOUNT" && break
337-done
338-test -n "$UMOUNT" || UMOUNT="/bin/umount"
339-
340-if test -n "$UMOUNT"; then
341-
342-cat >>confdefs.h <<\_ACEOF
343-#define HAVE_UMOUNT 1
344-_ACEOF
345-
346-
347-cat >>confdefs.h <<_ACEOF
348-#define PATH_UMOUNT "$UMOUNT"
349-_ACEOF
350-
351- HAVE_UMOUNT=1
352-else
353- HAVE_UMOUNT=0
354-fi
355-
356-for ac_prog in fsck.ext2 e2fsck
357-do
358- # Extract the first word of "$ac_prog", so it can be a program name with args.
359-set dummy $ac_prog; ac_word=$2
360-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
361-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
362-if test "${ac_cv_path_E2FSCK+set}" = set; then
363- echo $ECHO_N "(cached) $ECHO_C" >&6
364-else
365- case $E2FSCK in
366- [\\/]* | ?:[\\/]*)
367- ac_cv_path_E2FSCK="$E2FSCK" # Let the user override the test with a path.
368- ;;
369- *)
370- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
371-for as_dir in $searchpath
372-do
373- IFS=$as_save_IFS
374- test -z "$as_dir" && as_dir=.
375- for ac_exec_ext in '' $ac_executable_extensions; do
376- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
377- ac_cv_path_E2FSCK="$as_dir/$ac_word$ac_exec_ext"
378- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
379- break 2
380- fi
381-done
382-done
383-IFS=$as_save_IFS
384-
385- ;;
386-esac
387-fi
388-E2FSCK=$ac_cv_path_E2FSCK
389-if test -n "$E2FSCK"; then
390- { echo "$as_me:$LINENO: result: $E2FSCK" >&5
391-echo "${ECHO_T}$E2FSCK" >&6; }
392-else
393- { echo "$as_me:$LINENO: result: no" >&5
394-echo "${ECHO_T}no" >&6; }
395-fi
396-
397-
398- test -n "$E2FSCK" && break
399-done
400-
401-if test -n "$E2FSCK"; then
402-
403-cat >>confdefs.h <<\_ACEOF
404-#define HAVE_E2FSCK 1
405-_ACEOF
406-
407-
408-cat >>confdefs.h <<_ACEOF
409-#define PATH_E2FSCK "$E2FSCK"
410-_ACEOF
411-
412- HAVE_E2FSCK=1
413-else
414- HAVE_E2FSCK=0
415-fi
416-
417-for ac_prog in fsck.ext3 e3fsck
418-do
419- # Extract the first word of "$ac_prog", so it can be a program name with args.
420-set dummy $ac_prog; ac_word=$2
421-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
422-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
423-if test "${ac_cv_path_E3FSCK+set}" = set; then
424- echo $ECHO_N "(cached) $ECHO_C" >&6
425-else
426- case $E3FSCK in
427- [\\/]* | ?:[\\/]*)
428- ac_cv_path_E3FSCK="$E3FSCK" # Let the user override the test with a path.
429- ;;
430- *)
431- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
432-for as_dir in $searchpath
433-do
434- IFS=$as_save_IFS
435- test -z "$as_dir" && as_dir=.
436- for ac_exec_ext in '' $ac_executable_extensions; do
437- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
438- ac_cv_path_E3FSCK="$as_dir/$ac_word$ac_exec_ext"
439- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
440- break 2
441- fi
442-done
443-done
444-IFS=$as_save_IFS
445-
446- ;;
447-esac
448-fi
449-E3FSCK=$ac_cv_path_E3FSCK
450-if test -n "$E3FSCK"; then
451- { echo "$as_me:$LINENO: result: $E3FSCK" >&5
452-echo "${ECHO_T}$E3FSCK" >&6; }
453-else
454- { echo "$as_me:$LINENO: result: no" >&5
455-echo "${ECHO_T}no" >&6; }
456-fi
457-
458-
459- test -n "$E3FSCK" && break
460-done
461-
462-if test -n "$E3FSCK"; then
463-
464-cat >>confdefs.h <<\_ACEOF
465-#define HAVE_E3FSCK 1
466-_ACEOF
467-
468-
469-cat >>confdefs.h <<_ACEOF
470-#define PATH_E3FSCK "$E3FSCK"
471-_ACEOF
472-
473- HAVE_E3FSCK=1
474-else
475- HAVE_E3FSCK=0
476-fi
477-
478-for ac_prog in modprobe
479-do
480- # Extract the first word of "$ac_prog", so it can be a program name with args.
481-set dummy $ac_prog; ac_word=$2
482-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
483-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
484-if test "${ac_cv_path_MODPROBE+set}" = set; then
485- echo $ECHO_N "(cached) $ECHO_C" >&6
486-else
487- case $MODPROBE in
488- [\\/]* | ?:[\\/]*)
489- ac_cv_path_MODPROBE="$MODPROBE" # Let the user override the test with a path.
490- ;;
491- *)
492- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
493-for as_dir in $searchpath
494-do
495- IFS=$as_save_IFS
496- test -z "$as_dir" && as_dir=.
497- for ac_exec_ext in '' $ac_executable_extensions; do
498- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
499- ac_cv_path_MODPROBE="$as_dir/$ac_word$ac_exec_ext"
500- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
501- break 2
502- fi
503-done
504-done
505-IFS=$as_save_IFS
506-
507- ;;
508-esac
509-fi
510-MODPROBE=$ac_cv_path_MODPROBE
511-if test -n "$MODPROBE"; then
512- { echo "$as_me:$LINENO: result: $MODPROBE" >&5
513-echo "${ECHO_T}$MODPROBE" >&6; }
514-else
515- { echo "$as_me:$LINENO: result: no" >&5
516-echo "${ECHO_T}no" >&6; }
517-fi
518-
519-
520- test -n "$MODPROBE" && break
521-done
522-
523-if test -n "$MODPROBE"; then
524-
525-cat >>confdefs.h <<\_ACEOF
526-#define HAVE_MODPROBE 1
527-_ACEOF
528-
529-
530-cat >>confdefs.h <<_ACEOF
531-#define PATH_MODPROBE "$MODPROBE"
532-_ACEOF
533-
534- HAVE_MODPROBE=1
535-else
536- HAVE_MODPROBE=0
537-fi
538-
539-
540-for ac_prog in flex lex
541-do
542- # Extract the first word of "$ac_prog", so it can be a program name with args.
543-set dummy $ac_prog; ac_word=$2
544-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
545-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
546-if test "${ac_cv_path_LEX+set}" = set; then
547- echo $ECHO_N "(cached) $ECHO_C" >&6
548-else
549- case $LEX in
550- [\\/]* | ?:[\\/]*)
551- ac_cv_path_LEX="$LEX" # Let the user override the test with a path.
552- ;;
553- *)
554- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
555-for as_dir in $searchpath
556-do
557- IFS=$as_save_IFS
558- test -z "$as_dir" && as_dir=.
559- for ac_exec_ext in '' $ac_executable_extensions; do
560- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
561- ac_cv_path_LEX="$as_dir/$ac_word$ac_exec_ext"
562- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
563- break 2
564- fi
565-done
566-done
567-IFS=$as_save_IFS
568-
569- ;;
570-esac
571-fi
572-LEX=$ac_cv_path_LEX
573-if test -n "$LEX"; then
574- { echo "$as_me:$LINENO: result: $LEX" >&5
575-echo "${ECHO_T}$LEX" >&6; }
576-else
577- { echo "$as_me:$LINENO: result: no" >&5
578-echo "${ECHO_T}no" >&6; }
579-fi
580-
581-
582- test -n "$LEX" && break
583-done
584-
585-if test -n "$LEX"; then
586-
587-cat >>confdefs.h <<_ACEOF
588-#define PATH_LEX "$LEX"
589-_ACEOF
590-
591- PATH_LEX="$LEX"
592-else
593- { { echo "$as_me:$LINENO: error: required program LEX not found" >&5
594-echo "$as_me: error: required program LEX not found" >&2;}
595- { (exit 1); exit 1; }; }
596-fi
597-
598-for ac_prog in bison
599-do
600- # Extract the first word of "$ac_prog", so it can be a program name with args.
601-set dummy $ac_prog; ac_word=$2
602-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
603-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
604-if test "${ac_cv_path_YACC+set}" = set; then
605- echo $ECHO_N "(cached) $ECHO_C" >&6
606-else
607- case $YACC in
608- [\\/]* | ?:[\\/]*)
609- ac_cv_path_YACC="$YACC" # Let the user override the test with a path.
610- ;;
611- *)
612- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
613-for as_dir in $searchpath
614-do
615- IFS=$as_save_IFS
616- test -z "$as_dir" && as_dir=.
617- for ac_exec_ext in '' $ac_executable_extensions; do
618- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
619- ac_cv_path_YACC="$as_dir/$ac_word$ac_exec_ext"
620- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
621- break 2
622- fi
623-done
624-done
625-IFS=$as_save_IFS
626-
627- ;;
628-esac
629-fi
630-YACC=$ac_cv_path_YACC
631-if test -n "$YACC"; then
632- { echo "$as_me:$LINENO: result: $YACC" >&5
633-echo "${ECHO_T}$YACC" >&6; }
634-else
635- { echo "$as_me:$LINENO: result: no" >&5
636-echo "${ECHO_T}no" >&6; }
637-fi
638-
639-
640- test -n "$YACC" && break
641-done
642-
643-if test -n "$YACC"; then
644-
645-cat >>confdefs.h <<_ACEOF
646-#define PATH_YACC "$YACC"
647-_ACEOF
648-
649- PATH_YACC="$YACC"
650-else
651- { { echo "$as_me:$LINENO: error: required program YACC not found" >&5
652-echo "$as_me: error: required program YACC not found" >&2;}
653- { (exit 1); exit 1; }; }
654-fi
655-
656-for ac_prog in ranlib
657-do
658- # Extract the first word of "$ac_prog", so it can be a program name with args.
659-set dummy $ac_prog; ac_word=$2
660-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
661-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
662-if test "${ac_cv_path_RANLIB+set}" = set; then
663- echo $ECHO_N "(cached) $ECHO_C" >&6
664-else
665- case $RANLIB in
666- [\\/]* | ?:[\\/]*)
667- ac_cv_path_RANLIB="$RANLIB" # Let the user override the test with a path.
668- ;;
669- *)
670- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
671-for as_dir in $searchpath
672-do
673- IFS=$as_save_IFS
674- test -z "$as_dir" && as_dir=.
675- for ac_exec_ext in '' $ac_executable_extensions; do
676- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
677- ac_cv_path_RANLIB="$as_dir/$ac_word$ac_exec_ext"
678- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
679- break 2
680- fi
681-done
682-done
683-IFS=$as_save_IFS
684-
685- ;;
686-esac
687-fi
688-RANLIB=$ac_cv_path_RANLIB
689-if test -n "$RANLIB"; then
690- { echo "$as_me:$LINENO: result: $RANLIB" >&5
691-echo "${ECHO_T}$RANLIB" >&6; }
692-else
693- { echo "$as_me:$LINENO: result: no" >&5
694-echo "${ECHO_T}no" >&6; }
695-fi
696-
697-
698- test -n "$RANLIB" && break
699-done
700-
701-if test -n "$RANLIB"; then
702-
703-cat >>confdefs.h <<_ACEOF
704-#define PATH_RANLIB "$RANLIB"
705-_ACEOF
706-
707- PATH_RANLIB="$RANLIB"
708-else
709- { { echo "$as_me:$LINENO: error: required program RANLIB not found" >&5
710-echo "$as_me: error: required program RANLIB not found" >&2;}
711- { (exit 1); exit 1; }; }
712-fi
713-
714-for ac_prog in rpcgen
715-do
716- # Extract the first word of "$ac_prog", so it can be a program name with args.
717-set dummy $ac_prog; ac_word=$2
718-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
719-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
720-if test "${ac_cv_path_RPCGEN+set}" = set; then
721- echo $ECHO_N "(cached) $ECHO_C" >&6
722-else
723- case $RPCGEN in
724- [\\/]* | ?:[\\/]*)
725- ac_cv_path_RPCGEN="$RPCGEN" # Let the user override the test with a path.
726- ;;
727- *)
728- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
729-for as_dir in $searchpath
730-do
731- IFS=$as_save_IFS
732- test -z "$as_dir" && as_dir=.
733- for ac_exec_ext in '' $ac_executable_extensions; do
734- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
735- ac_cv_path_RPCGEN="$as_dir/$ac_word$ac_exec_ext"
736- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
737- break 2
738- fi
739-done
740-done
741-IFS=$as_save_IFS
742-
743- ;;
744-esac
745-fi
746-RPCGEN=$ac_cv_path_RPCGEN
747-if test -n "$RPCGEN"; then
748- { echo "$as_me:$LINENO: result: $RPCGEN" >&5
749-echo "${ECHO_T}$RPCGEN" >&6; }
750-else
751- { echo "$as_me:$LINENO: result: no" >&5
752-echo "${ECHO_T}no" >&6; }
753-fi
754-
755-
756- test -n "$RPCGEN" && break
757-done
758-
759-if test -n "$RPCGEN"; then
760-
761-cat >>confdefs.h <<_ACEOF
762-#define PATH_RPCGEN "$RPCGEN"
763-_ACEOF
764-
765- PATH_RPCGEN="$RPCGEN"
766-else
767- { { echo "$as_me:$LINENO: error: required program RPCGEN not found" >&5
768-echo "$as_me: error: required program RPCGEN not found" >&2;}
769- { (exit 1); exit 1; }; }
770-fi
771-
772-
773-#
774-# Newer mounts have the -s (sloppy) option to ignore unknown options,
775-# good for portability
776-#
777-if test -n "$MOUNT" ; then
778- { echo "$as_me:$LINENO: checking if mount accepts the -s option" >&5
779-echo $ECHO_N "checking if mount accepts the -s option... $ECHO_C" >&6; }
780- if "$MOUNT" -s > /dev/null 2>&1 ; then
781-
782-cat >>confdefs.h <<\_ACEOF
783-#define HAVE_SLOPPY_MOUNT 1
784-_ACEOF
785-
786- { echo "$as_me:$LINENO: result: yes" >&5
787-echo "${ECHO_T}yes" >&6; }
788- else
789- { echo "$as_me:$LINENO: result: no" >&5
790-echo "${ECHO_T}no" >&6; }
791- fi
792-fi
793-
794-# LDAP SASL auth need libxml
795-for ac_prog in xml2-config
796-do
797- # Extract the first word of "$ac_prog", so it can be a program name with args.
798-set dummy $ac_prog; ac_word=$2
799-{ echo "$as_me:$LINENO: checking for $ac_word" >&5
800-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
801-if test "${ac_cv_path_XML_CONFIG+set}" = set; then
802- echo $ECHO_N "(cached) $ECHO_C" >&6
803-else
804- case $XML_CONFIG in
805- [\\/]* | ?:[\\/]*)
806- ac_cv_path_XML_CONFIG="$XML_CONFIG" # Let the user override the test with a path.
807- ;;
808- *)
809- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
810-for as_dir in $PATH
811-do
812- IFS=$as_save_IFS
813- test -z "$as_dir" && as_dir=.
814- for ac_exec_ext in '' $ac_executable_extensions; do
815- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
816- ac_cv_path_XML_CONFIG="$as_dir/$ac_word$ac_exec_ext"
817- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
818- break 2
819- fi
820-done
821-done
822-IFS=$as_save_IFS
823-
824- ;;
825-esac
826-fi
827-XML_CONFIG=$ac_cv_path_XML_CONFIG
828-if test -n "$XML_CONFIG"; then
829- { echo "$as_me:$LINENO: result: $XML_CONFIG" >&5
830-echo "${ECHO_T}$XML_CONFIG" >&6; }
831-else
832- { echo "$as_me:$LINENO: result: no" >&5
833-echo "${ECHO_T}no" >&6; }
834-fi
835-
836-
837- test -n "$XML_CONFIG" && break
838-done
839-test -n "$XML_CONFIG" || XML_CONFIG="no"
840-
841-{ echo "$as_me:$LINENO: checking for libxml2" >&5
842-echo $ECHO_N "checking for libxml2... $ECHO_C" >&6; }
843-if test "$XML_CONFIG" = "no"
844-then
845- { echo "$as_me:$LINENO: result: no" >&5
846-echo "${ECHO_T}no" >&6; }
847- HAVE_LIBXML=0
848-else
849- { echo "$as_me:$LINENO: result: yes" >&5
850-echo "${ECHO_T}yes" >&6; }
851- HAVE_LIBXML=1
852- XML_LIBS=`$XML_CONFIG --libs`
853- XML_FLAGS=`$XML_CONFIG --cflags`
854- XML_VER=`$XML_CONFIG --version`
855- XML_MAJOR=`echo $XML_VER|cut -d\. -f1`
856- if test $XML_MAJOR -le 99
857- then
858- XML_MINOR=`echo $XML_VER|cut -d\. -f2`
859- if test $XML_MINOR -le 99
860- then
861- XML_REV=`echo $XML_VER|cut -d\. -f3`
862- if test $XML_REV -le 99; then
863-
864-cat >>confdefs.h <<\_ACEOF
865-#define LIBXML2_WORKAROUND 1
866-_ACEOF
867-
868- fi
869- fi
870- fi
871-fi
872-
873-#
874-# glibc/libc 6 new libraries
875+# Use libtirpc
876 #
877 ac_ext=c
878 ac_cpp='$CPP $CPPFLAGS'
879@@ -3504,6 +2832,845 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
880 ac_compiler_gnu=$ac_cv_c_compiler_gnu
881
882
883+{ echo "$as_me:$LINENO: checking if libtirpc is requested and available" >&5
884+echo $ECHO_N "checking if libtirpc is requested and available... $ECHO_C" >&6; }
885+
886+# Check whether --with-libtirpc was given.
887+if test "${with_libtirpc+set}" = set; then
888+ withval=$with_libtirpc; if test "$withval" = yes; then
889+
890+# save current flags
891+af_check_libtirpc_save_cflags="$CFLAGS"
892+af_check_libtirpc_save_ldflags="$LDFLAGS"
893+CFLAGS="$CFLAGS -I/usr/include/tirpc"
894+LDFLAGS="$LDFLAGS -ltirpc"
895+
896+cat >conftest.$ac_ext <<_ACEOF
897+/* confdefs.h. */
898+_ACEOF
899+cat confdefs.h >>conftest.$ac_ext
900+cat >>conftest.$ac_ext <<_ACEOF
901+/* end confdefs.h. */
902+ #include <rpc/rpc.h>
903+int
904+main ()
905+{
906+ CLIENT *cl;
907+ struct sockaddr_in addr;
908+ int fd;
909+ unsigned long ul; struct timeval t; unsigned int ui;
910+ cl = clntudp_bufcreate(&addr,ul,ul,t,&fd,ui,ui);
911+ ;
912+ return 0;
913+}
914+_ACEOF
915+rm -f conftest.$ac_objext conftest$ac_exeext
916+if { (ac_try="$ac_link"
917+case "(($ac_try" in
918+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
919+ *) ac_try_echo=$ac_try;;
920+esac
921+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
922+ (eval "$ac_link") 2>conftest.er1
923+ ac_status=$?
924+ grep -v '^ *+' conftest.er1 >conftest.err
925+ rm -f conftest.er1
926+ cat conftest.err >&5
927+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
928+ (exit $ac_status); } && {
929+ test -z "$ac_c_werror_flag" ||
930+ test ! -s conftest.err
931+ } && test -s conftest$ac_exeext &&
932+ $as_test_x conftest$ac_exeext; then
933+ af_have_libtirpc=yes
934+ { echo "$as_me:$LINENO: result: yes" >&5
935+echo "${ECHO_T}yes" >&6; }
936+else
937+ echo "$as_me: failed program was:" >&5
938+sed 's/^/| /' conftest.$ac_ext >&5
939+
940+ { echo "$as_me:$LINENO: result: no" >&5
941+echo "${ECHO_T}no" >&6; }
942+fi
943+
944+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
945+ conftest$ac_exeext conftest.$ac_ext
946+
947+if test "$af_have_libtirpc" = "yes"; then
948+
949+cat >>confdefs.h <<\_ACEOF
950+#define TIRPC_WORKAROUND 1
951+_ACEOF
952+
953+ TIRPCLIB="-ltirpc"
954+fi
955+
956+# restore flags
957+CFLAGS="$af_check_libtirpc_save_cflags"
958+LDFLAGS="$af_check_libtirpc_save_ldflags"
959+
960+ { echo "$as_me:$LINENO: checking if libtirpc has IPv6 support" >&5
961+echo $ECHO_N "checking if libtirpc has IPv6 support... $ECHO_C" >&6; }
962+
963+# save current flags
964+af_check_libtirpc_ipv6_save_cflags="$CFLAGS"
965+af_check_libtirpc_ipv6_save_ldflags="$LDFLAGS"
966+CFLAGS="$CFLAGS -I/usr/include/tirpc"
967+LDFLAGS="$LDFLAGS -ltirpc"
968+
969+cat >conftest.$ac_ext <<_ACEOF
970+/* confdefs.h. */
971+_ACEOF
972+cat confdefs.h >>conftest.$ac_ext
973+cat >>conftest.$ac_ext <<_ACEOF
974+/* end confdefs.h. */
975+ #define INET6
976+ #include <rpc/rpc.h>
977+int
978+main ()
979+{
980+ CLIENT *cl;
981+ struct sockaddr_in addr;
982+ int fd;
983+ unsigned long ul; struct timeval t; unsigned int ui;
984+ cl = clntudp6_bufcreate(&addr,ul,ul,t,&fd,ui,ui);
985+ ;
986+ return 0;
987+}
988+_ACEOF
989+rm -f conftest.$ac_objext conftest$ac_exeext
990+if { (ac_try="$ac_link"
991+case "(($ac_try" in
992+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
993+ *) ac_try_echo=$ac_try;;
994+esac
995+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
996+ (eval "$ac_link") 2>conftest.er1
997+ ac_status=$?
998+ grep -v '^ *+' conftest.er1 >conftest.err
999+ rm -f conftest.er1
1000+ cat conftest.err >&5
1001+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
1002+ (exit $ac_status); } && {
1003+ test -z "$ac_c_werror_flag" ||
1004+ test ! -s conftest.err
1005+ } && test -s conftest$ac_exeext &&
1006+ $as_test_x conftest$ac_exeext; then
1007+ af_have_libtirpc_ipv6=yes
1008+ { echo "$as_me:$LINENO: result: yes" >&5
1009+echo "${ECHO_T}yes" >&6; }
1010+else
1011+ echo "$as_me: failed program was:" >&5
1012+sed 's/^/| /' conftest.$ac_ext >&5
1013+
1014+ { echo "$as_me:$LINENO: result: no" >&5
1015+echo "${ECHO_T}no" >&6; }
1016+fi
1017+
1018+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
1019+ conftest$ac_exeext conftest.$ac_ext
1020+
1021+if test "$af_have_libtirpc_ipv6" = "yes"; then
1022+
1023+cat >>confdefs.h <<\_ACEOF
1024+#define INET6 1
1025+_ACEOF
1026+
1027+fi
1028+
1029+# restore flags
1030+CFLAGS="$af_check_libtirpc_ipv6_save_cflags"
1031+LDFLAGS="$af_check_libtirpc_ipv6_save_ldflags"
1032+
1033+else
1034+ { echo "$as_me:$LINENO: result: no" >&5
1035+echo "${ECHO_T}no" >&6; }
1036+fi
1037+else
1038+ { echo "$as_me:$LINENO: result: no" >&5
1039+echo "${ECHO_T}no" >&6; }
1040+fi
1041+
1042+
1043+
1044+
1045+#
1046+# Optional include dmalloc
1047+#
1048+{ echo "$as_me:$LINENO: checking if malloc debugging is wanted" >&5
1049+echo $ECHO_N "checking if malloc debugging is wanted... $ECHO_C" >&6; }
1050+
1051+# Check whether --with-dmalloc was given.
1052+if test "${with_dmalloc+set}" = set; then
1053+ withval=$with_dmalloc; if test "$withval" = yes; then
1054+ { echo "$as_me:$LINENO: result: yes" >&5
1055+echo "${ECHO_T}yes" >&6; }
1056+
1057+cat >>confdefs.h <<\_ACEOF
1058+#define WITH_DMALLOC 1
1059+_ACEOF
1060+
1061+ DMALLOCLIB="-ldmallocth"
1062+ LDFLAGS="$LDFLAGS -g"
1063+else
1064+ { echo "$as_me:$LINENO: result: no" >&5
1065+echo "${ECHO_T}no" >&6; }
1066+fi
1067+else
1068+ { echo "$as_me:$LINENO: result: no" >&5
1069+echo "${ECHO_T}no" >&6; }
1070+fi
1071+
1072+
1073+
1074+
1075+#
1076+# Programs needed for various system functions or modules
1077+#
1078+for ac_prog in mount
1079+do
1080+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1081+set dummy $ac_prog; ac_word=$2
1082+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1083+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1084+if test "${ac_cv_path_MOUNT+set}" = set; then
1085+ echo $ECHO_N "(cached) $ECHO_C" >&6
1086+else
1087+ case $MOUNT in
1088+ [\\/]* | ?:[\\/]*)
1089+ ac_cv_path_MOUNT="$MOUNT" # Let the user override the test with a path.
1090+ ;;
1091+ *)
1092+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1093+for as_dir in $searchpath
1094+do
1095+ IFS=$as_save_IFS
1096+ test -z "$as_dir" && as_dir=.
1097+ for ac_exec_ext in '' $ac_executable_extensions; do
1098+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1099+ ac_cv_path_MOUNT="$as_dir/$ac_word$ac_exec_ext"
1100+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1101+ break 2
1102+ fi
1103+done
1104+done
1105+IFS=$as_save_IFS
1106+
1107+ ;;
1108+esac
1109+fi
1110+MOUNT=$ac_cv_path_MOUNT
1111+if test -n "$MOUNT"; then
1112+ { echo "$as_me:$LINENO: result: $MOUNT" >&5
1113+echo "${ECHO_T}$MOUNT" >&6; }
1114+else
1115+ { echo "$as_me:$LINENO: result: no" >&5
1116+echo "${ECHO_T}no" >&6; }
1117+fi
1118+
1119+
1120+ test -n "$MOUNT" && break
1121+done
1122+test -n "$MOUNT" || MOUNT="/bin/mount"
1123+
1124+if test -n "$MOUNT"; then
1125+
1126+cat >>confdefs.h <<\_ACEOF
1127+#define HAVE_MOUNT 1
1128+_ACEOF
1129+
1130+
1131+cat >>confdefs.h <<_ACEOF
1132+#define PATH_MOUNT "$MOUNT"
1133+_ACEOF
1134+
1135+ HAVE_MOUNT=1
1136+else
1137+ HAVE_MOUNT=0
1138+fi
1139+
1140+for ac_prog in umount
1141+do
1142+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1143+set dummy $ac_prog; ac_word=$2
1144+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1145+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1146+if test "${ac_cv_path_UMOUNT+set}" = set; then
1147+ echo $ECHO_N "(cached) $ECHO_C" >&6
1148+else
1149+ case $UMOUNT in
1150+ [\\/]* | ?:[\\/]*)
1151+ ac_cv_path_UMOUNT="$UMOUNT" # Let the user override the test with a path.
1152+ ;;
1153+ *)
1154+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1155+for as_dir in $searchpath
1156+do
1157+ IFS=$as_save_IFS
1158+ test -z "$as_dir" && as_dir=.
1159+ for ac_exec_ext in '' $ac_executable_extensions; do
1160+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1161+ ac_cv_path_UMOUNT="$as_dir/$ac_word$ac_exec_ext"
1162+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1163+ break 2
1164+ fi
1165+done
1166+done
1167+IFS=$as_save_IFS
1168+
1169+ ;;
1170+esac
1171+fi
1172+UMOUNT=$ac_cv_path_UMOUNT
1173+if test -n "$UMOUNT"; then
1174+ { echo "$as_me:$LINENO: result: $UMOUNT" >&5
1175+echo "${ECHO_T}$UMOUNT" >&6; }
1176+else
1177+ { echo "$as_me:$LINENO: result: no" >&5
1178+echo "${ECHO_T}no" >&6; }
1179+fi
1180+
1181+
1182+ test -n "$UMOUNT" && break
1183+done
1184+test -n "$UMOUNT" || UMOUNT="/bin/umount"
1185+
1186+if test -n "$UMOUNT"; then
1187+
1188+cat >>confdefs.h <<\_ACEOF
1189+#define HAVE_UMOUNT 1
1190+_ACEOF
1191+
1192+
1193+cat >>confdefs.h <<_ACEOF
1194+#define PATH_UMOUNT "$UMOUNT"
1195+_ACEOF
1196+
1197+ HAVE_UMOUNT=1
1198+else
1199+ HAVE_UMOUNT=0
1200+fi
1201+
1202+for ac_prog in fsck.ext2 e2fsck
1203+do
1204+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1205+set dummy $ac_prog; ac_word=$2
1206+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1207+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1208+if test "${ac_cv_path_E2FSCK+set}" = set; then
1209+ echo $ECHO_N "(cached) $ECHO_C" >&6
1210+else
1211+ case $E2FSCK in
1212+ [\\/]* | ?:[\\/]*)
1213+ ac_cv_path_E2FSCK="$E2FSCK" # Let the user override the test with a path.
1214+ ;;
1215+ *)
1216+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1217+for as_dir in $searchpath
1218+do
1219+ IFS=$as_save_IFS
1220+ test -z "$as_dir" && as_dir=.
1221+ for ac_exec_ext in '' $ac_executable_extensions; do
1222+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1223+ ac_cv_path_E2FSCK="$as_dir/$ac_word$ac_exec_ext"
1224+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1225+ break 2
1226+ fi
1227+done
1228+done
1229+IFS=$as_save_IFS
1230+
1231+ ;;
1232+esac
1233+fi
1234+E2FSCK=$ac_cv_path_E2FSCK
1235+if test -n "$E2FSCK"; then
1236+ { echo "$as_me:$LINENO: result: $E2FSCK" >&5
1237+echo "${ECHO_T}$E2FSCK" >&6; }
1238+else
1239+ { echo "$as_me:$LINENO: result: no" >&5
1240+echo "${ECHO_T}no" >&6; }
1241+fi
1242+
1243+
1244+ test -n "$E2FSCK" && break
1245+done
1246+
1247+if test -n "$E2FSCK"; then
1248+
1249+cat >>confdefs.h <<\_ACEOF
1250+#define HAVE_E2FSCK 1
1251+_ACEOF
1252+
1253+
1254+cat >>confdefs.h <<_ACEOF
1255+#define PATH_E2FSCK "$E2FSCK"
1256+_ACEOF
1257+
1258+ HAVE_E2FSCK=1
1259+else
1260+ HAVE_E2FSCK=0
1261+fi
1262+
1263+for ac_prog in fsck.ext3 e3fsck
1264+do
1265+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1266+set dummy $ac_prog; ac_word=$2
1267+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1268+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1269+if test "${ac_cv_path_E3FSCK+set}" = set; then
1270+ echo $ECHO_N "(cached) $ECHO_C" >&6
1271+else
1272+ case $E3FSCK in
1273+ [\\/]* | ?:[\\/]*)
1274+ ac_cv_path_E3FSCK="$E3FSCK" # Let the user override the test with a path.
1275+ ;;
1276+ *)
1277+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1278+for as_dir in $searchpath
1279+do
1280+ IFS=$as_save_IFS
1281+ test -z "$as_dir" && as_dir=.
1282+ for ac_exec_ext in '' $ac_executable_extensions; do
1283+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1284+ ac_cv_path_E3FSCK="$as_dir/$ac_word$ac_exec_ext"
1285+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1286+ break 2
1287+ fi
1288+done
1289+done
1290+IFS=$as_save_IFS
1291+
1292+ ;;
1293+esac
1294+fi
1295+E3FSCK=$ac_cv_path_E3FSCK
1296+if test -n "$E3FSCK"; then
1297+ { echo "$as_me:$LINENO: result: $E3FSCK" >&5
1298+echo "${ECHO_T}$E3FSCK" >&6; }
1299+else
1300+ { echo "$as_me:$LINENO: result: no" >&5
1301+echo "${ECHO_T}no" >&6; }
1302+fi
1303+
1304+
1305+ test -n "$E3FSCK" && break
1306+done
1307+
1308+if test -n "$E3FSCK"; then
1309+
1310+cat >>confdefs.h <<\_ACEOF
1311+#define HAVE_E3FSCK 1
1312+_ACEOF
1313+
1314+
1315+cat >>confdefs.h <<_ACEOF
1316+#define PATH_E3FSCK "$E3FSCK"
1317+_ACEOF
1318+
1319+ HAVE_E3FSCK=1
1320+else
1321+ HAVE_E3FSCK=0
1322+fi
1323+
1324+for ac_prog in modprobe
1325+do
1326+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1327+set dummy $ac_prog; ac_word=$2
1328+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1329+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1330+if test "${ac_cv_path_MODPROBE+set}" = set; then
1331+ echo $ECHO_N "(cached) $ECHO_C" >&6
1332+else
1333+ case $MODPROBE in
1334+ [\\/]* | ?:[\\/]*)
1335+ ac_cv_path_MODPROBE="$MODPROBE" # Let the user override the test with a path.
1336+ ;;
1337+ *)
1338+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1339+for as_dir in $searchpath
1340+do
1341+ IFS=$as_save_IFS
1342+ test -z "$as_dir" && as_dir=.
1343+ for ac_exec_ext in '' $ac_executable_extensions; do
1344+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1345+ ac_cv_path_MODPROBE="$as_dir/$ac_word$ac_exec_ext"
1346+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1347+ break 2
1348+ fi
1349+done
1350+done
1351+IFS=$as_save_IFS
1352+
1353+ ;;
1354+esac
1355+fi
1356+MODPROBE=$ac_cv_path_MODPROBE
1357+if test -n "$MODPROBE"; then
1358+ { echo "$as_me:$LINENO: result: $MODPROBE" >&5
1359+echo "${ECHO_T}$MODPROBE" >&6; }
1360+else
1361+ { echo "$as_me:$LINENO: result: no" >&5
1362+echo "${ECHO_T}no" >&6; }
1363+fi
1364+
1365+
1366+ test -n "$MODPROBE" && break
1367+done
1368+
1369+if test -n "$MODPROBE"; then
1370+
1371+cat >>confdefs.h <<\_ACEOF
1372+#define HAVE_MODPROBE 1
1373+_ACEOF
1374+
1375+
1376+cat >>confdefs.h <<_ACEOF
1377+#define PATH_MODPROBE "$MODPROBE"
1378+_ACEOF
1379+
1380+ HAVE_MODPROBE=1
1381+else
1382+ HAVE_MODPROBE=0
1383+fi
1384+
1385+
1386+for ac_prog in flex lex
1387+do
1388+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1389+set dummy $ac_prog; ac_word=$2
1390+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1391+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1392+if test "${ac_cv_path_LEX+set}" = set; then
1393+ echo $ECHO_N "(cached) $ECHO_C" >&6
1394+else
1395+ case $LEX in
1396+ [\\/]* | ?:[\\/]*)
1397+ ac_cv_path_LEX="$LEX" # Let the user override the test with a path.
1398+ ;;
1399+ *)
1400+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1401+for as_dir in $searchpath
1402+do
1403+ IFS=$as_save_IFS
1404+ test -z "$as_dir" && as_dir=.
1405+ for ac_exec_ext in '' $ac_executable_extensions; do
1406+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1407+ ac_cv_path_LEX="$as_dir/$ac_word$ac_exec_ext"
1408+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1409+ break 2
1410+ fi
1411+done
1412+done
1413+IFS=$as_save_IFS
1414+
1415+ ;;
1416+esac
1417+fi
1418+LEX=$ac_cv_path_LEX
1419+if test -n "$LEX"; then
1420+ { echo "$as_me:$LINENO: result: $LEX" >&5
1421+echo "${ECHO_T}$LEX" >&6; }
1422+else
1423+ { echo "$as_me:$LINENO: result: no" >&5
1424+echo "${ECHO_T}no" >&6; }
1425+fi
1426+
1427+
1428+ test -n "$LEX" && break
1429+done
1430+
1431+if test -n "$LEX"; then
1432+
1433+cat >>confdefs.h <<_ACEOF
1434+#define PATH_LEX "$LEX"
1435+_ACEOF
1436+
1437+ PATH_LEX="$LEX"
1438+else
1439+ { { echo "$as_me:$LINENO: error: required program LEX not found" >&5
1440+echo "$as_me: error: required program LEX not found" >&2;}
1441+ { (exit 1); exit 1; }; }
1442+fi
1443+
1444+for ac_prog in bison
1445+do
1446+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1447+set dummy $ac_prog; ac_word=$2
1448+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1449+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1450+if test "${ac_cv_path_YACC+set}" = set; then
1451+ echo $ECHO_N "(cached) $ECHO_C" >&6
1452+else
1453+ case $YACC in
1454+ [\\/]* | ?:[\\/]*)
1455+ ac_cv_path_YACC="$YACC" # Let the user override the test with a path.
1456+ ;;
1457+ *)
1458+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1459+for as_dir in $searchpath
1460+do
1461+ IFS=$as_save_IFS
1462+ test -z "$as_dir" && as_dir=.
1463+ for ac_exec_ext in '' $ac_executable_extensions; do
1464+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1465+ ac_cv_path_YACC="$as_dir/$ac_word$ac_exec_ext"
1466+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1467+ break 2
1468+ fi
1469+done
1470+done
1471+IFS=$as_save_IFS
1472+
1473+ ;;
1474+esac
1475+fi
1476+YACC=$ac_cv_path_YACC
1477+if test -n "$YACC"; then
1478+ { echo "$as_me:$LINENO: result: $YACC" >&5
1479+echo "${ECHO_T}$YACC" >&6; }
1480+else
1481+ { echo "$as_me:$LINENO: result: no" >&5
1482+echo "${ECHO_T}no" >&6; }
1483+fi
1484+
1485+
1486+ test -n "$YACC" && break
1487+done
1488+
1489+if test -n "$YACC"; then
1490+
1491+cat >>confdefs.h <<_ACEOF
1492+#define PATH_YACC "$YACC"
1493+_ACEOF
1494+
1495+ PATH_YACC="$YACC"
1496+else
1497+ { { echo "$as_me:$LINENO: error: required program YACC not found" >&5
1498+echo "$as_me: error: required program YACC not found" >&2;}
1499+ { (exit 1); exit 1; }; }
1500+fi
1501+
1502+for ac_prog in ranlib
1503+do
1504+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1505+set dummy $ac_prog; ac_word=$2
1506+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1507+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1508+if test "${ac_cv_path_RANLIB+set}" = set; then
1509+ echo $ECHO_N "(cached) $ECHO_C" >&6
1510+else
1511+ case $RANLIB in
1512+ [\\/]* | ?:[\\/]*)
1513+ ac_cv_path_RANLIB="$RANLIB" # Let the user override the test with a path.
1514+ ;;
1515+ *)
1516+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1517+for as_dir in $searchpath
1518+do
1519+ IFS=$as_save_IFS
1520+ test -z "$as_dir" && as_dir=.
1521+ for ac_exec_ext in '' $ac_executable_extensions; do
1522+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1523+ ac_cv_path_RANLIB="$as_dir/$ac_word$ac_exec_ext"
1524+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1525+ break 2
1526+ fi
1527+done
1528+done
1529+IFS=$as_save_IFS
1530+
1531+ ;;
1532+esac
1533+fi
1534+RANLIB=$ac_cv_path_RANLIB
1535+if test -n "$RANLIB"; then
1536+ { echo "$as_me:$LINENO: result: $RANLIB" >&5
1537+echo "${ECHO_T}$RANLIB" >&6; }
1538+else
1539+ { echo "$as_me:$LINENO: result: no" >&5
1540+echo "${ECHO_T}no" >&6; }
1541+fi
1542+
1543+
1544+ test -n "$RANLIB" && break
1545+done
1546+
1547+if test -n "$RANLIB"; then
1548+
1549+cat >>confdefs.h <<_ACEOF
1550+#define PATH_RANLIB "$RANLIB"
1551+_ACEOF
1552+
1553+ PATH_RANLIB="$RANLIB"
1554+else
1555+ { { echo "$as_me:$LINENO: error: required program RANLIB not found" >&5
1556+echo "$as_me: error: required program RANLIB not found" >&2;}
1557+ { (exit 1); exit 1; }; }
1558+fi
1559+
1560+for ac_prog in rpcgen
1561+do
1562+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1563+set dummy $ac_prog; ac_word=$2
1564+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1565+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1566+if test "${ac_cv_path_RPCGEN+set}" = set; then
1567+ echo $ECHO_N "(cached) $ECHO_C" >&6
1568+else
1569+ case $RPCGEN in
1570+ [\\/]* | ?:[\\/]*)
1571+ ac_cv_path_RPCGEN="$RPCGEN" # Let the user override the test with a path.
1572+ ;;
1573+ *)
1574+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1575+for as_dir in $searchpath
1576+do
1577+ IFS=$as_save_IFS
1578+ test -z "$as_dir" && as_dir=.
1579+ for ac_exec_ext in '' $ac_executable_extensions; do
1580+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1581+ ac_cv_path_RPCGEN="$as_dir/$ac_word$ac_exec_ext"
1582+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1583+ break 2
1584+ fi
1585+done
1586+done
1587+IFS=$as_save_IFS
1588+
1589+ ;;
1590+esac
1591+fi
1592+RPCGEN=$ac_cv_path_RPCGEN
1593+if test -n "$RPCGEN"; then
1594+ { echo "$as_me:$LINENO: result: $RPCGEN" >&5
1595+echo "${ECHO_T}$RPCGEN" >&6; }
1596+else
1597+ { echo "$as_me:$LINENO: result: no" >&5
1598+echo "${ECHO_T}no" >&6; }
1599+fi
1600+
1601+
1602+ test -n "$RPCGEN" && break
1603+done
1604+
1605+if test -n "$RPCGEN"; then
1606+
1607+cat >>confdefs.h <<_ACEOF
1608+#define PATH_RPCGEN "$RPCGEN"
1609+_ACEOF
1610+
1611+ PATH_RPCGEN="$RPCGEN"
1612+else
1613+ { { echo "$as_me:$LINENO: error: required program RPCGEN not found" >&5
1614+echo "$as_me: error: required program RPCGEN not found" >&2;}
1615+ { (exit 1); exit 1; }; }
1616+fi
1617+
1618+
1619+#
1620+# Newer mounts have the -s (sloppy) option to ignore unknown options,
1621+# good for portability
1622+#
1623+if test -n "$MOUNT" ; then
1624+ { echo "$as_me:$LINENO: checking if mount accepts the -s option" >&5
1625+echo $ECHO_N "checking if mount accepts the -s option... $ECHO_C" >&6; }
1626+ if "$MOUNT" -s > /dev/null 2>&1 ; then
1627+
1628+cat >>confdefs.h <<\_ACEOF
1629+#define HAVE_SLOPPY_MOUNT 1
1630+_ACEOF
1631+
1632+ { echo "$as_me:$LINENO: result: yes" >&5
1633+echo "${ECHO_T}yes" >&6; }
1634+ else
1635+ { echo "$as_me:$LINENO: result: no" >&5
1636+echo "${ECHO_T}no" >&6; }
1637+ fi
1638+fi
1639+
1640+# LDAP SASL auth need libxml
1641+for ac_prog in xml2-config
1642+do
1643+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1644+set dummy $ac_prog; ac_word=$2
1645+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
1646+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
1647+if test "${ac_cv_path_XML_CONFIG+set}" = set; then
1648+ echo $ECHO_N "(cached) $ECHO_C" >&6
1649+else
1650+ case $XML_CONFIG in
1651+ [\\/]* | ?:[\\/]*)
1652+ ac_cv_path_XML_CONFIG="$XML_CONFIG" # Let the user override the test with a path.
1653+ ;;
1654+ *)
1655+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1656+for as_dir in $PATH
1657+do
1658+ IFS=$as_save_IFS
1659+ test -z "$as_dir" && as_dir=.
1660+ for ac_exec_ext in '' $ac_executable_extensions; do
1661+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
1662+ ac_cv_path_XML_CONFIG="$as_dir/$ac_word$ac_exec_ext"
1663+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
1664+ break 2
1665+ fi
1666+done
1667+done
1668+IFS=$as_save_IFS
1669+
1670+ ;;
1671+esac
1672+fi
1673+XML_CONFIG=$ac_cv_path_XML_CONFIG
1674+if test -n "$XML_CONFIG"; then
1675+ { echo "$as_me:$LINENO: result: $XML_CONFIG" >&5
1676+echo "${ECHO_T}$XML_CONFIG" >&6; }
1677+else
1678+ { echo "$as_me:$LINENO: result: no" >&5
1679+echo "${ECHO_T}no" >&6; }
1680+fi
1681+
1682+
1683+ test -n "$XML_CONFIG" && break
1684+done
1685+test -n "$XML_CONFIG" || XML_CONFIG="no"
1686+
1687+{ echo "$as_me:$LINENO: checking for libxml2" >&5
1688+echo $ECHO_N "checking for libxml2... $ECHO_C" >&6; }
1689+if test "$XML_CONFIG" = "no"
1690+then
1691+ { echo "$as_me:$LINENO: result: no" >&5
1692+echo "${ECHO_T}no" >&6; }
1693+ HAVE_LIBXML=0
1694+else
1695+ { echo "$as_me:$LINENO: result: yes" >&5
1696+echo "${ECHO_T}yes" >&6; }
1697+ HAVE_LIBXML=1
1698+ XML_LIBS=`$XML_CONFIG --libs`
1699+ XML_FLAGS=`$XML_CONFIG --cflags`
1700+ XML_VER=`$XML_CONFIG --version`
1701+ XML_MAJOR=`echo $XML_VER|cut -d\. -f1`
1702+ if test $XML_MAJOR -le 99
1703+ then
1704+ XML_MINOR=`echo $XML_VER|cut -d\. -f2`
1705+ if test $XML_MINOR -le 99
1706+ then
1707+ XML_REV=`echo $XML_VER|cut -d\. -f3`
1708+ if test $XML_REV -le 99; then
1709+
1710+cat >>confdefs.h <<\_ACEOF
1711+#define LIBXML2_WORKAROUND 1
1712+_ACEOF
1713+
1714+ fi
1715+ fi
1716+ fi
1717+fi
1718+
1719+#
1720+# glibc/libc 6 new libraries
1721+#
1722 { echo "$as_me:$LINENO: checking for yp_match in -lnsl" >&5
1723 echo $ECHO_N "checking for yp_match in -lnsl... $ECHO_C" >&6; }
1724 if test "${ac_cv_lib_nsl_yp_match+set}" = set; then
1725@@ -6280,6 +6447,14 @@ confdir!$confdir$ac_delim
1726 mapdir!$mapdir$ac_delim
1727 fifodir!$fifodir$ac_delim
1728 flagdir!$flagdir$ac_delim
1729+CC!$CC$ac_delim
1730+CFLAGS!$CFLAGS$ac_delim
1731+LDFLAGS!$LDFLAGS$ac_delim
1732+CPPFLAGS!$CPPFLAGS$ac_delim
1733+ac_ct_CC!$ac_ct_CC$ac_delim
1734+EXEEXT!$EXEEXT$ac_delim
1735+OBJEXT!$OBJEXT$ac_delim
1736+TIRPCLIB!$TIRPCLIB$ac_delim
1737 DMALLOCLIB!$DMALLOCLIB$ac_delim
1738 MOUNT!$MOUNT$ac_delim
1739 HAVE_MOUNT!$HAVE_MOUNT$ac_delim
1740@@ -6300,13 +6475,6 @@ PATH_RANLIB!$PATH_RANLIB$ac_delim
1741 RPCGEN!$RPCGEN$ac_delim
1742 PATH_RPCGEN!$PATH_RPCGEN$ac_delim
1743 XML_CONFIG!$XML_CONFIG$ac_delim
1744-CC!$CC$ac_delim
1745-CFLAGS!$CFLAGS$ac_delim
1746-LDFLAGS!$LDFLAGS$ac_delim
1747-CPPFLAGS!$CPPFLAGS$ac_delim
1748-ac_ct_CC!$ac_ct_CC$ac_delim
1749-EXEEXT!$EXEEXT$ac_delim
1750-OBJEXT!$OBJEXT$ac_delim
1751 LIBNSL!$LIBNSL$ac_delim
1752 LIBRESOLV!$LIBRESOLV$ac_delim
1753 HAVE_HESIOD!$HAVE_HESIOD$ac_delim
1754@@ -6330,7 +6498,7 @@ LIBOBJS!$LIBOBJS$ac_delim
1755 LTLIBOBJS!$LTLIBOBJS$ac_delim
1756 _ACEOF
1757
1758- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 90; then
1759+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 91; then
1760 break
1761 elif $ac_last_try; then
1762 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
1763diff --git a/configure.in b/configure.in
1764index 423f213..d09a2b6 100644
1765--- a/configure.in
1766+++ b/configure.in
1767@@ -113,6 +113,12 @@ AC_MSG_RESULT([$flagdir])
1768 AC_SUBST(flagdir)
1769
1770 #
1771+# Use libtirpc
1772+#
1773+AM_WITH_LIBTIRPC()
1774+AC_SUBST(TIRPCLIB)
1775+
1776+#
1777 # Optional include dmalloc
1778 #
1779 AM_WITH_DMALLOC()
1780diff --git a/daemon/automount.c b/daemon/automount.c
1781index 269fc5b..1ec686b 100644
1782--- a/daemon/automount.c
1783+++ b/daemon/automount.c
1784@@ -2057,7 +2057,10 @@ int main(int argc, char *argv[])
1785 }
1786
1787 #ifdef LIBXML2_WORKAROUND
1788- void *dh = dlopen("libxml2.so", RTLD_NOW);
1789+ void *dh_xml2 = dlopen("libxml2.so", RTLD_NOW);
1790+#endif
1791+#ifdef TIRPC_WORKAROUND
1792+ void *dh_tirpc = dlopen("libitirpc.so", RTLD_NOW);
1793 #endif
1794
1795 if (!master_read_master(master_list, age, 0)) {
1796@@ -2090,9 +2093,13 @@ int main(int argc, char *argv[])
1797 closelog();
1798 release_flag_file();
1799
1800+#ifdef TIRPC_WORKAROUND
1801+ if (dh_tirpc)
1802+ dlclose(dh_tirpc);
1803+#endif
1804 #ifdef LIBXML2_WORKAROUND
1805- if (dh)
1806- dlclose(dh);
1807+ if (dh_xml2)
1808+ dlclose(dh_xml2);
1809 #endif
1810 close_ioctl_ctl();
1811
1812diff --git a/include/config.h.in b/include/config.h.in
1813index d8f1747..31b0d75 100644
1814--- a/include/config.h.in
1815+++ b/include/config.h.in
1816@@ -66,6 +66,9 @@
1817 /* Define to 1 if you have the <unistd.h> header file. */
1818 #undef HAVE_UNISTD_H
1819
1820+/* Use IPv6 with libtirpc */
1821+#undef INET6
1822+
1823 /* Use libxml2 tsd usage workaround */
1824 #undef LIBXML2_WORKAROUND
1825
1826@@ -114,6 +117,9 @@
1827 /* Define to 1 if you have the ANSI C header files. */
1828 #undef STDC_HEADERS
1829
1830+/* Use libtirpc tsd usage workaround */
1831+#undef TIRPC_WORKAROUND
1832+
1833 /* Define if using the dmalloc debugging malloc package */
1834 #undef WITH_DMALLOC
1835
This page took 4.066441 seconds and 4 git commands to generate.