[BACK]Return to aclocal.m4 CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/aclocal.m4 between version 1.12 and 1.13

version 1.12, 2010/06/02 19:30:10 version 1.13, 2015/02/10 12:59:01
Line 203 
Line 203 
 [SUDO_CHECK_TYPE(ino_t, unsigned int)])  [SUDO_CHECK_TYPE(ino_t, unsigned int)])
   
 dnl  dnl
   dnl Detect time zone file directory, if any.
   dnl
   AC_DEFUN([SUDO_TZDIR], [AC_MSG_CHECKING(time zone data directory)
   tzdir="$with_tzdir"
   if test -z "$tzdir"; then
       tzdir=no
       for d in /usr/share /usr/share/lib /usr/lib /etc; do
           if test -d "$d/zoneinfo"; then
               tzdir="$d/zoneinfo"
               break
           fi
       done
   fi
   AC_MSG_RESULT([$tzdir])
   if test "${tzdir}" != "no"; then
       SUDO_DEFINE_UNQUOTED(_PATH_ZONEINFO, "$tzdir")
   fi
   ])dnl
   
   dnl
 dnl check for working fnmatch(3)  dnl check for working fnmatch(3)
 dnl  dnl
 AC_DEFUN(SUDO_FUNC_FNMATCH,  AC_DEFUN(SUDO_FUNC_FNMATCH,

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13