cGit-UI for Git Repositories

cGit-UI – is a web interface for Git Repositories. cGit CGI script is writen in C and therefore it's fast enough

3 Commits   0 Branches   1 Tag
05d292b2 (kx 2023-03-24 03:51:10 +0300   1) # lib-prefix.m4 serial 7 (gettext-0.18)
05d292b2 (kx 2023-03-24 03:51:10 +0300   2) dnl Copyright (C) 2001-2005, 2008-2016 Free Software Foundation, Inc.
05d292b2 (kx 2023-03-24 03:51:10 +0300   3) dnl This file is free software; the Free Software Foundation
05d292b2 (kx 2023-03-24 03:51:10 +0300   4) dnl gives unlimited permission to copy and/or distribute it,
05d292b2 (kx 2023-03-24 03:51:10 +0300   5) dnl with or without modifications, as long as this notice is preserved.
05d292b2 (kx 2023-03-24 03:51:10 +0300   6) 
05d292b2 (kx 2023-03-24 03:51:10 +0300   7) dnl From Bruno Haible.
05d292b2 (kx 2023-03-24 03:51:10 +0300   8) 
05d292b2 (kx 2023-03-24 03:51:10 +0300   9) dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and
05d292b2 (kx 2023-03-24 03:51:10 +0300  10) dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't
05d292b2 (kx 2023-03-24 03:51:10 +0300  11) dnl require excessive bracketing.
05d292b2 (kx 2023-03-24 03:51:10 +0300  12) ifdef([AC_HELP_STRING],
05d292b2 (kx 2023-03-24 03:51:10 +0300  13) [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])],
05d292b2 (kx 2023-03-24 03:51:10 +0300  14) [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])])
05d292b2 (kx 2023-03-24 03:51:10 +0300  15) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  16) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed
05d292b2 (kx 2023-03-24 03:51:10 +0300  17) dnl to access previously installed libraries. The basic assumption is that
05d292b2 (kx 2023-03-24 03:51:10 +0300  18) dnl a user will want packages to use other packages he previously installed
05d292b2 (kx 2023-03-24 03:51:10 +0300  19) dnl with the same --prefix option.
05d292b2 (kx 2023-03-24 03:51:10 +0300  20) dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate
05d292b2 (kx 2023-03-24 03:51:10 +0300  21) dnl libraries, but is otherwise very convenient.
05d292b2 (kx 2023-03-24 03:51:10 +0300  22) AC_DEFUN([AC_LIB_PREFIX],
05d292b2 (kx 2023-03-24 03:51:10 +0300  23) [
05d292b2 (kx 2023-03-24 03:51:10 +0300  24)   AC_BEFORE([$0], [AC_LIB_LINKFLAGS])
05d292b2 (kx 2023-03-24 03:51:10 +0300  25)   AC_REQUIRE([AC_PROG_CC])
05d292b2 (kx 2023-03-24 03:51:10 +0300  26)   AC_REQUIRE([AC_CANONICAL_HOST])
05d292b2 (kx 2023-03-24 03:51:10 +0300  27)   AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])
05d292b2 (kx 2023-03-24 03:51:10 +0300  28)   AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
05d292b2 (kx 2023-03-24 03:51:10 +0300  29)   dnl By default, look in $includedir and $libdir.
05d292b2 (kx 2023-03-24 03:51:10 +0300  30)   use_additional=yes
05d292b2 (kx 2023-03-24 03:51:10 +0300  31)   AC_LIB_WITH_FINAL_PREFIX([
05d292b2 (kx 2023-03-24 03:51:10 +0300  32)     eval additional_includedir=\"$includedir\"
05d292b2 (kx 2023-03-24 03:51:10 +0300  33)     eval additional_libdir=\"$libdir\"
05d292b2 (kx 2023-03-24 03:51:10 +0300  34)   ])
05d292b2 (kx 2023-03-24 03:51:10 +0300  35)   AC_LIB_ARG_WITH([lib-prefix],
05d292b2 (kx 2023-03-24 03:51:10 +0300  36) [  --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib
05d292b2 (kx 2023-03-24 03:51:10 +0300  37)   --without-lib-prefix    don't search for libraries in includedir and libdir],
05d292b2 (kx 2023-03-24 03:51:10 +0300  38) [
05d292b2 (kx 2023-03-24 03:51:10 +0300  39)     if test "X$withval" = "Xno"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  40)       use_additional=no
05d292b2 (kx 2023-03-24 03:51:10 +0300  41)     else
05d292b2 (kx 2023-03-24 03:51:10 +0300  42)       if test "X$withval" = "X"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  43)         AC_LIB_WITH_FINAL_PREFIX([
05d292b2 (kx 2023-03-24 03:51:10 +0300  44)           eval additional_includedir=\"$includedir\"
05d292b2 (kx 2023-03-24 03:51:10 +0300  45)           eval additional_libdir=\"$libdir\"
05d292b2 (kx 2023-03-24 03:51:10 +0300  46)         ])
05d292b2 (kx 2023-03-24 03:51:10 +0300  47)       else
05d292b2 (kx 2023-03-24 03:51:10 +0300  48)         additional_includedir="$withval/include"
05d292b2 (kx 2023-03-24 03:51:10 +0300  49)         additional_libdir="$withval/$acl_libdirstem"
05d292b2 (kx 2023-03-24 03:51:10 +0300  50)       fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  51)     fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  52) ])
05d292b2 (kx 2023-03-24 03:51:10 +0300  53)   if test $use_additional = yes; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  54)     dnl Potentially add $additional_includedir to $CPPFLAGS.
05d292b2 (kx 2023-03-24 03:51:10 +0300  55)     dnl But don't add it
05d292b2 (kx 2023-03-24 03:51:10 +0300  56)     dnl   1. if it's the standard /usr/include,
05d292b2 (kx 2023-03-24 03:51:10 +0300  57)     dnl   2. if it's already present in $CPPFLAGS,
05d292b2 (kx 2023-03-24 03:51:10 +0300  58)     dnl   3. if it's /usr/local/include and we are using GCC on Linux,
05d292b2 (kx 2023-03-24 03:51:10 +0300  59)     dnl   4. if it doesn't exist as a directory.
05d292b2 (kx 2023-03-24 03:51:10 +0300  60)     if test "X$additional_includedir" != "X/usr/include"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  61)       haveit=
05d292b2 (kx 2023-03-24 03:51:10 +0300  62)       for x in $CPPFLAGS; do
05d292b2 (kx 2023-03-24 03:51:10 +0300  63)         AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
05d292b2 (kx 2023-03-24 03:51:10 +0300  64)         if test "X$x" = "X-I$additional_includedir"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  65)           haveit=yes
05d292b2 (kx 2023-03-24 03:51:10 +0300  66)           break
05d292b2 (kx 2023-03-24 03:51:10 +0300  67)         fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  68)       done
05d292b2 (kx 2023-03-24 03:51:10 +0300  69)       if test -z "$haveit"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  70)         if test "X$additional_includedir" = "X/usr/local/include"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  71)           if test -n "$GCC"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  72)             case $host_os in
05d292b2 (kx 2023-03-24 03:51:10 +0300  73)               linux* | gnu* | k*bsd*-gnu) haveit=yes;;
05d292b2 (kx 2023-03-24 03:51:10 +0300  74)             esac
05d292b2 (kx 2023-03-24 03:51:10 +0300  75)           fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  76)         fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  77)         if test -z "$haveit"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  78)           if test -d "$additional_includedir"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  79)             dnl Really add $additional_includedir to $CPPFLAGS.
05d292b2 (kx 2023-03-24 03:51:10 +0300  80)             CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir"
05d292b2 (kx 2023-03-24 03:51:10 +0300  81)           fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  82)         fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  83)       fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  84)     fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  85)     dnl Potentially add $additional_libdir to $LDFLAGS.
05d292b2 (kx 2023-03-24 03:51:10 +0300  86)     dnl But don't add it
05d292b2 (kx 2023-03-24 03:51:10 +0300  87)     dnl   1. if it's the standard /usr/lib,
05d292b2 (kx 2023-03-24 03:51:10 +0300  88)     dnl   2. if it's already present in $LDFLAGS,
05d292b2 (kx 2023-03-24 03:51:10 +0300  89)     dnl   3. if it's /usr/local/lib and we are using GCC on Linux,
05d292b2 (kx 2023-03-24 03:51:10 +0300  90)     dnl   4. if it doesn't exist as a directory.
05d292b2 (kx 2023-03-24 03:51:10 +0300  91)     if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  92)       haveit=
05d292b2 (kx 2023-03-24 03:51:10 +0300  93)       for x in $LDFLAGS; do
05d292b2 (kx 2023-03-24 03:51:10 +0300  94)         AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
05d292b2 (kx 2023-03-24 03:51:10 +0300  95)         if test "X$x" = "X-L$additional_libdir"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300  96)           haveit=yes
05d292b2 (kx 2023-03-24 03:51:10 +0300  97)           break
05d292b2 (kx 2023-03-24 03:51:10 +0300  98)         fi
05d292b2 (kx 2023-03-24 03:51:10 +0300  99)       done
05d292b2 (kx 2023-03-24 03:51:10 +0300 100)       if test -z "$haveit"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 101)         if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 102)           if test -n "$GCC"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 103)             case $host_os in
05d292b2 (kx 2023-03-24 03:51:10 +0300 104)               linux*) haveit=yes;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 105)             esac
05d292b2 (kx 2023-03-24 03:51:10 +0300 106)           fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 107)         fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 108)         if test -z "$haveit"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 109)           if test -d "$additional_libdir"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 110)             dnl Really add $additional_libdir to $LDFLAGS.
05d292b2 (kx 2023-03-24 03:51:10 +0300 111)             LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir"
05d292b2 (kx 2023-03-24 03:51:10 +0300 112)           fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 113)         fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 114)       fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 115)     fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 116)   fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 117) ])
05d292b2 (kx 2023-03-24 03:51:10 +0300 118) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 119) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix,
05d292b2 (kx 2023-03-24 03:51:10 +0300 120) dnl acl_final_exec_prefix, containing the values to which $prefix and
05d292b2 (kx 2023-03-24 03:51:10 +0300 121) dnl $exec_prefix will expand at the end of the configure script.
05d292b2 (kx 2023-03-24 03:51:10 +0300 122) AC_DEFUN([AC_LIB_PREPARE_PREFIX],
05d292b2 (kx 2023-03-24 03:51:10 +0300 123) [
05d292b2 (kx 2023-03-24 03:51:10 +0300 124)   dnl Unfortunately, prefix and exec_prefix get only finally determined
05d292b2 (kx 2023-03-24 03:51:10 +0300 125)   dnl at the end of configure.
05d292b2 (kx 2023-03-24 03:51:10 +0300 126)   if test "X$prefix" = "XNONE"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 127)     acl_final_prefix="$ac_default_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 128)   else
05d292b2 (kx 2023-03-24 03:51:10 +0300 129)     acl_final_prefix="$prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 130)   fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 131)   if test "X$exec_prefix" = "XNONE"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 132)     acl_final_exec_prefix='${prefix}'
05d292b2 (kx 2023-03-24 03:51:10 +0300 133)   else
05d292b2 (kx 2023-03-24 03:51:10 +0300 134)     acl_final_exec_prefix="$exec_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 135)   fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 136)   acl_save_prefix="$prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 137)   prefix="$acl_final_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 138)   eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
05d292b2 (kx 2023-03-24 03:51:10 +0300 139)   prefix="$acl_save_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 140) ])
05d292b2 (kx 2023-03-24 03:51:10 +0300 141) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 142) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the
05d292b2 (kx 2023-03-24 03:51:10 +0300 143) dnl variables prefix and exec_prefix bound to the values they will have
05d292b2 (kx 2023-03-24 03:51:10 +0300 144) dnl at the end of the configure script.
05d292b2 (kx 2023-03-24 03:51:10 +0300 145) AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX],
05d292b2 (kx 2023-03-24 03:51:10 +0300 146) [
05d292b2 (kx 2023-03-24 03:51:10 +0300 147)   acl_save_prefix="$prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 148)   prefix="$acl_final_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 149)   acl_save_exec_prefix="$exec_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 150)   exec_prefix="$acl_final_exec_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 151)   $1
05d292b2 (kx 2023-03-24 03:51:10 +0300 152)   exec_prefix="$acl_save_exec_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 153)   prefix="$acl_save_prefix"
05d292b2 (kx 2023-03-24 03:51:10 +0300 154) ])
05d292b2 (kx 2023-03-24 03:51:10 +0300 155) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 156) dnl AC_LIB_PREPARE_MULTILIB creates
05d292b2 (kx 2023-03-24 03:51:10 +0300 157) dnl - a variable acl_libdirstem, containing the basename of the libdir, either
05d292b2 (kx 2023-03-24 03:51:10 +0300 158) dnl   "lib" or "lib64" or "lib/64",
05d292b2 (kx 2023-03-24 03:51:10 +0300 159) dnl - a variable acl_libdirstem2, as a secondary possible value for
05d292b2 (kx 2023-03-24 03:51:10 +0300 160) dnl   acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or
05d292b2 (kx 2023-03-24 03:51:10 +0300 161) dnl   "lib/amd64".
05d292b2 (kx 2023-03-24 03:51:10 +0300 162) AC_DEFUN([AC_LIB_PREPARE_MULTILIB],
05d292b2 (kx 2023-03-24 03:51:10 +0300 163) [
05d292b2 (kx 2023-03-24 03:51:10 +0300 164)   dnl There is no formal standard regarding lib and lib64.
05d292b2 (kx 2023-03-24 03:51:10 +0300 165)   dnl On glibc systems, the current practice is that on a system supporting
05d292b2 (kx 2023-03-24 03:51:10 +0300 166)   dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under
05d292b2 (kx 2023-03-24 03:51:10 +0300 167)   dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine
05d292b2 (kx 2023-03-24 03:51:10 +0300 168)   dnl the compiler's default mode by looking at the compiler's library search
05d292b2 (kx 2023-03-24 03:51:10 +0300 169)   dnl path. If at least one of its elements ends in /lib64 or points to a
05d292b2 (kx 2023-03-24 03:51:10 +0300 170)   dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI.
05d292b2 (kx 2023-03-24 03:51:10 +0300 171)   dnl Otherwise we use the default, namely "lib".
05d292b2 (kx 2023-03-24 03:51:10 +0300 172)   dnl On Solaris systems, the current practice is that on a system supporting
05d292b2 (kx 2023-03-24 03:51:10 +0300 173)   dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under
05d292b2 (kx 2023-03-24 03:51:10 +0300 174)   dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or
05d292b2 (kx 2023-03-24 03:51:10 +0300 175)   dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib.
05d292b2 (kx 2023-03-24 03:51:10 +0300 176)   AC_REQUIRE([AC_CANONICAL_HOST])
05d292b2 (kx 2023-03-24 03:51:10 +0300 177)   acl_libdirstem=lib
05d292b2 (kx 2023-03-24 03:51:10 +0300 178)   acl_libdirstem2=
05d292b2 (kx 2023-03-24 03:51:10 +0300 179)   case "$host_os" in
05d292b2 (kx 2023-03-24 03:51:10 +0300 180)     solaris*)
05d292b2 (kx 2023-03-24 03:51:10 +0300 181)       dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment
05d292b2 (kx 2023-03-24 03:51:10 +0300 182)       dnl <http://docs.sun.com/app/docs/doc/816-5138/dev-env?l=en&a=view>.
05d292b2 (kx 2023-03-24 03:51:10 +0300 183)       dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link."
05d292b2 (kx 2023-03-24 03:51:10 +0300 184)       dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the
05d292b2 (kx 2023-03-24 03:51:10 +0300 185)       dnl symlink is missing, so we set acl_libdirstem2 too.
05d292b2 (kx 2023-03-24 03:51:10 +0300 186)       AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit],
05d292b2 (kx 2023-03-24 03:51:10 +0300 187)         [AC_EGREP_CPP([sixtyfour bits], [
05d292b2 (kx 2023-03-24 03:51:10 +0300 188) #ifdef _LP64
05d292b2 (kx 2023-03-24 03:51:10 +0300 189) sixtyfour bits
05d292b2 (kx 2023-03-24 03:51:10 +0300 190) #endif
05d292b2 (kx 2023-03-24 03:51:10 +0300 191)            ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no])
05d292b2 (kx 2023-03-24 03:51:10 +0300 192)         ])
05d292b2 (kx 2023-03-24 03:51:10 +0300 193)       if test $gl_cv_solaris_64bit = yes; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 194)         acl_libdirstem=lib/64
05d292b2 (kx 2023-03-24 03:51:10 +0300 195)         case "$host_cpu" in
05d292b2 (kx 2023-03-24 03:51:10 +0300 196)           sparc*)        acl_libdirstem2=lib/sparcv9 ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 197)           i*86 | x86_64) acl_libdirstem2=lib/amd64 ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 198)         esac
05d292b2 (kx 2023-03-24 03:51:10 +0300 199)       fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 200)       ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 201)     *)
05d292b2 (kx 2023-03-24 03:51:10 +0300 202)       searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`
05d292b2 (kx 2023-03-24 03:51:10 +0300 203)       if test -n "$searchpath"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 204)         acl_save_IFS="${IFS= 	}"; IFS=":"
05d292b2 (kx 2023-03-24 03:51:10 +0300 205)         for searchdir in $searchpath; do
05d292b2 (kx 2023-03-24 03:51:10 +0300 206)           if test -d "$searchdir"; then
05d292b2 (kx 2023-03-24 03:51:10 +0300 207)             case "$searchdir" in
05d292b2 (kx 2023-03-24 03:51:10 +0300 208)               */lib64/ | */lib64 ) acl_libdirstem=lib64 ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 209)               */../ | */.. )
05d292b2 (kx 2023-03-24 03:51:10 +0300 210)                 # Better ignore directories of this form. They are misleading.
05d292b2 (kx 2023-03-24 03:51:10 +0300 211)                 ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 212)               *) searchdir=`cd "$searchdir" && pwd`
05d292b2 (kx 2023-03-24 03:51:10 +0300 213)                  case "$searchdir" in
05d292b2 (kx 2023-03-24 03:51:10 +0300 214)                    */lib64 ) acl_libdirstem=lib64 ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 215)                  esac ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 216)             esac
05d292b2 (kx 2023-03-24 03:51:10 +0300 217)           fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 218)         done
05d292b2 (kx 2023-03-24 03:51:10 +0300 219)         IFS="$acl_save_IFS"
05d292b2 (kx 2023-03-24 03:51:10 +0300 220)       fi
05d292b2 (kx 2023-03-24 03:51:10 +0300 221)       ;;
05d292b2 (kx 2023-03-24 03:51:10 +0300 222)   esac
05d292b2 (kx 2023-03-24 03:51:10 +0300 223)   test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem"
05d292b2 (kx 2023-03-24 03:51:10 +0300 224) ])