Linux 3.6: d_alias and i_dentry are now hlists
[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 /* glue for RedHat kernel bug */
63 #undef ENABLE_REDHAT_BUILDSYS
64 #if defined(ENABLE_REDHAT_BUILDSYS) && defined(KERNEL) && defined(REDHAT_FIX)
65 #include "redhat-fix.h"
66 #endif])
67
68 AC_CANONICAL_HOST
69 SRCDIR_PARENT=`pwd`
70
71 #BOZO_SAVE_CORES pam
72
73 dnl System identity.
74 AC_ARG_WITH([afs-sysname],
75     [AS_HELP_STRING([--with-afs-sysname=sys], [use sys for the afs sysname])])
76
77 dnl General feature options.
78 AC_ARG_ENABLE([pam],
79     [AS_HELP_STRING([--disable-pam], [disable PAM support])],
80     ,
81     [enable_pam="yes"])
82 AC_ARG_ENABLE([gtx],
83     AS_HELP_STRING([--disable-gtx], [disable gtx curses-based terminal tools]))
84 AC_ARG_ENABLE([uss],
85     AS_HELP_STRING([--disable-uss], [disable uss bulk creation tool]))
86 AC_ARG_ENABLE([namei-fileserver],
87     [AS_HELP_STRING([--enable-namei-fileserver],
88         [force compilation of namei fileserver in preference to inode
89          fileserver])],
90     , 
91     [enable_namei_fileserver="default"])
92 AC_ARG_ENABLE([supergroups],
93     [AS_HELP_STRING([--enable-supergroups],
94         [enable support for nested pts groups])],
95     , 
96     [enable_supergroups="no"])
97 AC_ARG_ENABLE([bitmap-later],
98     [AS_HELP_STRING([--enable-bitmap-later],
99         [enable fast startup of file server by not reading bitmap till
100          needed])],
101     , 
102     [enable_bitmap_later="no"])
103 AC_ARG_ENABLE([unix-sockets],
104     [AS_HELP_STRING([--disable-unix-sockets],
105         [disable use of unix domain sockets for fssync (defaults to enabled)])],
106     ,
107     [enable_unix_sockets="yes"])
108 AC_ARG_ENABLE([tivoli-tsm],
109     [AS_HELP_STRING([--enable-tivoli-tsm],
110         [enable use of the Tivoli TSM API libraries for butc support])],
111     , 
112     [enable_tivoli_tsm="no"])
113 AC_ARG_ENABLE([pthreaded-ubik],
114     [AS_HELP_STRING([--enable-pthreaded-ubik],
115         [enable installation of pthreaded ubik applications (defaults to
116          disabled)])],
117     ,
118     [enable_pthreaded_ubik="no"])
119
120 dnl Kernel module build options.
121 AC_ARG_WITH([linux-kernel-headers],
122     [AS_HELP_STRING([--with-linux-kernel-headers=path],
123         [use the kernel headers found at path (optional, defaults to
124          /usr/src/linux-2.4, then /usr/src/linux)])])
125 AC_ARG_WITH([linux-kernel-build],
126     [AS_HELP_STRING([--with-linux-kernel-build=path],
127         [use the kernel build found at path(optional, defaults to 
128         /usr/src/linux-2.4, then /usr/src/linux)])])
129 AC_ARG_WITH([bsd-kernel-headers],
130     [AS_HELP_STRING([--with-bsd-kernel-headers=path],
131         [use the kernel headers found at path (optional, defaults to
132          /usr/src/sys)])])
133 AC_ARG_WITH([bsd-kernel-build],
134     [AS_HELP_STRING([--with-bsd-kernel-build=path], 
135         [use the kernel build found at path (optional, defaults to
136          KSRC/i386/compile/GENERIC)])])
137 AC_ARG_WITH([linux-kernel-packaging],
138     [AS_HELP_STRING([--with-linux-kernel-packaging],
139         [use standard naming conventions to aid Linux kernel build packaging
140          (disables MPS, sets the kernel module name to openafs.ko, and
141          installs kernel modules into the standard Linux location)])],
142     [AC_SUBST(LINUX_KERNEL_PACKAGING, "yes")
143      AC_SUBST(LINUX_LIBAFS_NAME, "openafs")],
144     [AC_SUBST(LINUX_LIBAFS_NAME, "libafs")])
145 AC_ARG_ENABLE([kernel-module],
146     [AS_HELP_STRING([--disable-kernel-module],
147         [disable compilation of the kernel module (defaults to enabled)])],
148     , 
149     [enable_kernel_module="yes"])
150 AC_ARG_ENABLE([redhat-buildsys],
151     [AS_HELP_STRING([--enable-redhat-buildsys],
152         [enable compilation of the redhat build system kernel (defaults to
153          disabled)])],
154     ,
155     [enable_redhat_buildsys="no"])
156
157 dnl Installation locations.
158 AC_ARG_ENABLE([transarc-paths],
159     [AS_HELP_STRING([--enable-transarc-paths],
160         [use Transarc style paths like /usr/afs and /usr/vice])],
161     , 
162     [enable_transarc_paths="no"])
163
164 dnl Optimization and debugging flags.
165 AC_ARG_ENABLE([strip-binaries],
166     [AS_HELP_STRING([--disable-strip-binaries],
167         [disable stripping of symbol information from binaries (defaults to
168          enabled)])],
169     ,
170     [enable_strip_binaries="maybe"])
171 AC_ARG_ENABLE([debug],
172     [AS_HELP_STRING([--enable-debug],
173         [enable compilation of the user space code with debugging information
174          (defaults to disabled)])],
175     , 
176     [enable_debug="no"])
177 AC_ARG_ENABLE([optimize],
178     [AS_HELP_STRING([--disable-optimize],
179         [disable optimization for compilation of the user space code (defaults
180          to enabled)])],
181     , 
182     [enable_optimize="yes"])
183 AC_ARG_ENABLE([warnings],
184     [AS_HELP_STRING([--enable-warnings],
185         [enable compilation warnings when building with gcc (defaults to
186          disabled)])],
187     ,
188     [enable_warnings="no"])
189 AC_ARG_ENABLE([checking],
190     [AS_HELP_STRING([--enable-checking],
191         [turn compilation warnings into errors when building with gcc (defaults
192          to disabled)])],
193     [enable_checking="$enableval"],
194     [enable_checking="no"])
195 AC_ARG_ENABLE([debug-kernel],
196     [AS_HELP_STRING([--enable-debug-kernel],
197         [enable compilation of the kernel module with debugging information
198          (defaults to disabled)])],
199     ,
200     [enable_debug_kernel="no"])
201 AC_ARG_ENABLE([optimize-kernel],
202     [AS_HELP_STRING([--disable-optimize-kernel],
203         [disable compilation of the kernel module with optimization (defaults
204          based on platform)])],
205     , 
206     [enable_optimize_kernel=""])
207 AC_ARG_ENABLE([debug-lwp],
208     [AS_HELP_STRING([--enable-debug-lwp],
209         [enable compilation of the LWP code with debugging information
210          (defaults to disabled)])],
211     ,
212     [enable_debug_lwp="no"])
213 AC_ARG_ENABLE([optimize-lwp],
214     [AS_HELP_STRING([--disable-optimize-lwp],
215         [disable optimization for compilation of the LWP code (defaults to
216          enabled)])],
217     ,
218     [enable_optimize_lwp="yes"])
219 AC_ARG_ENABLE([debug-pam],
220     [AS_HELP_STRING([--enable-debug-pam],
221         [enable compilation of the PAM code with debugging information
222          (defaults to disabled)])],
223     ,
224     [enable_debug_pam="no"])
225 AC_ARG_ENABLE([optimize-pam],
226     [AS_HELP_STRING([--disable-optimize-pam],
227         [disable optimization for compilation of the PAM code (defaults to
228          enabled)])],
229     ,
230     [enable_optimize_pam="yes"])
231 AC_ARG_ENABLE([linux-syscall-probing],
232     [AS_HELP_STRING([--enable-linux-syscall-probing],
233         [enable Linux syscall probing (defaults to autodetect)])],
234     ,
235     [enable_linux_syscall_probing="maybe"])
236     
237 AC_ARG_WITH([xslt-processor],
238         AS_HELP_STRING([--with-xslt-processor=ARG],
239         [which XSLT processor to use (possible choices are: libxslt, saxon, xalan-j, xsltproc)]),
240         [XSLTPROC="$withval"],
241         AC_CHECK_PROGS([XSLTPROC], [libxslt saxon xalan-j xsltproc], [echo]))
242
243 AC_ARG_WITH([html-xsl], 
244         AS_HELP_STRING([--with-html-xsl],
245         [build HTML documentation using this stylesheet (default is html/chunk.dsl; specify either html/chunk.xsl or html/docbook.xsl)]),
246         [HTML_XSL="$withval"],
247         [HTML_XSL="html/chunk.xsl"])
248
249 AC_ARG_WITH([docbook2pdf],
250         AS_HELP_STRING([--with-docbook2pdf=ARG],
251         [which Docbook to PDF utility to use (possible choices are: fop, dblatex, docbook2pdf)]),
252         [DOCBOOK2PDF="$withval"],
253         AC_CHECK_PROGS([DOCBOOK2PDF], [fop dblatex docbook2pdf], [echo]))
254
255 AC_ARG_WITH([docbook-stylesheets],
256         AS_HELP_STRING([--with-docbook-stylesheets=ARG],
257         [location of DocBook stylesheets (default is to search a set of likely paths)]),
258         [DOCBOOK_STYLESHEETS="$withval"],
259         OPENAFS_SEARCH_DIRLIST([DOCBOOK_STYLESHEETS], [/usr/share/xml/docbook/stylesheet/nwalsh/current /usr/share/xml/docbook/stylesheet/nwalsh /usr/share/xml/docbook/xsl-stylesheets /usr/share/sgml/docbook/docbook-xsl-stylesheets /usr/share/sgml/docbook/xsl-stylesheets /usr/share/docbook-xsl /usr/share/sgml/docbkxsl /usr/local/share/xsl/docbook /sw/share/xml/xsl/docbook-xsl /opt/local/share/xsl/docbook-xsl], [$HTML_XSL])
260         if test "x$DOCBOOK_STYLESHEETS" = "x"; then
261                 AC_WARN([Docbook stylesheets not found; some documentation can't be built])
262         fi)
263
264 enable_login="no"
265
266 dnl Check whether kindlegen exists.  If not, we'll suppress that part of the
267 dnl documentation build.
268 AC_CHECK_PROGS([KINDLEGEN], [kindlegen])
269
270 dnl weird ass systems
271 dnl AC_AIX
272 AC_ISC_POSIX
273 dnl AC_MINIX
274
275 dnl Various compiler setup.
276 AC_TYPE_PID_T
277 AC_TYPE_SIZE_T
278
279 dnl Checks for programs.
280 AC_PROG_INSTALL
281 AC_PROG_LN_S
282 AC_PROG_RANLIB
283 AC_PROG_YACC
284 AM_PROG_LEX
285 dnl if we are flex, be lex-compatible
286 OPENAFS_LEX_IS_FLEX([AC_SUBST([LEX], ["$LEX -l"])])
287
288 OPENAFS_FORCE_ABS_INSTALL
289 OPENAFS_CHECK_BIGENDIAN
290 OPENAFS_PRINTF_TAKES_Z_LEN
291
292 AC_MSG_CHECKING(your OS)
293 system=$host
294 case $system in
295         *-linux*)
296
297                 MKAFS_OSTYPE=LINUX
298                 if test "x$enable_redhat_buildsys" = "xyes"; then
299                  AC_DEFINE(ENABLE_REDHAT_BUILDSYS, 1, [define if you have redhat buildsystem])
300                 fi
301                 if test "x$enable_kernel_module" = "xyes"; then
302                  if test "x$with_linux_kernel_headers" != "x"; then
303                    LINUX_KERNEL_PATH="$with_linux_kernel_headers"
304                  else
305                    LINUX_KERNEL_PATH="/lib/modules/`uname -r`/source"
306                    if test ! -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then
307                      LINUX_KERNEL_PATH="/lib/modules/`uname -r`/build"
308                    fi
309                    if test ! -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then
310                      LINUX_KERNEL_PATH="/usr/src/linux-2.4"
311                    fi
312                    if test ! -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then
313                      LINUX_KERNEL_PATH="/usr/src/linux"
314                    fi
315                  fi
316                  if test "x$with_linux_kernel_build" != "x"; then
317                          LINUX_KERNEL_BUILD="$with_linux_kernel_build"
318                  else
319                    LINUX_KERNEL_BUILD=$LINUX_KERNEL_PATH
320                  fi
321                  if test -f "$LINUX_KERNEL_BUILD/include/generated/utsrelease.h"; then
322                    linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/generated/utsrelease.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
323                    LINUX_VERSION="$linux_kvers"
324                  else
325                    if test -f "$LINUX_KERNEL_BUILD/include/linux/utsrelease.h"; then
326                      linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/linux/utsrelease.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
327                      LINUX_VERSION="$linux_kvers"
328                    else
329                      if test -f "$LINUX_KERNEL_BUILD/include/linux/version.h"; then
330                        linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/linux/version.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
331                        if test "x$linux_kvers" = "x"; then
332                          if test -f "$LINUX_KERNEL_BUILD/include/linux/version-up.h"; then
333                            linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_BUILD/include/linux/version-up.h |awk 'BEGIN { FS="\"" } { print $[]2 }'|tail -n 1`
334                            if test "x$linux_kvers" = "x"; then
335                              AC_MSG_ERROR(Linux headers lack version definition [2])
336                              exit 1
337                            else
338                              LINUX_VERSION="$linux_kvers"
339                            fi
340                          else
341                            AC_MSG_ERROR(Linux headers lack version definition)
342                            exit 1
343                          fi
344                        else
345                          LINUX_VERSION="$linux_kvers"
346                        fi
347                      else
348                        enable_kernel_module="no"
349                      fi
350                    fi
351                  fi
352                  if test ! -f "$LINUX_KERNEL_BUILD/include/generated/autoconf.h" &&
353                     test ! -f "$LINUX_KERNEL_BUILD/include/linux/autoconf.h"; then
354                      enable_kernel_module="no"
355                  fi
356                  if test "x$enable_kernel_module" = "xno"; then
357                   if test "x$with_linux_kernel_headers" != "x"; then
358                    AC_MSG_ERROR(No usable linux headers found at $LINUX_KERNEL_PATH)
359                    exit 1
360                   else
361                    AC_MSG_WARN(No usable linux headers found at $LINUX_KERNEL_PATH so disabling kernel module)
362                   fi
363                  fi
364                  dnl do we need to determine SUBARCH from autoconf.h
365                  SUBARCH=default
366                 fi
367                 AC_MSG_RESULT(linux)
368                 if test "x$enable_kernel_module" = "xyes"; then
369                  case "$LINUX_VERSION" in
370                   2.2.*) AFS_SYSKVERS=22 ;;
371                   2.4.*) AFS_SYSKVERS=24 ;;
372                   2.6.* | 3.*) AFS_SYSKVERS=26 ;;
373                   *) AC_MSG_ERROR(Couldn't guess your Linux version [2]) ;;
374                  esac
375                 fi
376                 ;;
377         *-solaris*)
378                 MKAFS_OSTYPE=SOLARIS
379                 AC_MSG_RESULT(sun4)
380                 AC_PATH_PROG(SOLARISCC, [cc], ,
381                     [/opt/SUNWspro/bin:/opt/SunStudioExpress/bin:/opt/solarisstudio12.3/bin:/opt/solstudio12.2/bin:/opt/sunstudio12.1/bin])
382                 if test "x$SOLARISCC" = "x" ; then
383                     AC_MSG_FAILURE(Could not find the solaris cc program.  Please define the environment variable SOLARISCC to specify the path.)
384                 fi
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         arm-*-darwin*)
413                 MKAFS_OSTYPE=DARWIN
414                 AC_MSG_RESULT(arm_darwin)
415                 ;;
416         powerpc-*-darwin*)
417                 MKAFS_OSTYPE=DARWIN
418                 AC_MSG_RESULT(ppc_darwin)
419                 ;;
420         i386-*-darwin*)
421                 MKAFS_OSTYPE=DARWIN
422                 AC_MSG_RESULT(x86_darwin)
423                 ;;
424         x86_64-*-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-*-dragonfly?.*)
493                         v=${host#*dragonfly}
494                         vM=${v%.*}
495                         vm=${v#*.}
496                         AFS_SYSNAME="i386_dfbsd_${vM}${vm}"
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                         OSXSDK="macosx10.3"
547                         ;;
548                 powerpc-apple-darwin8.*)
549                         AFS_SYSNAME="ppc_darwin_80"
550                         OSXSDK="macosx10.4"
551                         ;;
552                 i386-apple-darwin8.*)
553                         AFS_SYSNAME="x86_darwin_80"
554                         OSXSDK="macosx10.4"
555                         ;;
556                 powerpc-apple-darwin9.*)
557                         AFS_SYSNAME="ppc_darwin_90"
558                         OSXSDK="macosx10.5"
559                         ;;
560                 i386-apple-darwin9.*)
561                         AFS_SYSNAME="x86_darwin_90"
562                         OSXSDK="macosx10.5"
563                         ;;
564                 i?86-apple-darwin10.*)
565                         AFS_SYSNAME="x86_darwin_100"
566                         OSXSDK="macosx10.6"
567                         ;;
568                 x86_64-apple-darwin10.*)
569                         AFS_SYSNAME="x86_darwin_100"
570                         OSXSDK="macosx10.6"
571                         ;;
572                 arm-apple-darwin10.*)
573                         AFS_SYSNAME="arm_darwin_100"
574                         OSXSDK="iphoneos4.0"
575                         ;;
576                 x86_64-apple-darwin11.*)
577                         AFS_SYSNAME="x86_darwin_110"
578                         OSXSDK="macosx10.7"
579                         ;;
580                 i?86-apple-darwin11.*)
581                         AFS_SYSNAME="x86_darwin_110"
582                         OSXSDK="macosx10.7"
583                         ;;
584                 x86_64-apple-darwin12.*)
585                         AFS_SYSNAME="x86_darwin_120"
586                         OSXSDK="macosx10.8"
587                         ;;
588                 i?86-apple-darwin12.*)
589                         AFS_SYSNAME="x86_darwin_120"
590                         OSXSDK="macosx10.8"
591                         ;;
592                 sparc-sun-solaris2.8)
593                         AFS_SYSNAME="sun4x_58"
594                         ;;
595                 sparc-sun-solaris2.9)
596                         AFS_SYSNAME="sun4x_59"
597                         ;;
598                 sparc-sun-solaris2.10)
599                         AFS_SYSNAME="sun4x_510"
600                         ;;
601                 sparc-sun-solaris2.11)
602                         AFS_SYSNAME="sun4x_511"
603                         ;;
604                 i386-pc-solaris2.8)
605                         AFS_SYSNAME="sunx86_58"
606                         ;;
607                 i386-pc-solaris2.9)
608                         AFS_SYSNAME="sunx86_59"
609                         ;;
610                 i386-pc-solaris2.10)
611                         AFS_SYSNAME="sunx86_510"
612                         ;;
613                 i386-pc-solaris2.11)
614                         AFS_SYSNAME="sunx86_511"
615                         ;;
616                 alpha*-dec-osf4.0*)
617                         AFS_SYSNAME="alpha_dux40"
618                         ;;
619                 alpha*-dec-osf5.0*)
620                         AFS_SYSNAME="alpha_dux50"
621                         ;;
622                 alpha*-dec-osf5.1*)
623                         AFS_SYSNAME="alpha_dux51"
624                         ;;
625                 mips-sgi-irix6.5)
626                         AFS_SYSNAME="sgi_65"
627                         ;;
628                 ia64-*-linux*)
629                         AFS_SYSNAME="ia64_linuxXX"
630                         ;;
631                 powerpc-*-linux*)
632                         AFS_SYSNAME="`/bin/arch`_linuxXX"
633                         ;;
634                 powerpc64-*-linux*)
635                         AFS_SYSNAME="ppc64_linuxXX"
636                         ;;
637                 alpha*-linux*)
638                         AFS_SYSNAME="alpha_linux_XX"
639                         ;;
640                 s390-*-linux*)
641                         AFS_SYSNAME="s390_linuxXX"
642                         ;;
643                 s390x-*-linux*)
644                         AFS_SYSNAME="s390x_linuxXX"
645                         ;;
646                 sparc-*-linux*)
647                         AFS_SYSNAME="`/bin/arch`_linuxXX"
648                         ;;
649                 sparc64-*-linux*)
650                         AFS_SYSNAME="sparc64_linuxXX"
651                         ;;
652                 i?86-*-linux*)
653                         AFS_SYSNAME="i386_linuxXX"
654                         ;;
655                 arm*-linux*)
656                         AFS_SYSNAME="arm_linuxXX"
657                         ;;
658                 parisc-*-linux-gnu|hppa-*-linux-gnu)
659                         AFS_SYSNAME="parisc_linuxXX"
660                         enable_pam="no"
661                         ;;
662                 power*-ibm-aix4.2*)
663                         AFS_SYSNAME="rs_aix42"
664                         enable_pam="no"
665                         ;;
666                 power*-ibm-aix4.3*)
667                         AFS_SYSNAME="rs_aix42"
668                         enable_pam="no"
669                         ;;
670                 power*-ibm-aix5.1*)
671                         AFS_SYSNAME="rs_aix51"
672                         enable_pam="no"
673                         ;;
674                 power*-ibm-aix5.2*)
675                         AFS_SYSNAME="rs_aix52"
676                         enable_pam="no"
677                         ;;
678                 power*-ibm-aix5.3*)
679                         AFS_SYSNAME="rs_aix53"
680                         enable_pam="no"
681                         ;;
682                 power*-ibm-aix6.1*)
683                         AFS_SYSNAME="rs_aix61"
684                         enable_pam="no"
685                         ;;
686                 x86_64-*-linux-gnu)
687                         AFS_SYSNAME="amd64_linuxXX"
688                         enable_pam="yes"
689                         ;;
690                 *)
691                         AC_MSG_ERROR(An AFS sysname is required)
692                         exit 1
693                         ;;
694         esac
695         case $AFS_SYSNAME in
696                 *_linux* | *_umlinux*)
697                         if test "x${AFS_SYSKVERS}" = "x"; then
698                          AC_MSG_ERROR(Couldn't guess your Linux version. Please use the --with-afs-sysname option to configure an AFS sysname.)
699                         fi
700                         _AFS_SYSNAME=`echo $AFS_SYSNAME|sed s/XX\$/$AFS_SYSKVERS/`
701                         AFS_SYSNAME="$_AFS_SYSNAME"
702                         AC_TRY_KBUILD(
703                          [],
704                          [#ifndef CONFIG_USERMODE
705                           #error not UML
706                           #endif],
707                          ac_cv_linux_is_uml=yes,)
708                         if test "${ac_cv_linux_is_uml}" = yes; then
709                          _AFS_SYSNAME=`echo $AFS_SYSNAME|sed s/linux/umlinux/`
710                         fi
711                         AFS_SYSNAME="$_AFS_SYSNAME"
712                         ;;
713         esac
714         AC_MSG_RESULT($AFS_SYSNAME)
715 fi
716
717 case $AFS_SYSNAME in
718         *_darwin*)
719                 AC_CHECK_HEADERS(crt_externs.h)
720                 DARWIN_PLIST=src/libafs/afs.${AFS_SYSNAME}.plist
721                 DARWIN_INFOFILE=afs.${AFS_SYSNAME}.plist
722                 AC_SUBST(OSXSDK)
723                 ;;
724 esac
725
726 dnl Some hosts have a separate common param file they should include.  Figure
727 dnl out if we're on one of them now that we know the sysname.
728 case $AFS_SYSNAME in
729     *_nbsd15)   AFS_PARAM_COMMON=param.nbsd15.h  ;;
730     *_nbsd16)   AFS_PARAM_COMMON=param.nbsd16.h  ;;
731     *_nbsd20)   AFS_PARAM_COMMON=param.nbsd20.h  ;;
732     *_nbsd21)   AFS_PARAM_COMMON=param.nbsd21.h  ;;
733     *_nbsd30)   AFS_PARAM_COMMON=param.nbsd30.h  ;;
734     *_nbsd40)   AFS_PARAM_COMMON=param.nbsd40.h  ;;
735     *_nbsd50)   AFS_PARAM_COMMON=param.nbsd50.h  ;;
736     *_nbsd60)   AFS_PARAM_COMMON=param.nbsd60.h  ;;
737     *_obsd31)   AFS_PARAM_COMMON=param.obsd31.h  ;;
738     *_obsd32)   AFS_PARAM_COMMON=param.obsd32.h  ;;
739     *_obsd33)   AFS_PARAM_COMMON=param.obsd33.h  ;;
740     *_obsd34)   AFS_PARAM_COMMON=param.obsd34.h  ;;
741     *_obsd35)   AFS_PARAM_COMMON=param.obsd35.h  ;;
742     *_obsd36)   AFS_PARAM_COMMON=param.obsd36.h  ;;
743     *_obsd37)   AFS_PARAM_COMMON=param.obsd37.h  ;;
744     *_obsd38)   AFS_PARAM_COMMON=param.obsd38.h  ;;
745     *_obsd39)   AFS_PARAM_COMMON=param.obsd39.h  ;;
746     *_obsd40)   AFS_PARAM_COMMON=param.obsd40.h  ;;
747     *_obsd41)   AFS_PARAM_COMMON=param.obsd41.h  ;;
748     *_obsd42)   AFS_PARAM_COMMON=param.obsd42.h  ;;
749     *_obsd43)   AFS_PARAM_COMMON=param.obsd43.h  ;;
750     *_obsd44)   AFS_PARAM_COMMON=param.obsd44.h  ;;
751     *_obsd45)   AFS_PARAM_COMMON=param.obsd45.h  ;;
752     *_obsd46)   AFS_PARAM_COMMON=param.obsd46.h  ;;
753     *_obsd47)   AFS_PARAM_COMMON=param.obsd47.h  ;;
754     *_obsd48)   AFS_PARAM_COMMON=param.obsd48.h  ;;
755     *_linux22)  AFS_PARAM_COMMON=param.linux22.h ;;
756     *_linux24)  AFS_PARAM_COMMON=param.linux24.h ;;
757     *_linux26)  AFS_PARAM_COMMON=param.linux26.h ;;
758 # Linux alpha adds an extra underscore for no good reason.
759     *_linux_22) AFS_PARAM_COMMON=param.linux22.h ;;
760     *_linux_24) AFS_PARAM_COMMON=param.linux24.h ;;
761     *_linux_26) AFS_PARAM_COMMON=param.linux26.h ;;
762 esac
763
764 OPENAFS_OSCONF
765
766 case $AFS_SYSNAME in *_linux* | *_umlinux*)
767
768                 # Add (sub-) architecture-specific paths needed by conftests
769                 case $AFS_SYSNAME  in
770                         *_umlinux26)
771                                 UMLINUX26_FLAGS="-I$LINUX_KERNEL_PATH/arch/um/include"
772                                 UMLINUX26_FLAGS="$UMLINUX26_FLAGS -I$LINUX_KERNEL_PATH/arch/um/kernel/tt/include"
773                                 UMLINUX26_FLAGS="$UMLINUX26_FLAGS -I$LINUX_KERNEL_PATH/arch/um/kernel/skas/include"
774                                 CPPFLAGS="$CPPFLAGS $UMLINUX26_FLAGS"
775                 esac
776
777                 if test "x$enable_kernel_module" = "xyes"; then
778                  if test "x$enable_debug_kernel" = "xno"; then
779                         LINUX_GCC_KOPTS="$LINUX_GCC_KOPTS -fomit-frame-pointer"
780                  fi
781                  OPENAFS_GCC_SUPPORTS_MARCH
782                  AC_SUBST(P5PLUS_KOPTS)
783                  OPENAFS_GCC_NEEDS_NO_STRENGTH_REDUCE
784                  OPENAFS_GCC_NEEDS_NO_STRICT_ALIASING
785                  OPENAFS_GCC_SUPPORTS_NO_COMMON
786                  OPENAFS_GCC_SUPPORTS_PIPE
787                  AC_SUBST(LINUX_GCC_KOPTS)
788
789                  dnl Setup the kernel build environment
790                  LINUX_KBUILD_USES_EXTRA_CFLAGS
791                  LINUX_KERNEL_COMPILE_WORKS
792
793                  dnl Check for header files
794                  AC_CHECK_LINUX_HEADER([config.h])
795                  AC_CHECK_LINUX_HEADER([completion.h])
796                  AC_CHECK_LINUX_HEADER([exportfs.h])
797                  AC_CHECK_LINUX_HEADER([freezer.h])
798                  AC_CHECK_LINUX_HEADER([key-type.h])
799                  AC_CHECK_LINUX_HEADER([semaphore.h])
800                  AC_CHECK_LINUX_HEADER([seq_file.h])
801
802                  dnl Check for structure elements
803                  AC_CHECK_LINUX_STRUCT([address_space_operations],
804                                        [write_begin], [fs.h])
805                  AC_CHECK_LINUX_STRUCT([backing_dev_info], [name],
806                                        [backing-dev.h])
807                  AC_CHECK_LINUX_STRUCT([ctl_table], [ctl_name], [sysctl.h])
808                  AC_CHECK_LINUX_STRUCT([dentry_operations], [d_automount], [dcache.h])
809                  AC_CHECK_LINUX_STRUCT([inode], [i_alloc_sem], [fs.h])
810                  AC_CHECK_LINUX_STRUCT([inode], [i_blkbits], [fs.h])
811                  AC_CHECK_LINUX_STRUCT([inode], [i_blksize], [fs.h])
812                  AC_CHECK_LINUX_STRUCT([inode], [i_mutex], [fs.h])
813                  AC_CHECK_LINUX_STRUCT([inode], [i_security], [fs.h])
814                  AC_CHECK_LINUX_STRUCT([file_operations], [flock], [fs.h])
815                  AC_CHECK_LINUX_STRUCT([file_operations], [sendfile], [fs.h])
816                  AC_CHECK_LINUX_STRUCT([file_system_type], [mount], [fs.h])
817                  AC_CHECK_LINUX_STRUCT([nameidata], [path], [namei.h])
818                  AC_CHECK_LINUX_STRUCT([proc_dir_entry], [owner], [proc_fs.h])
819                  AC_CHECK_LINUX_STRUCT([super_block], [s_bdi], [fs.h])
820                  AC_CHECK_LINUX_STRUCT([super_block], [s_d_op], [fs.h])
821                  AC_CHECK_LINUX_STRUCT([super_operations], [alloc_inode],
822                                        [fs.h])
823                  AC_CHECK_LINUX_STRUCT([super_operations], [evict_inode],
824                                        [fs.h])
825                  AC_CHECK_LINUX_STRUCT([task_struct], [cred], [sched.h])
826                  AC_CHECK_LINUX_STRUCT([task_struct], [exit_state], [sched.h])
827                  AC_CHECK_LINUX_STRUCT([task_struct], [parent], [sched.h])
828                  AC_CHECK_LINUX_STRUCT([task_struct], [real_parent], [sched.h])
829                  AC_CHECK_LINUX_STRUCT([task_struct], [rlim], [sched.h])
830                  AC_CHECK_LINUX_STRUCT([task_struct], [sig], [sched.h])
831                  AC_CHECK_LINUX_STRUCT([task_struct], [sighand], [sched.h])
832                  AC_CHECK_LINUX_STRUCT([task_struct], [sigmask_lock], [sched.h])
833                  AC_CHECK_LINUX_STRUCT([task_struct], [tgid], [sched.h])
834                  AC_CHECK_LINUX_STRUCT([task_struct], [thread_info], [sched.h])
835                  LINUX_SCHED_STRUCT_TASK_STRUCT_HAS_SIGNAL_RLIM
836
837                  dnl Check for typed structure elements
838                  AC_CHECK_LINUX_TYPED_STRUCT([read_descriptor_t],
839                                              [buf], [fs.h])
840
841                  dnl Function existence checks
842
843                  AC_CHECK_LINUX_FUNC([bdi_init],
844                                      [#include <linux/backing-dev.h>],
845                                      [bdi_init(NULL);])
846                  AC_CHECK_LINUX_FUNC([PageChecked],
847                                      [#include <linux/mm.h>
848 #include <linux/page-flags.h>],
849                                      [struct page *_page;
850                                       int bchecked = PageChecked(_page);])
851                  AC_CHECK_LINUX_FUNC([PageFsMisc],
852                                      [#include <linux/mm.h>
853 #include <linux/page-flags.h>],
854                                      [struct page *_page;
855                                       int bchecked = PageFsMisc(_page);])
856                  AC_CHECK_LINUX_FUNC([clear_inode],
857                                      [#include <linux/fs.h>],
858                                      [clear_inode(NULL);])
859                  AC_CHECK_LINUX_FUNC([current_kernel_time],
860                                      [#include <linux/time.h>],
861                                      [struct timespec s;
862                                       s = current_kernel_time();])
863                  AC_CHECK_LINUX_FUNC([d_alloc_anon],
864                                      [#include <linux/fs.h>],
865                                      [d_alloc_anon(NULL);])
866                  AC_CHECK_LINUX_FUNC([d_make_root],
867                                      [#include <linux/fs.h>],
868                                      [d_make_root(NULL);])
869                  AC_CHECK_LINUX_FUNC([do_sync_read],
870                                      [#include <linux/fs.h>],
871                                      [do_sync_read(NULL, NULL, 0, NULL);])
872                  AC_CHECK_LINUX_FUNC([find_task_by_pid],
873                                      [#include <linux/sched.h>],
874                                      [pid_t p; find_task_by_pid(p);])
875                  AC_CHECK_LINUX_FUNC([generic_file_aio_read],
876                                      [#include <linux/fs.h>],
877                                      [generic_file_aio_read(NULL,NULL,0,0);])
878                  AC_CHECK_LINUX_FUNC([grab_cache_page_write_begin],
879                                      [#include <linux/pagemap.h>],
880                                      [grab_cache_page_write_begin(NULL, 0, 0);])
881                  AC_CHECK_LINUX_FUNC([hlist_unhashed],
882                                      [#include <linux/list.h>],
883                                      [hlist_unhashed(0);])
884                  AC_CHECK_LINUX_FUNC([i_size_read],
885                                      [#include <linux/fs.h>],
886                                      [i_size_read(NULL);])
887                  AC_CHECK_LINUX_FUNC([inode_setattr],
888                                      [#include <linux/fs.h>],
889                                      [inode_setattr(NULL, NULL);])
890                  AC_CHECK_LINUX_FUNC([kernel_setsockopt],
891                                      [#include <linux/net.h>],
892                                      [kernel_setsockopt(NULL, 0, 0, NULL, 0);])
893                  AC_CHECK_LINUX_FUNC([page_follow_link],
894                                      [#include <linux/fs.h>],
895                                      [page_follow_link(0,0);])
896                  AC_CHECK_LINUX_FUNC([page_offset],
897                                      [#include <linux/pagemap.h>],
898                                      [page_offset(NULL);])
899                  AC_CHECK_LINUX_FUNC([pagevec_lru_add_file],
900                                      [#include <linux/pagevec.h>],
901                                      [__pagevec_lru_add_file(NULL);])
902                  AC_CHECK_LINUX_FUNC([path_lookup],
903                                      [#include <linux/fs.h>
904                                       #include <linux/namei.h>],
905                                      [path_lookup(NULL, 0, NULL);])
906                  AC_CHECK_LINUX_FUNC([rcu_read_lock],
907                                      [#include <linux/rcupdate.h>],
908                                      [rcu_read_lock();])
909                  AC_CHECK_LINUX_FUNC([set_nlink],
910                                      [#include <linux/fs.h>],
911                                      [set_nlink(NULL, 1);])
912                  AC_CHECK_LINUX_FUNC([splice_direct_to_actor],
913                                      [#include <linux/splice.h>],
914                                      [splice_direct_to_actor(NULL,NULL,NULL);])
915                  AC_CHECK_LINUX_FUNC([svc_addr_in],
916                                      [#include <linux/sunrpc/svc.h>],
917                                      [svc_addr_in(NULL);])
918                  AC_CHECK_LINUX_FUNC([zero_user_segments],
919                                      [#include <linux/highmem.h>],
920                                      [zero_user_segments(NULL, 0, 0, 0, 0);])
921                  AC_CHECK_LINUX_FUNC([noop_fsync],
922                                      [#include <linux/fs.h>],
923                                      [void *address = &noop_fsync; printk("%p\n", address)];)
924                  AC_CHECK_LINUX_FUNC([kthread_run],
925                                      [#include <linux/kernel.h>
926                                       #include <linux/kthread.h>],
927                                      [kthread_run(NULL, NULL, "test");])
928
929                  dnl Consequences - things which get set as a result of the
930                  dnl                above tests
931                  AS_IF([test "x$ac_cv_linux_func_d_alloc_anon" = "xno"],
932                        [AC_DEFINE([AFS_NONFSTRANS], 1,
933                                   [define to disable the nfs translator])])
934
935                  dnl Assorted more complex tests
936                  LINUX_EXPORTS_PROC_ROOT_FS
937                  LINUX_KMEM_CACHE_INIT
938                  LINUX_HAVE_KMEM_CACHE_T
939                  LINUX_KMEM_CACHE_CREATE_TAKES_DTOR
940                  LINUX_KMEM_CACHE_CREATE_CTOR_TAKES_VOID
941                  LINUX_D_PATH_TAKES_STRUCT_PATH
942                  LINUX_NEW_EXPORT_OPS
943                  LINUX_INODE_SETATTR_RETURN_TYPE
944                  LINUX_IOP_I_CREATE_TAKES_NAMEIDATA
945                  LINUX_IOP_I_LOOKUP_TAKES_NAMEIDATA
946                  LINUX_IOP_I_PERMISSION_TAKES_FLAGS
947                  LINUX_IOP_I_PERMISSION_TAKES_NAMEIDATA
948                  LINUX_IOP_I_PUT_LINK_TAKES_COOKIE
949                  LINUX_DOP_D_DELETE_TAKES_CONST
950                  LINUX_DOP_D_REVALIDATE_TAKES_NAMEIDATA
951                  LINUX_FOP_F_FLUSH_TAKES_FL_OWNER_T
952                  LINUX_FOP_F_FSYNC_TAKES_DENTRY
953                  LINUX_FOP_F_FSYNC_TAKES_RANGE
954                  LINUX_AOP_WRITEBACK_CONTROL
955                  LINUX_FS_STRUCT_FOP_HAS_SPLICE
956                  LINUX_KERNEL_POSIX_LOCK_FILE_WAIT_ARG
957                  LINUX_POSIX_TEST_LOCK_RETURNS_CONFLICT
958                  LINUX_POSIX_TEST_LOCK_CONFLICT_ARG
959                  LINUX_KERNEL_SOCK_CREATE
960                  LINUX_EXPORTS_KEY_TYPE_KEYRING
961                  LINUX_NEED_RHCONFIG
962                  LINUX_RECALC_SIGPENDING_ARG_TYPE
963                  LINUX_EXPORTS_TASKLIST_LOCK
964                  LINUX_GET_SB_HAS_STRUCT_VFSMOUNT
965                  LINUX_STATFS_TAKES_DENTRY
966                  LINUX_REFRIGERATOR
967                  LINUX_HAVE_TRY_TO_FREEZE
968                  LINUX_LINUX_KEYRING_SUPPORT
969                  LINUX_KEY_ALLOC_NEEDS_STRUCT_TASK
970                  LINUX_KEY_ALLOC_NEEDS_CRED
971                  LINUX_INIT_WORK_HAS_DATA
972                  LINUX_REGISTER_SYSCTL_TABLE_NOFLAG
973                  LINUX_HAVE_DCACHE_LOCK
974                  LINUX_D_COUNT_IS_INT
975                  LINUX_IOP_MKDIR_TAKES_UMODE_T
976                  LINUX_IOP_CREATE_TAKES_UMODE_T
977                  LINUX_EXPORT_OP_ENCODE_FH_TAKES_INODES
978                  LINUX_KMAP_ATOMIC_TAKES_NO_KM_TYPE
979                  LINUX_DENTRY_OPEN_TAKES_PATH
980                  LINUX_D_ALIAS_IS_HLIST
981
982                  dnl If we are guaranteed that keyrings will work - that is
983                  dnl  a) The kernel has keyrings enabled
984                  dnl  b) The code is new enough to give us a key_type_keyring
985                  dnl then we just disable syscall probing unless we've been
986                  dnl told otherwise
987
988                  AS_IF([test "$enable_linux_syscall_probing" = "maybe"],
989                    [AS_IF([test "$ac_cv_linux_keyring_support" = "yes" -a "$ac_cv_linux_exports_key_type_keyring" = "yes"],
990                           [enable_linux_syscall_probing="no"],
991                           [enable_linux_syscall_probing="yes"])
992                  ])
993
994                  dnl Syscall probing needs a few tests of its own, and just
995                  dnl won't work if the kernel doesn't export init_mm
996                  AS_IF([test "$enable_linux_syscall_probing" = "yes"], [
997                    LINUX_EXPORTS_INIT_MM
998                    AS_IF([test "$ac_cv_linux_exports_init_mm" = "no"], [
999                      AC_MSG_ERROR(
1000                        [Can't do syscall probing without exported init_mm])
1001                    ])
1002                    LINUX_EXPORTS_SYS_CHDIR
1003                    LINUX_EXPORTS_SYS_OPEN
1004                    AC_DEFINE(ENABLE_LINUX_SYSCALL_PROBING, 1,
1005                              [define to enable syscall table probes])
1006                  ])
1007
1008                  dnl Packaging and SMP build
1009                  if test "x$with_linux_kernel_packaging" != "xyes" ; then
1010                    LINUX_WHICH_MODULES
1011                  else
1012                    AC_SUBST(MPS,'SP')
1013                  fi
1014
1015                  dnl Syscall probing
1016                  if test "x$ac_cv_linux_config_modversions" = "xno" -o $AFS_SYSKVERS -ge 26; then
1017                    AS_IF([test "$enable_linux_syscall_probing" = "yes"], [
1018                      AC_MSG_WARN([Cannot determine sys_call_table status. assuming it isn't exported])
1019                    ])
1020                    ac_cv_linux_exports_sys_call_table=no
1021                    if test -f "$LINUX_KERNEL_PATH/include/asm/ia32_unistd.h"; then
1022                      ac_cv_linux_exports_ia32_sys_call_table=yes
1023                    fi
1024                  else
1025                    LINUX_EXPORTS_KALLSYMS_ADDRESS
1026                    LINUX_EXPORTS_KALLSYMS_SYMBOL
1027                    LINUX_EXPORTS_SYS_CALL_TABLE
1028                    LINUX_EXPORTS_IA32_SYS_CALL_TABLE
1029                    if test "x$ac_cv_linux_exports_sys_call_table" = "xno"; then
1030                          linux_syscall_method=none
1031                          if test "x$ac_cv_linux_exports_init_mm" = "xyes"; then
1032                             linux_syscall_method=scan
1033                             if test "x$ac_cv_linux_exports_kallsyms_address" = "xyes"; then
1034                                linux_syscall_method=scan_with_kallsyms_address
1035                             fi
1036                          fi
1037                          if test "x$ac_cv_linux_exports_kallsyms_symbol" = "xyes"; then
1038                             linux_syscall_method=kallsyms_symbol
1039                          fi
1040                          if test "x$linux_syscall_method" = "xnone"; then
1041                             AC_MSG_WARN([no available sys_call_table access method -- guessing scan])
1042                             linux_syscall_method=scan
1043                          fi
1044                    fi
1045                  fi
1046                  if test -f "$LINUX_KERNEL_PATH/include/linux/in_systm.h"; then
1047                   AC_DEFINE(HAVE_IN_SYSTM_H, 1, [define if you have in_systm.h header file])
1048                  fi
1049                  if test -f "$LINUX_KERNEL_PATH/include/linux/mm_inline.h"; then
1050                   AC_DEFINE(HAVE_MM_INLINE_H, 1, [define if you have mm_inline.h header file])
1051                  fi
1052                  if test "x$ac_cv_linux_kernel_page_follow_link" = "xyes" -o "x$ac_cv_linux_func_i_put_link_takes_cookie" = "xyes"; then
1053                   AC_DEFINE(USABLE_KERNEL_PAGE_SYMLINK_CACHE, 1, [define if your kernel has a usable symlink cache API])
1054                  else
1055                   AC_MSG_WARN([your kernel does not have a usable symlink cache API])
1056                  fi
1057                 :
1058                 fi
1059 dnl Linux-only, but just enable always.
1060                 AC_DEFINE(AFS_CACHE_BYPASS, 1, [define to activate cache bypassing Unix client])
1061 esac
1062
1063 AC_CACHE_CHECK([if compiler has __sync_add_and_fetch],
1064     [ac_cv_sync_fetch_and_add],
1065     [AC_TRY_LINK(, [int var; return __sync_add_and_fetch(&var, 1);],
1066                     [ac_cv_sync_fetch_and_add=yes],
1067                     [ac_cv_sync_fetch_and_add=no])
1068 ])
1069 AS_IF([test "$ac_cv_sync_fetch_and_add" = "yes"],
1070       [AC_DEFINE(HAVE_SYNC_FETCH_AND_ADD, 1,
1071                 [define if your C compiler has __sync_add_and_fetch])])
1072
1073 AC_CACHE_CHECK([if struct sockaddr has sa_len field],
1074     [ac_cv_sockaddr_len],
1075     [AC_TRY_COMPILE( [#include <sys/types.h>
1076 #include <sys/socket.h>],
1077                      [struct sockaddr *a; a->sa_len=0;],
1078                      [ac_cv_sockaddr_len=yes],
1079                      [ac_cv_sockaddr_len=no])
1080 ])
1081 AS_IF([test "$ac_cv_sockaddr_len" = "yes"],
1082       [AC_DEFINE(STRUCT_SOCKADDR_HAS_SA_LEN, 1,
1083                  [define if you struct sockaddr sa_len])])
1084
1085 if test "x${MKAFS_OSTYPE}" = "xIRIX"; then
1086         echo Skipping library tests because they confuse Irix.
1087 else
1088   AC_SEARCH_LIBS([socket], [socket inet])
1089   AC_SEARCH_LIBS([connect], [nsl])
1090   AC_SEARCH_LIBS([gethostbyname], [dns nsl resolv])
1091
1092   dnl darwin wants it, aix hates it
1093   AC_MSG_CHECKING(for the useability of arpa/nameser_compat.h)
1094   AC_TRY_COMPILE([
1095   #include <stdlib.h>
1096   #include <stdio.h>
1097   #include <sys/types.h>
1098   #include <sys/socket.h>
1099   #include <netinet/in.h>
1100   #include <arpa/inet.h>
1101   #include <arpa/nameser.h>
1102   #include <arpa/nameser_compat.h>
1103   #include <resolv.h>
1104   ], [static int i; i = 0;],
1105   [AC_MSG_RESULT(yes)
1106    AC_DEFINE(HAVE_ARPA_NAMESER_COMPAT_H, 1, [define if arpa/nameser_compat.h exists])],
1107   [AC_MSG_RESULT(no)
1108    ])
1109
1110   openafs_save_libs="$LIBS"
1111   AC_MSG_CHECKING([for res_search])
1112   AC_FUNC_RES_SEARCH
1113
1114   if test "$ac_cv_func_res_search" = no; then
1115       for lib in dns nsl resolv; do
1116         if test "$ac_cv_func_res_search" != yes; then
1117           LIBS="-l$lib $LIBS"
1118           AC_FUNC_RES_SEARCH
1119           LIBS="$openafs_save_libs"
1120         fi
1121       done    
1122       if test "$ac_cv_func_res_search" = yes; then
1123         LIB_AFSDB="-l$lib"
1124         AC_DEFINE(HAVE_RES_SEARCH, 1, [])
1125         AC_MSG_RESULT([yes, in lib$lib])
1126       else
1127         AC_MSG_RESULT(no)
1128       fi
1129   else
1130     AC_DEFINE(HAVE_RES_SEARCH, 1, [])
1131     AC_MSG_RESULT(yes)
1132   fi
1133   
1134 fi
1135 XLIBS="$LIB_AFSDB $XLIBS"
1136
1137 AC_CHECK_RESOLV_RETRANS
1138
1139 AC_CACHE_CHECK([for setsockopt(, SOL_IP, IP_RECVERR)],
1140     [ac_cv_setsockopt_iprecverr],
1141     [AC_TRY_COMPILE( [
1142 #include <sys/types.h>
1143 #include <sys/socket.h>
1144 #include <netinet/in.h>],
1145 [int on=1;
1146 setsockopt(0, SOL_IP, IP_RECVERR, &on, sizeof(on));],
1147         [ac_cv_setsockopt_iprecverr=yes],
1148         [ac_cv_setsockopt_iprecverr=no])])
1149
1150 AS_IF([test "$ac_cv_setsockopt_iprecverr" = "yes"],
1151       [AC_DEFINE([HAVE_SETSOCKOPT_IP_RECVERR], [1],
1152                  [define if we can receive socket errors via IP_RECVERR])])
1153
1154 PTHREAD_LIBS=error
1155 if test "x$MKAFS_OSTYPE" = OBSD; then
1156         PTHREAD_LIBS="-pthread"
1157 fi
1158 if test "x$MKAFS_OSTYPE" = xDFBSD; then
1159         PTHREAD_LIBS="-pthread"
1160 fi
1161 if test "x$PTHREAD_LIBS" = xerror; then
1162         AC_CHECK_LIB(pthread, pthread_attr_init,
1163                 PTHREAD_LIBS="-lpthread")
1164 fi
1165 if test "x$PTHREAD_LIBS" = xerror; then
1166         AC_CHECK_LIB(pthreads, pthread_attr_init,
1167                 PTHREAD_LIBS="-lpthreads")
1168 fi
1169 if test "x$PTHREAD_LIBS" = xerror; then
1170         AC_CHECK_LIB(c_r, pthread_attr_init,
1171                 PTHREAD_LIBS="-lc_r")
1172 fi
1173 if test "x$PTHREAD_LIBS" = xerror; then
1174         AC_CHECK_FUNC(pthread_attr_init, PTHREAD_LIBS="")
1175 fi
1176 if test "x$PTHREAD_LIBS" = xerror; then
1177         # pthread_attr_init is a macro under HPUX 11.0 and 11.11
1178         AC_CHECK_LIB(pthread, pthread_attr_destroy,
1179                 PTHREAD_LIBS="-lpthread")
1180 fi
1181 if test "x$PTHREAD_LIBS" = xerror; then
1182         AC_MSG_WARN(*** Unable to locate working posix thread library ***)
1183 fi
1184 AC_SUBST(PTHREAD_LIBS)
1185
1186 HOST_CPU="$host_cpu"
1187
1188 if test "x$with_bsd_kernel_headers" != "x"; then
1189         BSD_KERNEL_PATH="$with_bsd_kernel_headers"
1190 else
1191         BSD_KERNEL_PATH="/usr/src/sys"
1192 fi
1193
1194 if test "x$with_bsd_kernel_build" != "x"; then
1195         BSD_KERNEL_BUILD="$with_bsd_kernel_build"
1196 else
1197         case $AFS_SYSNAME in
1198                 *_fbsd_*)
1199                         BSD_KERNEL_BUILD="${BSD_KERNEL_PATH}/${HOST_CPU}/compile/GENERIC"
1200                         ;;
1201                 *_nbsd*)
1202                         BSD_KERNEL_BUILD="${BSD_KERNEL_PATH}/arch/${HOST_CPU}/compile/GENERIC"
1203         esac
1204 fi
1205
1206 # Fast restart
1207 if test "$enable_supergroups" = "yes"; then
1208         AC_DEFINE(SUPERGROUPS, 1, [define if you want to have support for nested pts groups])
1209 fi
1210
1211 if test "$enable_bitmap_later" = "yes"; then
1212         AC_DEFINE(BITMAP_LATER, 1, [define if you want to salvager to check bitmasks later])
1213 fi
1214
1215 if test "$enable_unix_sockets" = "yes"; then
1216         AC_DEFINE(USE_UNIX_SOCKETS, 1, [define if you want to use UNIX sockets for fssync.])
1217         USE_UNIX_SOCKETS="yes"
1218 else
1219         USE_UNIX_SOCKETS="no"
1220 fi
1221 AC_SUBST(USE_UNIX_SOCKETS)
1222
1223 if test "$enable_namei_fileserver" = "yes"; then
1224         AC_DEFINE(AFS_NAMEI_ENV, 1, [define if you want to want namei fileserver])
1225         VFSCK=""
1226 else
1227         if test "$enable_namei_fileserver" = "default"; then
1228                 case $host in
1229                         *-solaris2.10*)
1230                                 AC_MSG_WARN(Some Solaris 10 versions are not safe with the inode fileserver. Forcing namei. Override with --disable-namei-fileserver)
1231                                 AC_DEFINE(AFS_NAMEI_ENV, 1, [define if you want to want namei fileserver])
1232                                 VFSCK=""
1233                                 ;;
1234                         *-solaris2.11*)
1235                                 AC_MSG_WARN(Solaris 11 versions are not safe with the inode fileserver. Forcing namei. Override with --disable-namei-fileserver)
1236                                 AC_DEFINE(AFS_NAMEI_ENV, 1, [define if you want to want namei fileserver])
1237                                 VFSCK=""
1238                                 ;;
1239                         *)
1240                                 VFSCK="vfsck"
1241                                 ;;
1242                 esac
1243         else
1244                 VFSCK="vfsck"
1245         fi
1246 fi
1247
1248 dnl check for tivoli
1249 AC_MSG_CHECKING(for tivoli tsm butc support)
1250 XBSA_CFLAGS=""
1251 if test "$enable_tivoli_tsm" = "yes"; then
1252         XBSADIR1=/usr/tivoli/tsm/client/api/bin/xopen
1253         XBSADIR2=/opt/tivoli/tsm/client/api/bin/xopen
1254         XBSADIR3=/usr/tivoli/tsm/client/api/bin/sample
1255         XBSADIR4=/opt/tivoli/tsm/client/api/bin/sample
1256
1257         if test -r "$XBSADIR3/dsmapifp.h"; then
1258                 XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR3"
1259                 XBSA_XLIBS="-ldl"
1260                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1261         elif test -r "$XBSADIR4/dsmapifp.h"; then
1262                 XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I$XBSADIR4"
1263                 XBSA_XLIBS="-ldl"
1264                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1265         elif test -r "$XBSADIR1/xbsa.h"; then
1266                 XBSA_CFLAGS="-Dxbsa -I$XBSADIR1"
1267                 XBSA_XLIBS=""
1268                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1269         elif test -r "$XBSADIR2/xbsa.h"; then
1270                 XBSA_CFLAGS="-Dxbsa -I$XBSADIR2"
1271                 XBSA_XLIBS=""
1272                 AC_MSG_RESULT([yes, $XBSA_CFLAGS])
1273         else
1274                 AC_MSG_RESULT([no, missing xbsa.h and dsmapifp.h header files])
1275         fi
1276 else
1277         AC_MSG_RESULT([no])
1278 fi
1279 AC_SUBST(XBSA_CFLAGS)
1280 AC_SUBST(XBSA_XLIBS) 
1281
1282 dnl checks for header files.
1283 AC_HEADER_STDC
1284 AC_HEADER_SYS_WAIT
1285 AC_HEADER_DIRENT
1286 AC_CHECK_HEADERS([ \
1287                    arpa/inet.h \
1288                    arpa/nameser.h \
1289                    curses.h\
1290                    direct.h \
1291                    et/com_err.h \
1292                    errno.h \
1293                    fcntl.h \
1294                    grp.h \
1295                    math.h \
1296                    mntent.h \
1297                    ncurses.h \
1298                    netdb.h \
1299                    netinet/in.h \
1300                    pthread_np.h \
1301                    pwd.h \
1302                    regex.h \
1303                    security/pam_appl.h \
1304                    signal.h \
1305                    stdint.h \
1306                    stdio_ext.h \
1307                    stdlib.h \
1308                    string.h \
1309                    strings.h \
1310                    sys/bitypes.h \
1311                    sys/bswap.h \
1312                    sys/dk.h \
1313                    sys/fcntl.h \
1314                    sys/file.h \
1315                    sys/fs_types.h \
1316                    sys/fstyp.h \
1317                    sys/ioctl.h \
1318                    sys/ipc.h \
1319                    sys/lockf.h \
1320                    sys/map.h \
1321                    sys/mount.h \
1322                    sys/mntent.h \
1323                    sys/mnttab.h \
1324                    sys/pag.h \
1325                    sys/param.h \
1326                    sys/resource.h \
1327                    sys/select.h \
1328                    sys/statfs.h \
1329                    sys/statvfs.h \
1330                    sys/socket.h \
1331                    sys/sysctl.h \
1332                    sys/time.h \
1333                    sys/types.h \
1334                    sys/uio.h \
1335                    sys/un.h \
1336                    sys/vfs.h \
1337                    syslog.h \
1338                    termios.h \
1339                    time.h \
1340                    ucontext.h \
1341                    unistd.h \
1342                    windows.h \
1343                 ])
1344
1345 AC_CHECK_HEADERS([resolv.h], [], [], [AC_INCLUDES_DEFAULT
1346 #ifdef HAVE_NETINET_IN_H
1347 # include <netinet/in.h>
1348 #endif])
1349
1350 AC_CHECK_HEADERS([net/if.h],[],[],[AC_INCLUDES_DEFAULT
1351 #ifdef HAVE_SYS_SOCKET_H
1352 # include <sys/socket.h>
1353 #endif])
1354
1355 AC_CHECK_HEADERS([netinet/if_ether.h],[],[],[AC_INCLUDES_DEFAULT
1356 #ifdef HAVE_SYS_SOCKET_H
1357 # include <sys/socket.h>
1358 #endif
1359 #ifdef HAVE_NETINET_IN_H
1360 # include <netinet/in.h>
1361 #endif
1362 #ifdef HAVE_NET_IF_H
1363 # include <net/if.h>
1364 #endif])
1365
1366 AC_CHECK_HEADERS([security/pam_modules.h],[],[],[AC_INCLUDES_DEFAULT
1367 #ifdef HAVE_SECURITY_PAM_APPL_H
1368 # include <security/pam_appl.h>
1369 #endif])
1370
1371 AC_CHECK_HEADERS(linux/errqueue.h,,,[#include <linux/types.h>])
1372
1373 AC_CHECK_TYPES([fsblkcnt_t],,,[
1374 #include <sys/types.h>
1375 #ifdef HAVE_SYS_BITYPES_H
1376 #include <sys/bitypes.h>
1377 #endif
1378 #ifdef HAVE_SYS_STATFS_H
1379 #include <sys/statfs.h>
1380 #endif
1381 #ifdef HAVE_SYS_STATVFS_H
1382 #include <sys/statvfs.h>
1383 #endif
1384 ])
1385
1386 dnl see what struct stat has for timestamps
1387 AC_CHECK_MEMBERS([struct stat.st_ctimespec, struct stat.st_ctimensec])
1388
1389 dnl check for curses-lib
1390 AS_IF([test "x$enable_gtx" != "xno"],
1391       [save_LIBS=$LIBS
1392       AC_CHECK_LIB( [ncurses], [setupterm],
1393       [LIB_curses=-lncurses],
1394         [AC_CHECK_LIB([Hcurses], [setupterm], [LIB_curses=-lHcurses],
1395           [AC_CHECK_LIB([curses], [setupterm], [LIB_curses=-lcurses])])
1396       ])
1397       LIBS=$save_LIBS
1398       AC_SUBST(LIB_curses)])
1399         
1400 OPENAFS_TEST_PACKAGE(libintl,[#include <libintl.h>],[-lintl],,,INTL)
1401
1402 dnl Don't build PAM on IRIX; the interface doesn't work for us.
1403 if test "$ac_cv_header_security_pam_modules_h" = yes -a "$enable_pam" = yes; then
1404         case $AFS_SYSNAME in
1405         sgi_*)
1406                 HAVE_PAM="no"
1407                 ;;
1408         *)
1409                 HAVE_PAM="yes"
1410                 ;;
1411         esac
1412 else
1413         HAVE_PAM="no"
1414 fi
1415 AC_SUBST(HAVE_PAM)
1416
1417 if test "$enable_login" = yes; then
1418         BUILD_LOGIN="yes"
1419 else
1420         BUILD_LOGIN="no"
1421 fi
1422 AC_SUBST(BUILD_LOGIN)
1423
1424 if test "$enable_uss" = yes; then
1425         BUILD_USS="yes"
1426 else
1427         BUILD_USS="no"
1428 fi
1429 AC_SUBST(BUILD_USS)
1430
1431 AC_CHECK_FUNCS([ \
1432         arc4random \
1433         fcntl \
1434         fseeko64 \
1435         ftello64 \
1436         getcwd \
1437         getegid \
1438         geteuid \
1439         getgid \
1440         getuid \
1441         getrlimit \
1442         issetugid \
1443         mkstemp \
1444         pread \
1445         preadv \
1446         preadv64 \
1447         pwrite \
1448         pwritev \
1449         pwritev64 \
1450         regcomp \
1451         regerror \
1452         regexec \
1453         setitimer \
1454         setvbuf \
1455         sigaction \
1456         strcasestr \
1457         strerror \
1458         sysconf \
1459         sysctl \
1460         tdestroy \
1461         timegm \
1462 ])
1463
1464 OPENAFS_ROKEN()
1465 OPENAFS_C_ATTRIBUTE()
1466
1467 dnl Functions that Heimdal's libroken provides, but that we
1468 dnl haven't found a need for yet, and so haven't imported
1469 AC_CHECK_FUNCS([ \
1470         chown \
1471         fchown \
1472         gethostname \
1473         lstat \
1474         inet_aton \
1475         inet_ntop \
1476         inet_pton \
1477         putenv \
1478         readv \
1479         setenv \
1480         strdup \
1481         strftime \
1482         strndup \
1483         strsep \
1484         unsetenv \
1485 ])
1486
1487 dnl Functions that are in objects that we always build from libroken
1488 AC_CHECK_FUNCS([ \
1489         asprintf \
1490         asnprintf \
1491         vasprintf \
1492         vasnprintf \
1493         vsnprintf \
1494         snprintf \
1495 ])
1496
1497 dnl Functions that we're going to try and get from libroken
1498 AC_REPLACE_FUNCS([ \
1499         daemon \
1500         ecalloc \
1501         emalloc \
1502         erealloc \
1503         err \
1504         errx \
1505         flock \
1506         getdtablesize \
1507         getopt \
1508         getprogname \
1509         gettimeofday \
1510         localtime_r \
1511         mkstemp \
1512         setenv \
1513         setprogname \
1514         strcasecmp \
1515         strlcat \
1516         strnlen \
1517         strlcpy \
1518         strsep \
1519         tdelete \
1520         tfind \
1521         tsearch \
1522         twalk \
1523         unsetenv \
1524         verr \
1525         verrx \
1526         vsyslog \
1527         vwarn \
1528         vwarnx \
1529         warn \
1530         warnx \
1531 ])
1532
1533 dnl Headers that we're going to try and get from libroken
1534 AC_CHECK_HEADERS([ \
1535         err.h \
1536         search.h \
1537 ])
1538
1539 AC_CHECK_DECLS([h_errno], [], [], [
1540 #include <sys/types.h>
1541 #ifdef HAVE_NETDB_H
1542 #include <netdb.h>
1543 #endif
1544 ])
1545
1546 AC_HEADER_TIME
1547
1548 ROKEN_HEADERS=
1549 AS_IF([test "$ac_cv_header_err_h" != "yes" ],
1550       [ROKEN_HEADERS="$ROKEN_HEADERS \$(TOP_INCDIR)/err.h"],
1551       [])
1552 AC_SUBST(ROKEN_HEADERS)
1553
1554 dnl Stuff that's harder ...
1555 AC_MSG_CHECKING([for bswap16])
1556 AC_LINK_IFELSE([AC_LANG_PROGRAM([
1557 #ifdef HAVE_SYS_TYPES_H
1558 #include <sys/types.h>
1559 #endif
1560 #ifdef HAVE_SYS_BSWAP_H
1561 #include <sys/bswap.h>
1562 #endif
1563 ],
1564 [short a, b; b = bswap16(a); ])],
1565 [AC_MSG_RESULT(yes)
1566  AC_DEFINE(HAVE_BSWAP16, 1, [Define to 1 if you have the bswap16 function])
1567 ],
1568 [AC_MSG_RESULT(no)])
1569
1570 AC_MSG_CHECKING([for bswap32])
1571 AC_LINK_IFELSE([AC_LANG_PROGRAM([#ifdef HAVE_SYS_TYPES_H
1572 #include <sys/types.h>
1573 #endif
1574 #ifdef HAVE_SYS_BSWAP_H
1575 #include <sys/bswap.h>
1576 #endif
1577 ],
1578 [int a, b; b = bswap32(a); ])],
1579 [AC_MSG_RESULT(yes)
1580  AC_DEFINE(HAVE_BSWAP32, 1, [Define to 1 if you have the bswap32 function])
1581 ],
1582 [AC_MSG_RESULT(no)])
1583
1584 case $AFS_SYSNAME in
1585 *hp_ux* | *hpux*)
1586    AC_MSG_WARN([Some versions of HP-UX have a buggy positional I/O implementation. Forcing no positional I/O.])
1587    ;;
1588 *)
1589    AC_MSG_CHECKING([for positional I/O])
1590    if test "$ac_cv_func_pread" = "yes" && \
1591            test "$ac_cv_func_pwrite" = "yes"; then
1592       AC_DEFINE(HAVE_PIO, 1, [define if you have pread() and pwrite()])
1593       AC_MSG_RESULT(yes)
1594    else
1595      AC_MSG_RESULT(no)
1596    fi
1597    AC_MSG_CHECKING([for vectored positional I/O])
1598    AS_IF([test "$ac_cv_func_preadv" = "yes" -a \
1599                "$ac_cv_func_pwritev" = "yes" -a \
1600                "$ac_cv_func_preadv64" = "yes" -a \
1601                "$ac_cv_func_pwritev64" = "yes"],
1602          [AC_DEFINE(HAVE_PIOV, 1, [define if you have preadv() and pwritev()])
1603           AC_MSG_RESULT(yes)],
1604          [AC_MSG_RESULT(no)])
1605    ;;
1606 esac
1607
1608 AC_MSG_CHECKING([for POSIX regex library])
1609 if test "$ac_cv_header_regex_h" = "yes" && \
1610         test "$ac_cv_func_regcomp" = "yes" && \
1611         test "$ac_cv_func_regexec" = "yes" && \
1612         test "$ac_cv_func_regerror" = "yes"; then
1613     AC_DEFINE(HAVE_POSIX_REGEX, 1, [define if you have POSIX regex library])
1614     AC_MSG_RESULT(yes)
1615 else
1616     AC_MSG_RESULT(no)
1617 fi
1618
1619 dnl Look for "non-portable" pthreads functions.
1620 save_LIBS="$LIBS"
1621 LIBS="$LIBS $PTHREAD_LIBS"
1622 AC_CHECK_FUNCS([ \
1623         pthread_set_name_np \
1624         pthread_setname_np \
1625 ])
1626
1627 dnl Sadly, there are three different versions of pthread_setname_np.
1628 dnl Try to cater for all of them.
1629 if test "$ac_cv_func_pthread_setname_np" = "yes" ; then
1630     AC_MSG_CHECKING([for signature of pthread_setname_np])
1631     AC_TRY_COMPILE([
1632 #include <pthread.h>
1633 #ifdef HAVE_PTHREAD_NP_H
1634 #include <pthread_np.h>
1635 #endif
1636 ], [pthread_setname_np(pthread_self(), "test", (void *)0)], [
1637         AC_MSG_RESULT([three arguments])
1638         pthread_setname_np_args=3], [
1639         AC_TRY_COMPILE([
1640 #include <pthread.h>
1641 #ifdef HAVE_PTHREAD_NP_H
1642 #include <pthread_np.h>
1643 #endif
1644 ], [pthread_setname_np(pthread_self(), "test")], [
1645             AC_MSG_RESULT([two arguments])
1646             pthread_setname_np_args=2], [
1647             AC_TRY_COMPILE([
1648 #include <pthread.h>
1649 #ifdef HAVE_PTHREAD_NP_H
1650 #include <pthread_np.h>
1651 #endif
1652 ], [pthread_setname_np("test")], [
1653                 AC_MSG_RESULT([one argument])
1654                 pthread_setname_np_args=1], [pthread_setname_np_args=0])
1655 ])
1656 ])
1657 AC_DEFINE_UNQUOTED([PTHREAD_SETNAME_NP_ARGS], $pthread_setname_np_args, [Number of arguments required by pthread_setname_np() function])
1658 fi
1659 LIBS="$save_LIBS"
1660
1661 openafs_cv_saved_CFLAGS="$CFLAGS"
1662 CFLAGS="$CFLAGS $XCFLAGS_NOCHECKING"
1663
1664 AC_TYPE_SIGNAL
1665 OPENAFS_RETSIGTYPE
1666 AC_CHECK_SIZEOF(void *)
1667 AC_CHECK_SIZEOF(unsigned long long)
1668 AC_CHECK_SIZEOF(unsigned long)
1669 AC_CHECK_SIZEOF(unsigned int)
1670 AC_TYPE_INTPTR_T
1671 AC_TYPE_UINTPTR_T
1672 AC_TYPE_SSIZE_T
1673 AC_CHECK_TYPE([sig_atomic_t],[],
1674     [AC_DEFINE([sig_atomic_t], [int],
1675         [Define to int if <signal.h> does not define.])],
1676 [#include <sys/types.h>
1677 #include <signal.h>])
1678 AC_CHECK_TYPE([socklen_t],[],
1679     [AC_DEFINE([socklen_t], [int],
1680         [Define to int if <sys/socket.h> does not define.])],
1681 [#include <sys/types.h>
1682 #include <sys/socket.h>])
1683 AC_CHECK_TYPES(off64_t)
1684 AC_CHECK_TYPES([ssize_t], [], [], [#include <unistd.h>])
1685 AC_CHECK_TYPES([struct winsize], [], [], [
1686 #ifdef HAVE_TERMIOS_H
1687 # include <termios.h>
1688 #else
1689 # include <sys/termios.h>
1690 #endif
1691 #include <sys/ioctl.h>])
1692 AC_CHECK_TYPES([sa_family_t, socklen_t, struct sockaddr,
1693                 struct sockaddr_storage],
1694                [], [], [
1695 #include <sys/types.h>
1696 #include <sys/socket.h>
1697 ])
1698 AC_CHECK_TYPES([sa_family_t], [], [], [
1699 #include <sys/types.h>
1700 #include <sys/socket.h>
1701 ])
1702 AC_CHECK_TYPES([struct addrinfo], [], [], [
1703 #include <sys/types.h>
1704 #ifdef HAVE_NETDB_H
1705 #include <netdb.h>
1706 #endif
1707 ])
1708 AC_CHECK_TYPES([long long], [], [], [])
1709
1710 AC_SIZEOF_TYPE(long)
1711
1712 CFLAGS="$openafs_cv_saved_CFLAGS"
1713
1714 RRA_HEADER_PAM_CONST
1715
1716
1717 dnl Directory PATH handling
1718 if test "x$enable_transarc_paths" = "xyes"  ; then 
1719     afsconfdir=${afsconfdir=/usr/afs/etc}
1720     viceetcdir=${viceetcdir=/usr/vice/etc}
1721     afskerneldir=${afskerneldir=${viceetcdir}}
1722     afssrvbindir=${afssrvbindir=/usr/afs/bin}
1723     afssrvsbindir=${afssrvsbindir=/usr/afs/bin}
1724     afssrvlibexecdir=${afssrvlibexecdir=/usr/afs/bin}
1725     afsdbdir=${afsdbdir=/usr/afs/db}
1726     afslogsdir=${afslogsdir=/usr/afs/logs}
1727     afslocaldir=${afslocaldir=/usr/afs/local}
1728     afsbackupdir=${afsbackupdir=/usr/afs/backup}
1729     afsbosconfigdir=${afsbosconfigdir=/usr/afs/local}
1730     afsdatadir=${afsdatadir=/usr/vice/etc}
1731 else 
1732     afsconfdir=${afsconfdir='${sysconfdir}/openafs/server'}
1733     viceetcdir=${viceetcdir='${sysconfdir}/openafs'}
1734     afskerneldir=${afskerneldir='${libdir}/openafs'}
1735     afssrvbindir=${afssrvbindir='${bindir}'}
1736     afssrvsbindir=${afssrvsbindir='${sbindir}'}
1737     afssrvlibexecdir=${afssrvlibexecdir='${libexecdir}/openafs'}
1738     afsdbdir=${afsdbdir='${localstatedir}/openafs/db'}
1739     afslogsdir=${afslogsdir='${localstatedir}/openafs/logs'}
1740     afslocaldir=${afslocaldir='${localstatedir}/openafs'}
1741     afsbackupdir=${afsbackupdir='${localstatedir}/openafs/backup'}
1742     afsbosconfigdir=${afsbosconfigdir='${sysconfdir}/openafs'}
1743     afsdatadir=${afsdatadir='${datadir}/openafs'}
1744 fi
1745 AC_SUBST(afsconfdir)
1746 AC_SUBST(viceetcdir)
1747 AC_SUBST(afskerneldir)
1748 AC_SUBST(afssrvbindir)
1749 AC_SUBST(afssrvsbindir)
1750 AC_SUBST(afssrvlibexecdir)
1751 AC_SUBST(afsdbdir)
1752 AC_SUBST(afslogsdir)
1753 AC_SUBST(afslocaldir)
1754 AC_SUBST(afsbackupdir)
1755 AC_SUBST(afsbosconfigdir)
1756 AC_SUBST(afsdatadir)
1757
1758 if test "x$enable_kernel_module" = "xyes"; then
1759 ENABLE_KERNEL_MODULE=libafs
1760 fi
1761
1762 if test "x$enable_pthreaded_ubik" = "xyes"; then
1763 ENABLE_PTHREADED_UBIK=yes
1764 fi
1765
1766 AC_SUBST(VFSCK)
1767 AC_SUBST(AFS_SYSNAME)
1768 AC_SUBST(AFS_PARAM_COMMON)
1769 AC_SUBST(ENABLE_KERNEL_MODULE)
1770 AC_SUBST(ENABLE_PTHREADED_UBIK)
1771 AC_SUBST(LIB_AFSDB)
1772 AC_SUBST(LINUX_KERNEL_PATH)
1773 AC_SUBST(LINUX_KERNEL_BUILD)
1774 AC_SUBST(HOST_CPU)
1775 AC_SUBST(BSD_KERNEL_PATH)
1776 AC_SUBST(BSD_KERNEL_BUILD)
1777 AC_SUBST(LINUX_VERSION)
1778 AC_SUBST(MKAFS_OSTYPE)
1779 AC_SUBST(TOP_OBJDIR)
1780 AC_SUBST(TOP_SRCDIR)
1781 AC_SUBST(TOP_INCDIR)
1782 AC_SUBST(TOP_LIBDIR)
1783 AC_SUBST(DEST)
1784 AC_SUBST(DARWIN_INFOFILE)
1785 AC_SUBST(IRIX_BUILD_IP35)
1786 AC_SUBST(HTML_XSL)
1787 AC_SUBST(XSLTPROC)
1788 AC_SUBST(DOCBOOK2PDF)
1789 AC_SUBST(DOCBOOK_STYLESHEETS)
1790
1791 OPENAFS_FUSE
1792 OPENAFS_SWIG
1793
1794 TOP_SRCDIR="${srcdir}/src"
1795 dnl
1796 dnl If we're using ./configure, need a more reasonable TOP_SRCDIR, since relative links don't work everywhere
1797 dnl
1798 case $TOP_SRCDIR in
1799         /*)
1800                 ;;
1801         *)
1802                 TOP_SRCDIR=`cd $TOP_SRCDIR; pwd`
1803                 ;;
1804 esac
1805
1806 TOP_OBJDIR="${SRCDIR_PARENT}"
1807 TOP_INCDIR="${SRCDIR_PARENT}/include"
1808 TOP_LIBDIR="${SRCDIR_PARENT}/lib"
1809 if test "${DEST}x" = "x"; then
1810         DEST="${SRCDIR_PARENT}/${AFS_SYSNAME}/dest"
1811 fi
1812
1813 HELPER_SPLINT="${TOP_SRCDIR}/helper-splint.sh"
1814 HELPER_SPLINTCFG="${TOP_SRCDIR}/splint.cfg"
1815 AC_SUBST(HELPER_SPLINT)
1816 AC_SUBST(HELPER_SPLINTCFG)
1817
1818 mkdir -p ${TOP_OBJDIR}/src/JAVA/libjafs
1819
1820 dnl Check to see if crypt lives in a different library
1821 AC_CHECK_LIB(crypt, crypt, LIB_crypt="-lcrypt")
1822 AC_SUBST(LIB_crypt)
1823
1824 dnl Check to see if the compiler support labels in structs
1825 AC_MSG_CHECKING(for label support in structs)
1826 AC_TRY_COMPILE([], [
1827 extern void osi_UFSOpen(void);
1828 struct labeltest {
1829    void (*open) (void);
1830 };
1831 struct labeltest struct_labeltest = {
1832    .open       = osi_UFSOpen,
1833 }
1834 ],
1835 [AC_MSG_RESULT(yes)
1836  AC_DEFINE(HAVE_STRUCT_LABEL_SUPPORT, 1, [Define to 1 if your compiler supports labels in structs.])
1837 ],
1838 [AC_MSG_RESULT(no)
1839 ])
1840
1841 AC_MSG_CHECKING([checking for dirfd])
1842 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1843 #ifdef HAVE_DIRENT_H
1844 #include <dirent.h>
1845 #endif
1846 ]],
1847         [[DIR *d = 0; dirfd(d);]])],
1848         [ac_rk_have_dirfd=yes], [ac_rk_have_dirfd=no])
1849 if test "$ac_rk_have_dirfd" = "yes" ; then
1850         AC_DEFINE_UNQUOTED(HAVE_DIRFD, 1, [have a dirfd function/macro])
1851 fi
1852 AC_MSG_RESULT($ac_rk_have_dirfd)
1853
1854 OPENAFS_HAVE_STRUCT_FIELD(DIR, dd_fd, [#include <sys/types.h>
1855 #ifdef HAVE_DIRENT_H
1856 #include <dirent.h>
1857 #endif])
1858
1859 dnl Eventually, this will look for the system one, or for OpenSSL
1860 LIB_hcrypto="-lafshcrypto"
1861 LDFLAGS_hcrypto="-L\$(TOP_LIBDIR)"
1862 AC_SUBST(LIB_hcrypto)
1863 AC_SUBST(LDFLAGS_hcrypto)
1864
1865 dnl Check for UUID library
1866 AC_CHECK_HEADERS([uuid/uuid.h])
1867 AC_CHECK_LIB(uuid, uuid_generate, LIBS_uuid="-luuid")
1868 AC_CHECK_FUNCS([uuid_generate])
1869 ])
1870
1871
1872 AC_DEFUN([SUMMARY], [
1873     # Print a configuration summary
1874 echo 
1875 echo "**************************************"
1876 echo configure summary
1877 echo
1878 AS_IF([test $LIB_curses],[
1879 echo "LIB_curses :                $LIB_curses" ],[
1880 echo "XXX LIB_curses  not found! not building scout and afsmonitor!"
1881 ])
1882 echo 
1883 echo "**************************************"
1884 ])