IRIX: Implement makesname()
[openafs.git] / acinclude.m4
1 dnl This file contains the common configuration code which would
2 dnl otherwise be duplicated between configure and configure-libafs.
3 dnl
4 dnl NB: Because this code is a macro, references to positional shell
5 dnl parameters must be done like $[]1 instead of $1
6
7 AC_DEFUN([OPENAFS_CONFIGURE_COMMON],[
8 AH_BOTTOM([
9 #undef HAVE_RES_SEARCH
10 #undef STRUCT_SOCKADDR_HAS_SA_LEN
11 #if !defined(__BIG_ENDIAN__) && !defined(__LITTLE_ENDIAN__)
12 # if ENDIANESS_IN_SYS_PARAM_H
13 #  ifndef KERNEL
14 #   include <sys/types.h>
15 #   include <sys/param.h>
16 #   if BYTE_ORDER == BIG_ENDIAN
17 #   define WORDS_BIGENDIAN 1
18 #   endif
19 #  else
20 #   if defined(AUTOCONF_FOUND_BIGENDIAN)
21 #    define WORDS_BIGENDIAN 1
22 #   else
23 #    undef WORDS_BIGENDIAN
24 #   endif
25 #  endif
26 # else
27 #  if defined(AUTOCONF_FOUND_BIGENDIAN)
28 #   define WORDS_BIGENDIAN 1
29 #  else
30 #   undef WORDS_BIGENDIAN
31 #  endif
32 # endif
33 #else
34 # if defined(__BIG_ENDIAN__)
35 #  define WORDS_BIGENDIAN 1
36 # else
37 #  undef WORDS_BIGENDIAN
38 # endif
39 #endif
40 #ifdef UKERNEL
41 /*
42  * Always use 64-bit file offsets for UKERNEL code. Needed for UKERNEL stuff to
43  * play nice with some other interfaces like FUSE. We technically only would
44  * need to define this when building for such interfaces, but set it always to
45  * try and reduce potential confusion. 
46  */
47 #define _FILE_OFFSET_BITS 64
48 #define AFS_CACHE_VNODE_PATH
49 #endif
50
51 #undef AFS_NAMEI_ENV
52 #undef BITMAP_LATER
53 #undef FAST_RESTART
54 #undef DEFINED_FOR_EACH_PROCESS
55 #undef DEFINED_PREV_TASK
56 #undef EXPORTED_SYS_CALL_TABLE
57 #undef EXPORTED_IA32_SYS_CALL_TABLE
58 #undef IRIX_HAS_MEM_FUNCS
59 #undef RECALC_SIGPENDING_TAKES_VOID
60 #undef STRUCT_FS_HAS_FS_ROLLED
61 #undef ssize_t
62 #undef HAVE_ARPA_NAMESER_COMPAT_H
63 /* glue for RedHat kernel bug */
64 #undef ENABLE_REDHAT_BUILDSYS
65 #if defined(ENABLE_REDHAT_BUILDSYS) && defined(KERNEL) && defined(REDHAT_FIX)
66 #include "redhat-fix.h"
67 #endif])
68
69 AC_CANONICAL_HOST
70 SRCDIR_PARENT=`pwd`
71
72 #BOZO_SAVE_CORES pam
73
74 dnl System identity.
75 AC_ARG_WITH([afs-sysname],
76     [AS_HELP_STRING([--with-afs-sysname=sys], [use sys for the afs sysname])])
77
78 dnl General feature options.
79 AC_ARG_ENABLE([pam],
80     [AS_HELP_STRING([--disable-pam], [disable PAM support])],
81     ,
82     [enable_pam="yes"])
83 AC_ARG_ENABLE([namei-fileserver],
84     [AS_HELP_STRING([--enable-namei-fileserver],
85         [force compilation of namei fileserver in preference to inode
86          fileserver])],
87     , 
88     [enable_namei_fileserver="default"])
89 AC_ARG_ENABLE([cache-bypass],
90     [AS_HELP_STRING([--enable-cache-bypass],
91         [enable client support for cache bypass])],
92     , 
93     [enable_cache_bypass="no"])
94 AC_ARG_ENABLE([supergroups],
95     [AS_HELP_STRING([--enable-supergroups],
96         [enable support for nested pts groups])],
97     , 
98     [enable_supergroups="no"])
99 AC_ARG_ENABLE([fast-restart],
100     [AS_HELP_STRING([--enable-fast-restart],
101         [enable fast startup of file server without salvaging])],
102     , 
103     [enable_fast_restart="no"])
104 AC_ARG_ENABLE([bitmap-later],
105     [AS_HELP_STRING([--enable-bitmap-later],
106         [enable fast startup of file server by not reading bitmap till
107          needed])],
108     , 
109     [enable_bitmap_later="no"])
110 AC_ARG_ENABLE([demand-attach-fs],
111     [AS_HELP_STRING([--enable-demand-attach-fs],
112         [enable Demand Attach Fileserver (please see documentation)])],
113     , 
114     [enable_demand_attach_fs="no"])
115 AC_ARG_ENABLE([disconnected],
116     [AS_HELP_STRING([--enable-disconnected],
117         [enable disconnected support in cache manager (experimental)])],
118     , 
119     [enable_disconnected="no"])
120 AC_ARG_ENABLE([unix-sockets],
121     [AS_HELP_STRING([--enable-unix-sockets],
122         [enable use of unix domain sockets for fssync])],
123     ,
124     [enable_unix_sockets="yes"])
125 AC_ARG_ENABLE([icmp-pmtu-discovery],
126     [AS_HELP_STRING([--enable-icmp-pmtu-discovery],
127         [enable path MTU discovery by decoding ICMP unreachable replies])],
128     , 
129     [enable_icmp_pmtu_discovery="no"])
130 AC_ARG_ENABLE([tivoli-tsm],
131     [AS_HELP_STRING([--enable-tivoli-tsm],
132         [enable use of the Tivoli TSM API libraries for butc support])],
133     , 
134     [enable_tivoli_tsm="no"])
135 AC_ARG_ENABLE([pthreaded-ubik],
136     [AS_HELP_STRING([--enable-pthreaded-ubik],
137         [enable installation of pthreaded ubik applications (defaults to
138          disabled)])],
139     ,
140     [enable_pthreaded_ubik="no"])
141
142 dnl Kernel module build options.
143 AC_ARG_WITH([dux-kernel-headers],
144     [AS_HELP_STRING([--with-dux-kernel-headers=path],
145         [use the kernel headers found at path (optional, defaults to first
146          match in /usr/sys)])])
147 AC_ARG_WITH([linux-kernel-headers],
148     [AS_HELP_STRING([--with-linux-kernel-headers=path],
149         [use the kernel headers found at path (optional, defaults to
150          /usr/src/linux-2.4, then /usr/src/linux)])])
151 AC_ARG_WITH([linux-kernel-build],
152     [AS_HELP_STRING([--with-linux-kernel-build=path],
153         [use the kernel build found at path(optional, defaults to 
154         /usr/src/linux-2.4, then /usr/src/linux)])])
155 AC_ARG_WITH([bsd-kernel-headers],
156     [AS_HELP_STRING([--with-bsd-kernel-headers=path],
157         [use the kernel headers found at path (optional, defaults to
158          /usr/src/sys)])])
159 AC_ARG_WITH([bsd-kernel-build],
160     [AS_HELP_STRING([--with-bsd-kernel-build=path], 
161         [use the kernel build found at path (optional, defaults to
162          KSRC/i386/compile/GENERIC)])])
163 AC_ARG_WITH([linux-kernel-packaging],
164     [AS_HELP_STRING([--with-linux-kernel-packaging],
165         [use standard naming conventions to aid Linux kernel build packaging
166          (disables MPS, sets the kernel module name to openafs.ko, and
167          installs kernel modules into the standard Linux location)])],
168     [AC_SUBST(LINUX_KERNEL_PACKAGING, "yes")
169      AC_SUBST(LINUX_LIBAFS_NAME, "openafs")],
170     [AC_SUBST(LINUX_LIBAFS_NAME, "libafs")])
171 AC_ARG_ENABLE([kernel-module],
172     [AS_HELP_STRING([--disable-kernel-module],
173         [disable compilation of the kernel module (defaults to enabled)])],
174     , 
175     [enable_kernel_module="yes"])
176 AC_ARG_ENABLE([redhat-buildsys],
177     [AS_HELP_STRING([--enable-redhat-buildsys],
178         [enable compilation of the redhat build system kernel (defaults to
179          disabled)])],
180     ,
181     [enable_redhat_buildsys="no"])
182
183 dnl Installation locations.
184 AC_ARG_ENABLE([transarc-paths],
185     [AS_HELP_STRING([--enable-transarc-paths],
186         [use Transarc style paths like /usr/afs and /usr/vice])],
187     , 
188     [enable_transarc_paths="no"])
189
190 dnl Optimization and debugging flags.
191 AC_ARG_ENABLE([strip-binaries],
192     [AS_HELP_STRING([--disable-strip-binaries],
193         [disable stripping of symbol information from binaries (defaults to
194          enabled)])],
195     ,
196     [enable_strip_binaries="maybe"])
197 AC_ARG_ENABLE([debug],
198     [AS_HELP_STRING([--enable-debug],
199         [enable compilation of the user space code with debugging information
200          (defaults to disabled)])],
201     , 
202     [enable_debug="no"])
203 AC_ARG_ENABLE([optimize],
204     [AS_HELP_STRING([--disable-optimize],
205         [disable optimization for compilation of the user space code (defaults
206          to enabled)])],
207     , 
208     [enable_optimize="yes"])
209 AC_ARG_ENABLE([warnings],
210     [AS_HELP_STRING([--enable-warnings],
211         [enable compilation warnings when building with gcc (defaults to
212          disabled)])],
213     ,
214     [enable_warnings="no"])
215 AC_ARG_ENABLE([checking],
216     [AS_HELP_STRING([--enable-checking],
217         [turn compilation warnings into errors when building with gcc (defaults
218          to disabled)])],
219     [enable_checking="$enableval"],
220     [enable_checking="no"])
221 AC_ARG_ENABLE([debug-kernel],
222     [AS_HELP_STRING([--enable-debug-kernel],
223         [enable compilation of the kernel module with debugging information
224          (defaults to disabled)])],
225     ,
226     [enable_debug_kernel="no"])
227 AC_ARG_ENABLE([optimize-kernel],
228     [AS_HELP_STRING([--disable-optimize-kernel],
229         [disable compilation of the kernel module with optimization (defaults
230          based on platform)])],
231     , 
232     [enable_optimize_kernel="yes"])
233 AC_ARG_ENABLE([debug-lwp],
234     [AS_HELP_STRING([--enable-debug-lwp],
235         [enable compilation of the LWP code with debugging information
236          (defaults to disabled)])],
237     ,
238     [enable_debug_lwp="no"])
239 AC_ARG_ENABLE([optimize-lwp],
240     [AS_HELP_STRING([--disable-optimize-lwp],
241         [disable optimization for compilation of the LWP code (defaults to
242          enabled)])],
243     ,
244     [enable_optimize_lwp="yes"])
245 AC_ARG_ENABLE([debug-pam],
246     [AS_HELP_STRING([--enable-debug-pam],
247         [enable compilation of the PAM code with debugging information
248          (defaults to disabled)])],
249     ,
250     [enable_debug_pam="no"])
251 AC_ARG_ENABLE([optimize-pam],
252     [AS_HELP_STRING([--disable-optimize-pam],
253         [disable optimization for compilation of the PAM code (defaults to
254          enabled)])],
255     ,
256     [enable_optimize_pam="yes"])
257 AC_ARG_ENABLE([linux-syscall-probing],
258     [AS_HELP_STRING([--enable-linux-syscall-probing],
259         [enable Linux syscall probing (defaults to autodetect)])],
260     ,
261     [enable_linux_syscall_probing="maybe"])
262     
263
264 AC_ARG_WITH([xslt-processor],
265         AS_HELP_STRING([--with-xslt-processor=ARG],
266         [which XSLT processor to use (possible choices are: libxslt, saxon, xalan-j, xsltproc)]),
267         XSLTPROC="$withval",
268         XSLTPROC="libxslt")
269
270 AC_ARG_WITH([html-xsl], 
271         AS_HELP_STRING([--with-html-xsl],
272         [build HTML documentation using Norman Walsh's DocBook XSL stylesheets (default is no; specify a path to chunk.xsl or docbook.xsl)]),
273         HTML_XSL="$withval",
274         HTML_XSL=no)
275
276 enable_login="no"
277
278 dnl weird ass systems
279 dnl AC_AIX
280 AC_ISC_POSIX
281 dnl AC_MINIX
282
283 dnl Various compiler setup.
284 AC_TYPE_PID_T
285 AC_TYPE_SIZE_T
286
287 dnl Checks for programs.
288 AC_PROG_INSTALL
289 AC_PROG_LN_S
290 AC_PROG_RANLIB
291 AC_PROG_YACC
292 AM_PROG_LEX
293
294 OPENAFS_CHECK_BIGENDIAN
295 OPENAFS_PRINTF_TAKES_Z_LEN
296
297 AC_MSG_CHECKING(your OS)
298 system=$host
299 case $system in
300         *-linux*)
301
302                 MKAFS_OSTYPE=LINUX
303                 if test "x$enable_redhat_buildsys" = "xyes"; then
304                  AC_DEFINE(ENABLE_REDHAT_BUILDSYS, 1, [define if you have redhat buildsystem])
305                 fi
306                 if test "x$enable_kernel_module" = "xyes"; then
307                  if test "x$with_linux_kernel_headers" != "x"; then
308                    LINUX_KERNEL_PATH="$with_linux_kernel_headers"
309                  else
310                    LINUX_KERNEL_PATH="/lib/modules/`uname -r`/source"
311                    if test ! -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then
312                      LINUX_KERNEL_PATH="/lib/modules/`uname -r`/build"
313                    fi
314                    if test ! -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then
315                      LINUX_KERNEL_PATH="/usr/src/linux-2.4"
316                    fi
317                    if test ! -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then
318                      LINUX_KERNEL_PATH="/usr/src/linux"
319                    fi
320                  fi
321                  if test "x$with_linux_kernel_build" != "x"; then
322                          LINUX_KERNEL_BUILD="$with_linux_kernel_build"
323                  else
324                    LINUX_KERNEL_BUILD=$LINUX_KERNEL_PATH
325                  fi
326                  if test -f "$LINUX_KERNEL_BUILD/include/generated/utsrelease.h"; then
327                    linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/generated/utsrelease.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
328                    LINUX_VERSION="$linux_kvers"
329                  else
330                    if test -f "$LINUX_KERNEL_BUILD/include/linux/utsrelease.h"; then
331                      linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/linux/utsrelease.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
332                      LINUX_VERSION="$linux_kvers"
333                    else
334                      if test -f "$LINUX_KERNEL_BUILD/include/linux/version.h"; then
335                        linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/linux/version.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
336                        if test "x$linux_kvers" = "x"; then
337                          if test -f "$LINUX_KERNEL_BUILD/include/linux/version-up.h"; then
338                            linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/linux/version-up.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
339                            if test "x$linux_kvers" = "x"; then
340                              AC_MSG_ERROR(Linux headers lack version definition [2])
341                              exit 1
342                            else
343                              LINUX_VERSION="$linux_kvers"
344                            fi
345                          else
346                            AC_MSG_ERROR(Linux headers lack version definition)
347                            exit 1
348                          fi
349                        else
350                          LINUX_VERSION="$linux_kvers"
351                        fi
352                      else
353                        enable_kernel_module="no"
354                      fi
355                    fi
356                  fi
357                  if test ! -f "$LINUX_KERNEL_BUILD/include/generated/autoconf.h" &&
358                     test ! -f "$LINUX_KERNEL_BUILD/include/linux/autoconf.h"; then
359                      enable_kernel_module="no"
360                  fi
361                  if test "x$enable_kernel_module" = "xno"; then
362                   if test "x$with_linux_kernel_headers" != "x"; then
363                    AC_MSG_ERROR(No usable linux headers found at $LINUX_KERNEL_PATH)
364                    exit 1
365                   else
366                    AC_MSG_WARN(No usable linux headers found at $LINUX_KERNEL_PATH so disabling kernel module)
367                   fi
368                  fi
369                  dnl do we need to determine SUBARCH from autoconf.h
370                  SUBARCH=default
371                 fi
372                 AC_MSG_RESULT(linux)
373                 if test "x$enable_kernel_module" = "xyes"; then
374                  AFS_SYSKVERS=`echo $LINUX_VERSION | awk -F\. '{print $[]1 $[]2}'`
375                  if test "x${AFS_SYSKVERS}" = "x"; then
376                   AC_MSG_ERROR(Couldn't guess your Linux version [2])
377                  fi
378                 fi
379                 ;;
380         *-solaris*)
381                 MKAFS_OSTYPE=SOLARIS
382                 AC_MSG_RESULT(sun4)
383                 AC_PATH_PROG(SOLARISCC, [cc], ,
384                     [/opt/SUNWspro/bin:/opt/SunStudioExpress/bin])
385                 SOLARIS_UFSVFS_HAS_DQRWLOCK
386                 SOLARIS_FS_HAS_FS_ROLLED
387                 SOLARIS_SOLOOKUP_TAKES_SOCKPARAMS
388                 ;;
389         *-sunos*)
390                 MKAFS_OSTYPE=SUNOS
391                 enable_kernel_module=no
392                 AC_MSG_RESULT(sun4)
393                 ;;
394         *-hpux*)
395                 MKAFS_OSTYPE=HPUX
396                 AC_MSG_RESULT(hp_ux)
397                 if test -f "/usr/old/usr/include/ndir.h"; then
398                  AC_DEFINE(HAVE_USR_OLD_USR_INCLUDE_NDIR_H, 1, [define if you have old ndir.h])
399                 fi
400                 ;;
401         *-irix*)
402                 if test -d /usr/include/sys/SN/SN1; then
403                  IRIX_BUILD_IP35="IP35"
404                 fi
405                 MKAFS_OSTYPE=IRIX
406                 AC_MSG_RESULT(sgi)
407                 ;;
408         *-aix*)
409                 MKAFS_OSTYPE=AIX
410                 AC_MSG_RESULT(rs_aix)
411                 ;;
412         *-osf*)
413                 MKAFS_OSTYPE=DUX
414                 AC_MSG_RESULT(alpha_dux)
415                 ;;
416         arm-*-darwin*)
417                 MKAFS_OSTYPE=DARWIN
418                 AC_MSG_RESULT(arm_darwin)
419                 ;;
420         powerpc-*-darwin*)
421                 MKAFS_OSTYPE=DARWIN
422                 AC_MSG_RESULT(ppc_darwin)
423                 ;;
424         i386-*-darwin*)
425                 MKAFS_OSTYPE=DARWIN
426                 AC_MSG_RESULT(x86_darwin)
427                 ;;
428         i386-*-freebsd*)
429                 MKAFS_OSTYPE=FBSD
430                 AC_MSG_RESULT(i386_fbsd)
431                 ;;
432         x86_64-*-freebsd*)
433                 MKAFS_OSTYPE=FBSD
434                 AC_MSG_RESULT(amd64_fbsd)
435                 ;;
436         *-netbsd*)
437                 MKAFS_OSTYPE=NBSD
438                 AC_MSG_RESULT(nbsd)
439                 ;;
440         x86_64-*-openbsd*)
441                 MKAFS_OSTYPE=OBSD
442                 AC_MSG_RESULT(amd64_obsd)
443                 ;;
444         i386-*-openbsd*)
445                 MKAFS_OSTYPE=OBSD
446                 AC_MSG_RESULT(i386_obsd)
447                 ;;
448         *-dragonfly*)
449                 MKAFS_OSTYPE=DFBSD
450                 AC_MSG_RESULT(i386_dfbsd)
451                 ;;
452         *)
453                 AC_MSG_RESULT($system)
454                 ;;
455 esac
456
457 if test "x$with_afs_sysname" != "x"; then
458         AFS_SYSNAME="$with_afs_sysname"
459 else
460         AC_MSG_CHECKING(your AFS sysname)
461         case $host in
462                 i?86-*-openbsd?.?)
463                         v=${host#*openbsd}
464                         vM=${v%.*}
465                         vm=${v#*.}
466                         AFS_SYSNAME="i386_obsd${vM}${vm}"
467                         ;;
468                 sparc64-*-openbsd?.?)
469                         v=${host#*openbsd}
470                         vM=${v%.*}
471                         vm=${v#*.}
472                         AFS_SYSNAME="sparc64_obsd${vM}${vm}"
473                         ;;
474                 x86_64-*-openbsd?.?)
475                         v=${host#*openbsd}
476                         vM=${v%.*}
477                         vm=${v#*.}
478                         AFS_SYSNAME="amd64_obsd${vM}${vm}"
479                         ;;
480                 i?86-*-freebsd?.*)
481                         v=${host#*freebsd}
482                         vM=${v%.*}
483                         vm=${v#*.}
484                         AFS_SYSNAME="i386_fbsd_${vM}${vm}"
485                         ;;
486                 x86_64-*-freebsd?.*)
487                         v=${host#*freebsd}
488                         vM=${v%.*}
489                         vm=${v#*.}
490                         AFS_SYSNAME="amd64_fbsd_${vM}${vm}"
491                         ;;
492                 i386-*-dragonfly2.2*)
493                         AFS_SYSNAME="i386_dfbsd_23"
494                         ;;
495                 i386-*-dragonfly2.3*)
496                         AFS_SYSNAME="i386_dfbsd_23"
497                         ;;
498                 i?86-*-netbsd*1.6[[M-Z]]*)
499                         AFS_SYSNAME="i386_nbsd20"
500                         ;;
501                 powerpc-*-netbsd*1.6[[M-Z]]*)
502                         AFS_SYSNAME="ppc_nbsd20"
503                         ;;
504                 *-*-netbsd*)
505                         arch=${host%%-unknown*}
506                         arch=$(echo $arch |sed -e 's/x86_64/amd64/g' \
507                                                -e 's/powerpc/ppc/g')
508                         v=${host#*netbsd}
509                         v=${v#*aout}
510                         v=${v#*ecoff}
511                         v=${v#*elf}
512                         vM=${v%%.*}
513                         vM=${vM%.*}
514                         v=${v#*.}
515                         vm=${v%%.*}
516                         vm=${vm%.*}
517                         vm=${vm%%[[_A-Z]]*}
518                         if test $vm -eq 99 ; then
519                                 vM=$((vM+1))
520                         fi
521                         if test $vM -gt 1 ; then
522                                 vm=0
523                         fi
524                         AFS_SYSNAME="${arch}_nbsd${vM}${vm}"
525                         ;;
526                 hppa*-hp-hpux11.0*)
527                         AFS_SYSNAME="hp_ux110"
528                         ;;
529                 hppa*-hp-hpux11.11)
530                         AFS_SYSNAME="hp_ux11i"
531                         ;;
532                 hppa*-hp-hpux11.23)
533                         AFS_SYSNAME="hp_ux1123"
534                         ;;
535                 ia64-hp-hpux11.22)
536                         AFS_SYSNAME="ia64_hpux1122"
537                         ;;
538                 ia64-hp-hpux*)
539                         AFS_SYSNAME="ia64_hpux1123"
540                         ;;
541                 hppa*-hp-hpux10*)
542                         AFS_SYSNAME="hp_ux102"
543                         ;;
544                 powerpc-apple-darwin7*)
545                         AFS_SYSNAME="ppc_darwin_70"
546                         ;;
547                 powerpc-apple-darwin8.*)
548                         AFS_SYSNAME="ppc_darwin_80"
549                         ;;
550                 i386-apple-darwin8.*)
551                         AFS_SYSNAME="x86_darwin_80"
552                         ;;
553                 powerpc-apple-darwin9.*)
554                         AFS_SYSNAME="ppc_darwin_90"
555                         ;;
556                 i386-apple-darwin9.*)
557                         AFS_SYSNAME="x86_darwin_90"
558                         ;;
559                 i?86-apple-darwin10.*)
560                         AFS_SYSNAME="x86_darwin_100"
561                         ;;
562                 sparc-sun-solaris2.5*)
563                         AFS_SYSNAME="sun4x_55"
564                         enable_login="yes"
565                         ;;
566                 sparc-sun-solaris2.6)
567                         AFS_SYSNAME="sun4x_56"
568                         ;;
569                 sparc-sun-solaris2.7)
570                         AFS_SYSNAME="sun4x_57"
571                         ;;
572                 sparc-sun-solaris2.8)
573                         AFS_SYSNAME="sun4x_58"
574                         ;;
575                 sparc-sun-solaris2.9)
576                         AFS_SYSNAME="sun4x_59"
577                         ;;
578                 sparc-sun-solaris2.10)
579                         AFS_SYSNAME="sun4x_510"
580                         ;;
581                 sparc-sun-solaris2.11)
582                         AFS_SYSNAME="sun4x_511"
583                         ;;
584                 sparc-sun-sunos4*)
585                         AFS_SYSNAME="sun4_413"
586                         enable_login="yes"
587                         ;;
588                 i386-pc-solaris2.7)
589                         AFS_SYSNAME="sunx86_57"
590                         ;;
591                 i386-pc-solaris2.8)
592                         AFS_SYSNAME="sunx86_58"
593                         ;;
594                 i386-pc-solaris2.9)
595                         AFS_SYSNAME="sunx86_59"
596                         ;;
597                 i386-pc-solaris2.10)
598                         AFS_SYSNAME="sunx86_510"
599                         ;;
600                 i386-pc-solaris2.11)
601                         AFS_SYSNAME="sunx86_511"
602                         ;;
603                 alpha*-dec-osf4.0*)
604                         AFS_SYSNAME="alpha_dux40"
605                         ;;
606                 alpha*-dec-osf5.0*)
607                         AFS_SYSNAME="alpha_dux50"
608                         ;;
609                 alpha*-dec-osf5.1*)
610                         AFS_SYSNAME="alpha_dux51"
611                         ;;
612                 mips-sgi-irix6.5)
613                         AFS_SYSNAME="sgi_65"
614                         ;;
615                 ia64-*-linux*)
616                         AFS_SYSNAME="ia64_linuxXX"
617                         ;;
618                 powerpc-*-linux*)
619                         AFS_SYSNAME="`/bin/arch`_linuxXX"
620                         ;;
621                 powerpc64-*-linux*)
622                         AFS_SYSNAME="ppc64_linuxXX"
623                         ;;
624                 alpha*-linux*)
625                         AFS_SYSNAME="alpha_linux_XX"
626                         ;;
627                 s390-*-linux*)
628                         AFS_SYSNAME="s390_linuxXX"
629                         ;;
630                 s390x-*-linux*)
631                         AFS_SYSNAME="s390x_linuxXX"
632                         ;;
633                 sparc-*-linux*)
634                         AFS_SYSNAME="`/bin/arch`_linuxXX"
635                         ;;
636                 sparc64-*-linux*)
637                         AFS_SYSNAME="sparc64_linuxXX"
638                         ;;
639                 i?86-*-linux*)
640                         AFS_SYSNAME="i386_linuxXX"
641                         ;;
642                 arm*-linux*)
643                         AFS_SYSNAME="arm_linuxXX"
644                         ;;
645                 parisc-*-linux-gnu|hppa-*-linux-gnu)
646                         AFS_SYSNAME="parisc_linuxXX"
647                         enable_pam="no"
648                         ;;
649                 power*-ibm-aix4.2*)
650                         AFS_SYSNAME="rs_aix42"
651                         enable_pam="no"
652                         ;;
653                 power*-ibm-aix4.3*)
654                         AFS_SYSNAME="rs_aix42"
655                         enable_pam="no"
656                         ;;
657                 power*-ibm-aix5.1*)
658                         AFS_SYSNAME="rs_aix51"
659                         enable_pam="no"
660                         ;;
661                 power*-ibm-aix5.2*)
662                         AFS_SYSNAME="rs_aix52"
663                         enable_pam="no"
664                         ;;
665                 power*-ibm-aix5.3*)
666                         AFS_SYSNAME="rs_aix53"
667                         enable_pam="no"
668                         ;;
669                 power*-ibm-aix6.1*)
670                         AFS_SYSNAME="rs_aix61"
671                         enable_pam="no"
672                         ;;
673                 x86_64-*-linux-gnu)
674                         AFS_SYSNAME="amd64_linuxXX"
675                         enable_pam="yes"
676                         ;;
677                 *)
678                         AC_MSG_ERROR(An AFS sysname is required)
679                         exit 1
680                         ;;
681         esac
682         case $AFS_SYSNAME in
683                 *_linux* | *_umlinux*)
684                         if test "x${AFS_SYSKVERS}" = "x"; then
685                          AC_MSG_ERROR(Couldn't guess your Linux version. Please use the --with-afs-sysname option to configure an AFS sysname.)
686                         fi
687                         _AFS_SYSNAME=`echo $AFS_SYSNAME|sed s/XX\$/$AFS_SYSKVERS/`
688                         AFS_SYSNAME="$_AFS_SYSNAME"
689                         AC_TRY_KBUILD(
690                          [],
691                          [#ifndef CONFIG_USERMODE
692                           #error not UML
693                           #endif],
694                          ac_cv_linux_is_uml=yes,)
695                         if test "${ac_cv_linux_is_uml}" = yes; then
696                          _AFS_SYSNAME=`echo $AFS_SYSNAME|sed s/linux/umlinux/`
697                         fi
698                         AFS_SYSNAME="$_AFS_SYSNAME"
699                         ;;
700         esac
701         AC_MSG_RESULT($AFS_SYSNAME)
702 fi
703
704 case $AFS_SYSNAME in
705         *_darwin*)
706                 AC_CHECK_HEADERS(crt_externs.h)
707                 DARWIN_PLIST=src/libafs/afs.${AFS_SYSNAME}.plist
708                 DARWIN_INFOFILE=afs.${AFS_SYSNAME}.plist
709                 ;;
710 esac
711
712 dnl Some hosts have a separate common param file they should include.  Figure
713 dnl out if we're on one of them now that we know the sysname.
714 case $AFS_SYSNAME in
715     *_nbsd15)   AFS_PARAM_COMMON=param.nbsd15.h  ;;
716     *_nbsd16)   AFS_PARAM_COMMON=param.nbsd16.h  ;;
717     *_nbsd20)   AFS_PARAM_COMMON=param.nbsd20.h  ;;
718     *_nbsd21)   AFS_PARAM_COMMON=param.nbsd21.h  ;;
719     *_nbsd30)   AFS_PARAM_COMMON=param.nbsd30.h  ;;
720     *_nbsd40)   AFS_PARAM_COMMON=param.nbsd40.h  ;;
721     *_nbsd50)   AFS_PARAM_COMMON=param.nbsd50.h  ;;
722     *_obsd31)   AFS_PARAM_COMMON=param.obsd31.h  ;;
723     *_obsd32)   AFS_PARAM_COMMON=param.obsd32.h  ;;
724     *_obsd33)   AFS_PARAM_COMMON=param.obsd33.h  ;;
725     *_obsd34)   AFS_PARAM_COMMON=param.obsd34.h  ;;
726     *_obsd35)   AFS_PARAM_COMMON=param.obsd35.h  ;;
727     *_obsd36)   AFS_PARAM_COMMON=param.obsd36.h  ;;
728     *_obsd37)   AFS_PARAM_COMMON=param.obsd37.h  ;;
729     *_obsd38)   AFS_PARAM_COMMON=param.obsd38.h  ;;
730     *_obsd39)   AFS_PARAM_COMMON=param.obsd39.h  ;;
731     *_obsd40)   AFS_PARAM_COMMON=param.obsd40.h  ;;
732     *_obsd41)   AFS_PARAM_COMMON=param.obsd41.h  ;;
733     *_obsd42)   AFS_PARAM_COMMON=param.obsd42.h  ;;
734     *_obsd43)   AFS_PARAM_COMMON=param.obsd43.h  ;;
735     *_obsd44)   AFS_PARAM_COMMON=param.obsd44.h  ;;
736     *_obsd45)   AFS_PARAM_COMMON=param.obsd45.h  ;;
737     *_obsd46)   AFS_PARAM_COMMON=param.obsd46.h  ;;
738     *_linux22)  AFS_PARAM_COMMON=param.linux22.h ;;
739     *_linux24)  AFS_PARAM_COMMON=param.linux24.h ;;
740     *_linux26)  AFS_PARAM_COMMON=param.linux26.h ;;
741 # Linux alpha adds an extra underscore for no good reason.
742     *_linux_22) AFS_PARAM_COMMON=param.linux22.h ;;
743     *_linux_24) AFS_PARAM_COMMON=param.linux24.h ;;
744     *_linux_26) AFS_PARAM_COMMON=param.linux26.h ;;
745 esac
746
747 case $AFS_SYSNAME in *_linux* | *_umlinux*)
748
749                 # Add (sub-) architecture-specific paths needed by conftests
750                 case $AFS_SYSNAME  in
751                         *_umlinux26)
752                                 UMLINUX26_FLAGS="-I$LINUX_KERNEL_PATH/arch/um/include"
753                                 UMLINUX26_FLAGS="$UMLINUX26_FLAGS -I$LINUX_KERNEL_PATH/arch/um/kernel/tt/include"
754                                 UMLINUX26_FLAGS="$UMLINUX26_FLAGS -I$LINUX_KERNEL_PATH/arch/um/kernel/skas/include"
755                                 CPPFLAGS="$CPPFLAGS $UMLINUX26_FLAGS"
756                 esac
757
758                 if test "x$enable_kernel_module" = "xyes"; then
759                  if test "x$enable_debug_kernel" = "xno"; then
760                         LINUX_GCC_KOPTS="$LINUX_GCC_KOPTS -fomit-frame-pointer"
761                  fi
762                  OPENAFS_GCC_SUPPORTS_MARCH
763                  AC_SUBST(P5PLUS_KOPTS)
764                  OPENAFS_GCC_NEEDS_NO_STRENGTH_REDUCE
765                  OPENAFS_GCC_NEEDS_NO_STRICT_ALIASING
766                  OPENAFS_GCC_SUPPORTS_NO_COMMON
767                  OPENAFS_GCC_SUPPORTS_PIPE
768                  AC_SUBST(LINUX_GCC_KOPTS)
769
770                  dnl Setup the kernel build environment
771                  LINUX_KBUILD_USES_EXTRA_CFLAGS
772                  LINUX_KERNEL_COMPILE_WORKS
773
774                  dnl Check for header files
775                  AC_CHECK_LINUX_HEADER([config.h])
776                  AC_CHECK_LINUX_HEADER([completion.h])
777                  AC_CHECK_LINUX_HEADER([exportfs.h])
778                  AC_CHECK_LINUX_HEADER([freezer.h])
779                  AC_CHECK_LINUX_HEADER([key-type.h])
780                  AC_CHECK_LINUX_HEADER([semaphore.h])
781                  AC_CHECK_LINUX_HEADER([seq_file.h])
782
783                  dnl Check for structure elements
784                  AC_CHECK_LINUX_STRUCT([address_space_operations],
785                                        [write_begin], [fs.h])
786                  AC_CHECK_LINUX_STRUCT([backing_dev_info], [name],
787                                        [backing-dev.h])
788                  AC_CHECK_LINUX_STRUCT([ctl_table], [ctl_name], [sysctl.h])
789                  AC_CHECK_LINUX_STRUCT([inode], [i_alloc_sem], [fs.h])
790                  AC_CHECK_LINUX_STRUCT([inode], [i_blkbits], [fs.h])
791                  AC_CHECK_LINUX_STRUCT([inode], [i_blksize], [fs.h])
792                  AC_CHECK_LINUX_STRUCT([inode], [i_mutex], [fs.h])
793                  AC_CHECK_LINUX_STRUCT([inode], [i_security], [fs.h])
794                  AC_CHECK_LINUX_STRUCT([file_operations], [flock], [fs.h])
795                  AC_CHECK_LINUX_STRUCT([file_operations], [sendfile], [fs.h])
796                  AC_CHECK_LINUX_STRUCT([nameidata], [path], [namei.h])
797                  AC_CHECK_LINUX_STRUCT([proc_dir_entry], [owner], [proc_fs.h])
798                  AC_CHECK_LINUX_STRUCT([super_block], [s_bdi], [fs.h])
799                  AC_CHECK_LINUX_STRUCT([super_operations], [alloc_inode],
800                                        [fs.h])
801                  AC_CHECK_LINUX_STRUCT([task_struct], [cred], [sched.h])
802                  AC_CHECK_LINUX_STRUCT([task_struct], [exit_state], [sched.h])
803                  AC_CHECK_LINUX_STRUCT([task_struct], [parent], [sched.h])
804                  AC_CHECK_LINUX_STRUCT([task_struct], [real_parent], [sched.h])
805                  AC_CHECK_LINUX_STRUCT([task_struct], [rlim], [sched.h])
806                  AC_CHECK_LINUX_STRUCT([task_struct], [sig], [sched.h])
807                  AC_CHECK_LINUX_STRUCT([task_struct], [sighand], [sched.h])
808                  AC_CHECK_LINUX_STRUCT([task_struct], [sigmask_lock], [sched.h])
809                  AC_CHECK_LINUX_STRUCT([task_struct], [tgid], [sched.h])
810                  AC_CHECK_LINUX_STRUCT([task_struct], [thread_info], [sched.h])
811                  LINUX_SCHED_STRUCT_TASK_STRUCT_HAS_SIGNAL_RLIM
812
813                  dnl Function existence checks
814
815                  AC_CHECK_LINUX_FUNC([bdi_init],
816                                      [#include <linux/backing-dev.h>],
817                                      [bdi_init(NULL);])
818                  AC_CHECK_LINUX_FUNC([PageChecked],
819                                      [#include <linux/mm.h>
820 #include <linux/page-flags.h>],
821                                      [struct page *_page;
822                                       int bchecked = PageChecked(_page);])
823                  AC_CHECK_LINUX_FUNC([PageFsMisc],
824                                      [#include <linux/mm.h>
825 #include <linux/page-flags.h>],
826                                      [struct page *_page;
827                                       int bchecked = PageFsMisc(_page);])
828                  AC_CHECK_LINUX_FUNC([current_kernel_time],
829                                      [#include <linux/time.h>],
830                                      [struct timespec s;
831                                       s = current_kernel_time();])
832                  AC_CHECK_LINUX_FUNC([d_alloc_anon],
833                                      [#include <linux/dcache.h>],
834                                      [d_alloc_anon(NULL);])
835                  AC_CHECK_LINUX_FUNC([do_sync_read],
836                                      [#include <linux/fs.h>],
837                                      [do_sync_read(NULL, NULL, 0, NULL);])
838                  AC_CHECK_LINUX_FUNC([find_task_by_pid],
839                                      [#include <linux/sched.h>],
840                                      [pid_t p; find_task_by_pid(p);])
841                  AC_CHECK_LINUX_FUNC([generic_file_aio_read],
842                                      [#include <linux/fs.h>],
843                                      [generic_file_aio_read(NULL,NULL,0,0);])
844                  AC_CHECK_LINUX_FUNC([grab_cache_page_write_begin],
845                                      [#include <linux/pagemap.h>],
846                                      [grab_cache_page_write_begin(NULL, 0, 0);])
847                  AC_CHECK_LINUX_FUNC([hlist_unhashed],
848                                      [#include <linux/list.h>],
849                                      [hlist_unhashed(0);])
850                  AC_CHECK_LINUX_FUNC([i_size_read],
851                                      [#include <linux/fs.h>],
852                                      [i_size_read(NULL);])
853                  AC_CHECK_LINUX_FUNC([iget],
854                                      [#include <linux/fs.h>],
855                                      [iget(NULL, NULL);])
856                  AC_CHECK_LINUX_FUNC([kernel_setsockopt],
857                                      [#include <linux/net.h>],
858                                      [kernel_setsockopt(NULL, 0, 0, NULL, 0);])
859                  AC_CHECK_LINUX_FUNC([page_follow_link],
860                                      [#include <linux/fs.h>],
861                                      [page_follow_link(0,0);])
862                  AC_CHECK_LINUX_FUNC([page_offset],
863                                      [#include <linux/pagemap.h>],
864                                      [page_offset(NULL);])
865                  AC_CHECK_LINUX_FUNC([pagevec_lru_add_file],
866                                      [#include <linux/pagevec.h>],
867                                      [__pagevec_lru_add_file(NULL);])
868                  AC_CHECK_LINUX_FUNC([rcu_read_lock],
869                                      [#include <linux/rcupdate.h>],
870                                      [rcu_read_lock();])
871                  AC_CHECK_LINUX_FUNC([splice_direct_to_actor],
872                                      [#include <linux/splice.h>],
873                                      [splice_direct_to_actor(NULL,NULL,NULL);])
874                  AC_CHECK_LINUX_FUNC([svc_addr_in],
875                                      [#include <linux/sunrpc/svc.h>],
876                                      [svc_addr_in(NULL);])
877                  AC_CHECK_LINUX_FUNC([zero_user_segments],
878                                      [#include <linux/highmem.h>],
879                                      [zero_user_segments(NULL, 0, 0, 0, 0);])
880
881                  dnl Consequences - things which get set as a result of the
882                  dnl                above tests
883                  AS_IF([test "x$ac_cv_linux_func_iget" = "xno"],
884                        [AC_DEFINE([LINUX_USE_FH], 1,
885                           [define to use linux file handles for cache files])])
886                  AS_IF([test "x$ac_cv_linux_func_d_alloc_anon" = "xno"],
887                        [AC_DEFINE([AFS_NONFSTRANS], 1,
888                                   [define to disable the nfs translator])])
889
890                  dnl Assorted more complex tests
891                  LINUX_EXPORTS_PROC_ROOT_FS
892                  LINUX_KMEM_CACHE_INIT
893                  LINUX_HAVE_KMEM_CACHE_T
894                  LINUX_KMEM_CACHE_CREATE_TAKES_DTOR
895                  LINUX_KMEM_CACHE_CREATE_CTOR_TAKES_VOID
896                  LINUX_D_PATH_TAKES_STRUCT_PATH
897                  LINUX_NEW_EXPORT_OPS
898                  LINUX_INODE_SETATTR_RETURN_TYPE
899                  LINUX_IOP_I_CREATE_TAKES_NAMEIDATA
900                  LINUX_IOP_I_LOOKUP_TAKES_NAMEIDATA
901                  LINUX_IOP_I_PERMISSION_TAKES_NAMEIDATA
902                  LINUX_IOP_I_PUT_LINK_TAKES_COOKIE
903                  LINUX_DOP_D_REVALIDATE_TAKES_NAMEIDATA
904                  LINUX_FOP_F_FLUSH_TAKES_FL_OWNER_T
905                  LINUX_FOP_F_FSYNC_TAKES_DENTRY
906                  LINUX_AOP_WRITEBACK_CONTROL
907                  LINUX_FS_STRUCT_FOP_HAS_SPLICE
908                  LINUX_KERNEL_POSIX_LOCK_FILE_WAIT_ARG
909                  LINUX_POSIX_TEST_LOCK_RETURNS_CONFLICT
910                  LINUX_POSIX_TEST_LOCK_CONFLICT_ARG
911                  LINUX_KERNEL_SOCK_CREATE
912                  LINUX_EXPORTS_KEY_TYPE_KEYRING
913                  LINUX_KEYS_HAVE_SESSION_TO_PARENT
914                  LINUX_NEED_RHCONFIG
915                  LINUX_RECALC_SIGPENDING_ARG_TYPE
916                  LINUX_EXPORTS_TASKLIST_LOCK
917                  LINUX_GET_SB_HAS_STRUCT_VFSMOUNT
918                  LINUX_STATFS_TAKES_DENTRY
919                  LINUX_REFRIGERATOR
920                  LINUX_HAVE_TRY_TO_FREEZE
921                  LINUX_LINUX_KEYRING_SUPPORT
922                  LINUX_KEY_ALLOC_NEEDS_STRUCT_TASK
923                  LINUX_KEY_ALLOC_NEEDS_CRED
924                  LINUX_INIT_WORK_HAS_DATA
925                  LINUX_REGISTER_SYSCTL_TABLE_NOFLAG
926
927                  dnl If we are guaranteed that keyrings will work - that is
928                  dnl  a) The kernel has keyrings enabled
929                  dnl  b) The code is new enough to give us a key_type_keyring
930                  dnl then we just disable syscall probing unless we've been
931                  dnl told otherwise
932
933                  AS_IF([test "$enable_linux_syscall_probing" = "maybe"],
934                    [AS_IF([test "$ac_cv_linux_keyring_support" = "yes" -a "$ac_cv_linux_exports_key_type_keyring" = "yes"],
935                           [enable_linux_syscall_probing="no"],
936                           [enable_linux_syscall_probing="yes"])
937                  ])
938
939                  dnl Syscall probing needs a few tests of its own, and just
940                  dnl won't work if the kernel doesn't export init_mm
941                  AS_IF([test "$enable_linux_syscall_probing" = "yes"], [
942                    LINUX_EXPORTS_INIT_MM
943                    AS_IF([test "$ac_cv_linux_exports_init_mm" = "no"], [
944                      AC_MSG_ERROR(
945                        [Can't do syscall probing without exported init_mm])
946                    ])
947                    LINUX_EXPORTS_SYS_CHDIR
948                    LINUX_EXPORTS_SYS_OPEN
949                    AC_DEFINE(ENABLE_LINUX_SYSCALL_PROBING, 1,
950                              [define to enable syscall table probes])
951                  ])
952
953                  dnl Packaging and SMP build
954                  if test "x$with_linux_kernel_packaging" = "xno" ; then
955                    LINUX_WHICH_MODULES
956                  else
957                    AC_SUBST(MPS,'SP')
958                  fi
959
960                  dnl Syscall probing
961                  if test "x$ac_cv_linux_config_modversions" = "xno" -o $AFS_SYSKVERS -ge 26; then
962                    AS_IF([test "$enable_linux_syscall_probing" = "yes"], [
963                      AC_MSG_WARN([Cannot determine sys_call_table status. assuming it isn't exported])
964                    ])
965                    ac_cv_linux_exports_sys_call_table=no
966                    if test -f "$LINUX_KERNEL_PATH/include/asm/ia32_unistd.h"; then
967                      ac_cv_linux_exports_ia32_sys_call_table=yes
968                    fi
969                  else
970                    LINUX_EXPORTS_KALLSYMS_ADDRESS
971                    LINUX_EXPORTS_KALLSYMS_SYMBOL
972                    LINUX_EXPORTS_SYS_CALL_TABLE
973                    LINUX_EXPORTS_IA32_SYS_CALL_TABLE
974                    if test "x$ac_cv_linux_exports_sys_call_table" = "xno"; then
975                          linux_syscall_method=none
976                          if test "x$ac_cv_linux_exports_init_mm" = "xyes"; then
977                             linux_syscall_method=scan
978                             if test "x$ac_cv_linux_exports_kallsyms_address" = "xyes"; then
979                                linux_syscall_method=scan_with_kallsyms_address
980                             fi
981                          fi
982                          if test "x$ac_cv_linux_exports_kallsyms_symbol" = "xyes"; then
983                             linux_syscall_method=kallsyms_symbol
984                          fi
985                          if test "x$linux_syscall_method" = "xnone"; then
986                             AC_MSG_WARN([no available sys_call_table access method -- guessing scan])
987                             linux_syscall_method=scan
988                          fi
989                    fi
990                  fi
991                  if test -f "$LINUX_KERNEL_PATH/include/linux/in_systm.h"; then
992                   AC_DEFINE(HAVE_IN_SYSTM_H, 1, [define if you have in_systm.h header file])
993                  fi
994                  if test -f "$LINUX_KERNEL_PATH/include/linux/mm_inline.h"; then
995                   AC_DEFINE(HAVE_MM_INLINE_H, 1, [define if you have mm_inline.h header file])
996                  fi
997                  if test "x$ac_cv_linux_kernel_page_follow_link" = "xyes" -o "x$ac_cv_linux_func_i_put_link_takes_cookie" = "xyes"; then
998                   AC_DEFINE(USABLE_KERNEL_PAGE_SYMLINK_CACHE, 1, [define if your kernel has a usable symlink cache API])
999                  else
1000                   AC_MSG_WARN([your kernel does not have a usable symlink cache API])
1001                  fi
1002                 :
1003                 fi
1004 esac
1005
1006 AC_CACHE_CHECK([if struct sockaddr has sa_len field],
1007     [ac_cv_sockaddr_len],
1008     [AC_TRY_COMPILE( [#include <sys/types.h>
1009 #include <sys/socket.h>],
1010                      [struct sockaddr *a; a->sa_len=0;],
1011                      [ac_cv_sockaddr_len=yes],
1012                      [ac_cv_sockaddr_len=no])
1013 ])
1014 AS_IF([test "$ac_cv_sockaddr_len" = "yes"],
1015       [AC_DEFINE(STRUCT_SOCKADDR_HAS_SA_LEN, 1,
1016                  [define if you struct sockaddr sa_len])])
1017
1018 if test "x${MKAFS_OSTYPE}" = "xIRIX"; then
1019         echo Skipping library tests because they confuse Irix.
1020 else
1021   AC_SEARCH_LIBS([socket], [socket inet])
1022   AC_SEARCH_LIBS([connect], [nsl])
1023   AC_SEARCH_LIBS([gethostbyname], [dns nsl resolv])
1024
1025   dnl darwin wants it, aix hates it
1026   AC_MSG_CHECKING(for the useability of arpa/nameser_compat.h)
1027   AC_TRY_COMPILE([
1028   #include <stdlib.h>
1029   #include <stdio.h>
1030   #include <sys/types.h>
1031   #include <sys/socket.h>
1032   #include <netinet/in.h>
1033   #include <arpa/inet.h>
1034   #include <arpa/nameser.h>
1035   #include <arpa/nameser_compat.h>
1036   #include <resolv.h>
1037   ], [static int i; i = 0;],
1038   [AC_MSG_RESULT(yes)
1039    AC_DEFINE(HAVE_ARPA_NAMESER_COMPAT_H, 1, [define if arpa/nameser_compat.h exists])],
1040   [AC_MSG_RESULT(no)
1041    ])
1042
1043   openafs_save_libs="$LIBS"
1044   AC_MSG_CHECKING([for res_search])
1045   AC_FUNC_RES_SEARCH
1046
1047   if test "$ac_cv_func_res_search" = no; then
1048       for lib in dns nsl resolv; do
1049         if test "$ac_cv_func_res_search" != yes; then
1050           LIBS="-l$lib $LIBS"
1051           AC_FUNC_RES_SEARCH
1052           LIBS="$openafs_save_libs"
1053         fi
1054       done    
1055       if test "$ac_cv_func_res_search" = yes; then
1056         LIB_AFSDB="-l$lib"
1057         AC_DEFINE(HAVE_RES_SEARCH, 1, [])
1058         AC_MSG_RESULT([yes, in lib$lib])
1059       else
1060         AC_MSG_RESULT(no)
1061       fi
1062   else
1063     AC_DEFINE(HAVE_RES_SEARCH, 1, [])
1064     AC_MSG_RESULT(yes)
1065   fi
1066   
1067 fi
1068
1069 AC_CHECK_RESOLV_RETRANS
1070
1071 AC_CACHE_CHECK([for setsockopt(, SOL_IP, IP_RECVERR)],
1072     [ac_cv_setsockopt_iprecverr],
1073     [AC_TRY_COMPILE( [
1074 #include <sys/types.h>
1075 #include <sys/socket.h>
1076 #include <netinet/in.h>],
1077 [int on=1;
1078 setsockopt(0, SOL_IP, IP_RECVERR, &on, sizeof(on));],
1079         [ac_cv_setsockopt_iprecverr=yes],
1080         [ac_cv_setsockopt_iprecverr=no])])
1081
1082 AS_IF([test "$ac_cv_setsockopt_iprecverr" = "yes"],
1083       [AC_DEFINE(ADAPT_PMTU_RECVERR, 1,
1084                  [define if asynchronous socket errors can be received])])
1085
1086 PTHREAD_LIBS=error
1087 if test "x$MKAFS_OSTYPE" = OBSD; then
1088         PTHREAD_LIBS="-pthread"
1089 fi
1090 if test "x$MKAFS_OSTYPE" = xDFBSD; then
1091         PTHREAD_LIBS="-pthread"
1092 fi
1093 if test "x$PTHREAD_LIBS" = xerror; then
1094         AC_CHECK_LIB(pthread, pthread_attr_init,
1095                 PTHREAD_LIBS="-lpthread")
1096 fi
1097 if test "x$PTHREAD_LIBS" = xerror; then
1098         AC_CHECK_LIB(pthreads, pthread_attr_init,
1099                 PTHREAD_LIBS="-lpthreads")
1100 fi
1101 if test "x$PTHREAD_LIBS" = xerror; then
1102         AC_CHECK_LIB(c_r, pthread_attr_init,
1103                 PTHREAD_LIBS="-lc_r")
1104 fi
1105 if test "x$PTHREAD_LIBS" = xerror; then
1106         AC_CHECK_FUNC(pthread_attr_init, PTHREAD_LIBS="")
1107 fi
1108 if test "x$PTHREAD_LIBS" = xerror; then
1109         # pthread_attr_init is a macro under HPUX 11.0 and 11.11
1110         AC_CHECK_LIB(pthread, pthread_attr_destroy,
1111                 PTHREAD_LIBS="-lpthread")
1112 fi
1113 if test "x$PTHREAD_LIBS" = xerror; then
1114         AC_MSG_WARN(*** Unable to locate working posix thread library ***)
1115 fi
1116 AC_SUBST(PTHREAD_LIBS)
1117
1118 HOST_CPU="$host_cpu"
1119
1120 if test "x$with_bsd_kernel_headers" != "x"; then
1121         BSD_KERNEL_PATH="$with_bsd_kernel_headers"
1122 else
1123         BSD_KERNEL_PATH="/usr/src/sys"
1124 fi
1125
1126 if test "x$with_bsd_kernel_build" != "x"; then
1127         BSD_KERNEL_BUILD="$with_bsd_kernel_build"
1128 else
1129         case $AFS_SYSNAME in
1130                 *_fbsd_*)
1131                         BSD_KERNEL_BUILD="${BSD_KERNEL_PATH}/${HOST_CPU}/compile/GENERIC"
1132                         ;;
1133                 *_nbsd*)
1134                         BSD_KERNEL_BUILD="${BSD_KERNEL_PATH}/arch/${HOST_CPU}/compile/GENERIC"
1135         esac
1136 fi
1137
1138 # Fast restart
1139 if test "$enable_supergroups" = "yes"; then
1140         AC_DEFINE(SUPERGROUPS, 1, [define if you want to have support for nested pts groups])
1141 fi
1142
1143 if test "$enable_fast_restart" = "yes"; then
1144         AC_DEFINE(FAST_RESTART, 1, [define if you want to have fast restart])
1145 fi
1146
1147 if test "$enable_bitmap_later" = "yes"; then
1148         AC_DEFINE(BITMAP_LATER, 1, [define if you want to salvager to check bitmasks later])
1149 fi
1150
1151 if test "$enable_demand_attach_fs" = "yes"; then
1152         AC_DEFINE(DEMAND_ATTACH_ENABLE, 1, [define if you want the demand attach fileserver])
1153         DEMAND_ATTACH="yes"
1154 else
1155         DEMAND_ATTACH="no"
1156 fi
1157 AC_SUBST(DEMAND_ATTACH)
1158
1159 if test "$enable_disconnected" = "yes"; then
1160         AC_DEFINE(AFS_DISCON_ENV, 1, [define if you want support for disconnected operation])
1161 fi
1162
1163 if test "$enable_unix_sockets" = "yes"; then
1164         AC_DEFINE(USE_UNIX_SOCKETS, 1, [define if you want to use UNIX sockets for fssync.])
1165         USE_UNIX_SOCKETS="yes"
1166 else
1167         USE_UNIX_SOCKETS="no"
1168 fi
1169 AC_SUBST(USE_UNIX_SOCKETS)
1170
1171 if test "$enable_fast_restart" = "yes" &&
1172    test "$enable_demand_attach_fs" = "yes" ; then
1173         AC_MSG_ERROR([The Demand Attach and Fast Restart extensions are mutually exclusive.  Demand Attach fileservers automatically salvage volumes in the background, thereby making Fast Restart pointless.])
1174         exit 1
1175 fi
1176
1177 if test "$enable_icmp_pmtu_discovery" = "yes"; then
1178    if test "$ac_cv_setsockopt_iprecverr" = "yes"; then
1179         AC_DEFINE(ADAPT_PMTU, 1, [define if you want to decode icmp unreachable packets to discover path mtu])
1180    fi
1181 fi
1182
1183 if test "$enable_cache_bypass" = "yes"; then
1184         AC_DEFINE(AFS_CACHE_BYPASS, 1, [define to activate cache bypassing Unix client])
1185 fi
1186
1187 if test "$enable_namei_fileserver" = "yes"; then
1188         AC_DEFINE(AFS_NAMEI_ENV, 1, [define if you want to want namei fileserver])
1189         VFSCK=""
1190 else
1191         if test "$enable_namei_fileserver" = "default"; then
1192                 case $host in
1193                         *-solaris2.10*)
1194                                 AC_MSG_WARN(Some Solaris 10 versions are not safe with the inode fileserver. Forcing namei. Override with --disable-namei-fileserver)
1195                                 AC_DEFINE(AFS_NAMEI_ENV, 1, [define if you want to want namei fileserver])
1196                                 VFSCK=""
1197                                 ;;
1198                         *-solaris2.11*)
1199                                 AC_MSG_WARN(Solaris 11 versions are not safe with the inode fileserver. Forcing namei. Override with --disable-namei-fileserver)
1200                                 AC_DEFINE(AFS_NAMEI_ENV, 1, [define if you want to want namei fileserver])
1201                                 VFSCK=""
1202                                 ;;
1203                         *)
1204                                 VFSCK="vfsck"
1205                                 ;;
1206                 esac
1207         else
1208                 VFSCK="vfsck"
1209         fi
1210 fi
1211
1212 dnl check for tivoli
1213 AC_MSG_CHECKING(for tivoli tsm butc support)
1214 XBSA_CFLAGS=""
1215 if test "$enable_tivoli_tsm" = "yes"; then
1216         XBSADIR1=/usr/tivoli/tsm/client/api/bin/xopen
1217         XBSADIR2=/opt/tivoli/tsm/client/api/bin/xopen
1218         XBSADIR3=/usr/tivoli/tsm/client/api/bin/sample
1219         XBSADIR4=/opt/tivoli/tsm/client/api/bin/sample
1220
1221         if test -r "$XBSADIR3/dsmapifp.h"; then
1222                 XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR3"
1223                 XBSA_XLIBS="-ldl"
1224                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1225         elif test -r "$XBSADIR4/dsmapifp.h"; then
1226                 XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR4"
1227                 XBSA_XLIBS="-ldl"
1228                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1229         elif test -r "$XBSADIR1/xbsa.h"; then
1230                 XBSA_CFLAGS="-Dxbsa -I$XBSADIR1"
1231                 XBSA_XLIBS=""
1232                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1233         elif test -r "$XBSADIR2/xbsa.h"; then
1234                 XBSA_CFLAGS="-Dxbsa -I$XBSADIR2"
1235                 XBSA_XLIBS=""
1236                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1237         else
1238                 AC_MSG_RESULT([no, missing xbsa.h and dsmapifp.h header files])
1239         fi
1240 else
1241         AC_MSG_RESULT([no])
1242 fi
1243 AC_SUBST(XBSA_CFLAGS)
1244 AC_SUBST(XBSA_XLIBS) 
1245
1246 dnl checks for header files.
1247 AC_HEADER_STDC
1248 AC_HEADER_SYS_WAIT
1249 AC_HEADER_DIRENT
1250 AC_CHECK_HEADERS(stdlib.h string.h unistd.h fcntl.h sys/time.h sys/file.h grp.h)
1251 AC_CHECK_HEADERS(netinet/in.h netdb.h sys/fcntl.h sys/mnttab.h sys/mntent.h)
1252 AC_CHECK_HEADERS(mntent.h sys/vfs.h sys/param.h sys/fs_types.h sys/fstyp.h)
1253 AC_CHECK_HEADERS(sys/mount.h strings.h termios.h signal.h sys/pag.h)
1254 AC_CHECK_HEADERS(windows.h direct.h sys/ipc.h)
1255 AC_CHECK_HEADERS(security/pam_modules.h ucontext.h regex.h sys/statvfs.h sys/statfs.h sys/bitypes.h)
1256 AC_CHECK_HEADERS(linux/errqueue.h,,,[#include <linux/types.h>])
1257 AC_CHECK_HEADERS(et/com_err.h)
1258
1259 AC_CHECK_TYPES([fsblkcnt_t],,,[
1260 #include <sys/types.h>
1261 #ifdef HAVE_SYS_BITYPES_H
1262 #include <sys/bitypes.h>
1263 #endif
1264 #ifdef HAVE_SYS_STATFS_H
1265 #include <sys/statfs.h>
1266 #endif
1267 #ifdef HAVE_SYS_STATVFS_H
1268 #include <sys/statvfs.h>
1269 #endif
1270 ])
1271
1272 OPENAFS_TEST_PACKAGE(libintl,[#include <libintl.h>],[-lintl],,,INTL)
1273
1274 dnl Don't build PAM on IRIX; the interface doesn't work for us.
1275 if test "$ac_cv_header_security_pam_modules_h" = yes -a "$enable_pam" = yes; then
1276         case $AFS_SYSNAME in
1277         sgi_*)
1278                 HAVE_PAM="no"
1279                 ;;
1280         *)
1281                 HAVE_PAM="yes"
1282                 ;;
1283         esac
1284 else
1285         HAVE_PAM="no"
1286 fi
1287 AC_SUBST(HAVE_PAM)
1288
1289 if test "$enable_login" = yes; then
1290         BUILD_LOGIN="yes"
1291 else
1292         BUILD_LOGIN="no"
1293 fi
1294 AC_SUBST(BUILD_LOGIN)
1295
1296 AC_CHECK_FUNCS(snprintf strlcat strlcpy flock)
1297 AC_CHECK_FUNCS(setprogname getprogname sigaction mkstemp vsnprintf strerror strcasestr)
1298 AC_CHECK_FUNCS(setvbuf vsyslog getcwd)
1299 AC_CHECK_FUNCS(regcomp regexec regerror)
1300 AC_MSG_CHECKING([for POSIX regex library])
1301 if test "$ac_cv_header_regex_h" = "yes" && \
1302         test "$ac_cv_func_regcomp" = "yes" && \
1303         test "$ac_cv_func_regexec" = "yes" && \
1304         test "$ac_cv_func_regerror" = "yes"; then
1305     AC_DEFINE(HAVE_POSIX_REGEX, 1, [define if you have POSIX regex library])
1306     AC_MSG_RESULT(yes)
1307 else
1308     AC_MSG_RESULT(no)
1309 fi
1310
1311 AC_TYPE_SIGNAL
1312 AC_CHECK_SIZEOF(void *)
1313 AC_CHECK_SIZEOF(unsigned long long)
1314 AC_CHECK_SIZEOF(unsigned long)
1315 AC_CHECK_SIZEOF(unsigned int)
1316 AC_TYPE_INTPTR_T
1317 AC_TYPE_UINTPTR_T
1318 AC_TYPE_SSIZE_T
1319 AC_CHECK_TYPE([sig_atomic_t],[],
1320     [AC_DEFINE([sig_atomic_t], [int],
1321         [Define to int if <signal.h> does not define.])],
1322 [#include <sys/types.h>
1323 #include <signal.h>])
1324 AC_CHECK_TYPE([socklen_t],[],
1325     [AC_DEFINE([socklen_t], [int],
1326         [Define to int if <sys/socket.h> does not define.])],
1327 [#include <sys/types.h>
1328 #include <sys/socket.h>])
1329 AC_SIZEOF_TYPE(long)
1330
1331 AC_HEADER_PAM_CONST
1332
1333 AC_CHECK_FUNCS(timegm)
1334 AC_CHECK_FUNCS(daemon)
1335
1336 dnl Directory PATH handling
1337 if test "x$enable_transarc_paths" = "xyes"  ; then 
1338     afsconfdir=${afsconfdir=/usr/afs/etc}
1339     viceetcdir=${viceetcdir=/usr/vice/etc}
1340     afskerneldir=${afskerneldir=${viceetcdir}}
1341     afssrvbindir=${afssrvbindir=/usr/afs/bin}
1342     afssrvsbindir=${afssrvsbindir=/usr/afs/bin}
1343     afssrvlibexecdir=${afssrvlibexecdir=/usr/afs/bin}
1344     afsdbdir=${afsdbdir=/usr/afs/db}
1345     afslogsdir=${afslogsdir=/usr/afs/logs}
1346     afslocaldir=${afslocaldir=/usr/afs/local}
1347     afsbackupdir=${afsbackupdir=/usr/afs/backup}
1348     afsbosconfigdir=${afsbosconfigdir=/usr/afs/local}
1349     afsdatadir=${afsdatadir=/usr/vice/etc}
1350 else 
1351     afsconfdir=${afsconfdir='${sysconfdir}/openafs/server'}
1352     viceetcdir=${viceetcdir='${sysconfdir}/openafs'}
1353     afskerneldir=${afskerneldir='${libdir}/openafs'}
1354     afssrvbindir=${afssrvbindir='${bindir}'}
1355     afssrvsbindir=${afssrvsbindir='${sbindir}'}
1356     afssrvlibexecdir=${afssrvlibexecdir='${libexecdir}/openafs'}
1357     afsdbdir=${afsdbdir='${localstatedir}/openafs/db'}
1358     afslogsdir=${afslogsdir='${localstatedir}/openafs/logs'}
1359     afslocaldir=${afslocaldir='${localstatedir}/openafs'}
1360     afsbackupdir=${afsbackupdir='${localstatedir}/openafs/backup'}
1361     afsbosconfigdir=${afsbosconfigdir='${sysconfdir}/openafs'}
1362     afsdatadir=${afsdatadir='${datadir}/openafs'}
1363 fi
1364 AC_SUBST(afsconfdir)
1365 AC_SUBST(viceetcdir)
1366 AC_SUBST(afskerneldir)
1367 AC_SUBST(afssrvbindir)
1368 AC_SUBST(afssrvsbindir)
1369 AC_SUBST(afssrvlibexecdir)
1370 AC_SUBST(afsdbdir)
1371 AC_SUBST(afslogsdir)
1372 AC_SUBST(afslocaldir)
1373 AC_SUBST(afsbackupdir)
1374 AC_SUBST(afsbosconfigdir)
1375 AC_SUBST(afsdatadir)
1376
1377 if test "x$enable_kernel_module" = "xyes"; then
1378 ENABLE_KERNEL_MODULE=libafs
1379 fi
1380
1381 if test "x$enable_pthreaded_ubik" = "xyes"; then
1382 ENABLE_PTHREADED_UBIK=yes
1383 fi
1384
1385 AC_SUBST(VFSCK)
1386 AC_SUBST(AFS_SYSNAME)
1387 AC_SUBST(AFS_PARAM_COMMON)
1388 AC_SUBST(ENABLE_KERNEL_MODULE)
1389 AC_SUBST(ENABLE_PTHREADED_UBIK)
1390 AC_SUBST(LIB_AFSDB)
1391 AC_SUBST(LINUX_KERNEL_PATH)
1392 AC_SUBST(LINUX_KERNEL_BUILD)
1393 AC_SUBST(HOST_CPU)
1394 AC_SUBST(BSD_KERNEL_PATH)
1395 AC_SUBST(BSD_KERNEL_BUILD)
1396 AC_SUBST(LINUX_VERSION)
1397 AC_SUBST(MKAFS_OSTYPE)
1398 AC_SUBST(TOP_OBJDIR)
1399 AC_SUBST(TOP_SRCDIR)
1400 AC_SUBST(TOP_INCDIR)
1401 AC_SUBST(TOP_LIBDIR)
1402 AC_SUBST(DEST)
1403 AC_SUBST(DARWIN_INFOFILE)
1404 AC_SUBST(IRIX_BUILD_IP35)
1405 AC_SUBST(HTML_XSL)
1406 AC_SUBST(XSLTPROC)
1407
1408 OPENAFS_OSCONF
1409 OPENAFS_FUSE
1410
1411 TOP_SRCDIR="${srcdir}/src"
1412 dnl
1413 dnl If we're using ./configure, need a more reasonable TOP_SRCDIR, since relative links don't work everywhere
1414 dnl
1415 case $TOP_SRCDIR in
1416         /*)
1417                 ;;
1418         *)
1419                 TOP_SRCDIR=`cd $TOP_SRCDIR; pwd`
1420                 ;;
1421 esac
1422
1423 TOP_OBJDIR="${SRCDIR_PARENT}"
1424 TOP_INCDIR="${SRCDIR_PARENT}/include"
1425 TOP_LIBDIR="${SRCDIR_PARENT}/lib"
1426 if test "${DEST}x" = "x"; then
1427         DEST="${SRCDIR_PARENT}/${AFS_SYSNAME}/dest"
1428 fi
1429
1430 HELPER_SPLINT="${TOP_SRCDIR}/helper-splint.sh"
1431 HELPER_SPLINTCFG="${TOP_SRCDIR}/splint.cfg"
1432 AC_SUBST(HELPER_SPLINT)
1433 AC_SUBST(HELPER_SPLINTCFG)
1434
1435 mkdir -p ${TOP_OBJDIR}/src/JAVA/libjafs
1436
1437 ])