Edit

kc3-lang/gnulib/modules/stat

Branch :

  • Show log

    Commit

  • Author : Paul Eggert
    Date : 2017-11-28 14:19:55
    Hash : d2fe1853
    Message : stat: add missing module dependencies * modules/lstat, modules/stat, modules/utimensat (Depends-on): Add stat-time.

  • modules/stat
  • Description:
    stat() function: query file information
    
    Files:
    lib/stat.c
    lib/stat-w32.h
    lib/stat-w32.c
    m4/stat.m4
    
    Depends-on:
    sys_stat
    largefile
    filename        [test $REPLACE_STAT = 1]
    malloca         [test $REPLACE_STAT = 1]
    pathmax         [test $REPLACE_STAT = 1]
    stat-time       [test $REPLACE_STAT = 1]
    stdbool         [test $REPLACE_STAT = 1]
    verify          [test $REPLACE_STAT = 1]
    
    configure.ac:
    gl_FUNC_STAT
    if test $REPLACE_STAT = 1; then
      AC_LIBOBJ([stat])
      case "$host_os" in
        mingw*)
          AC_LIBOBJ([stat-w32])
          ;;
      esac
      gl_PREREQ_STAT
    fi
    gl_SYS_STAT_MODULE_INDICATOR([stat])
    
    Makefile.am:
    
    Include:
    <sys/stat.h>
    
    License:
    LGPLv2+
    
    Maintainer:
    Eric Blake