VirtualBox

Changeset 3248 in kBuild for trunk/src/kmk


Ignore:
Timestamp:
Dec 26, 2018 4:05:33 AM (6 years ago)
Author:
bird
Message:

kmkbuiltin: Darwin build fixes

Location:
trunk/src/kmk/kmkbuiltin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/kmkbuiltin/getopt_r.h

    r3232 r3248  
    3333#ifndef INCLUDED_GETOPT_R_H
    3434#define INCLUDED_GETOPT_R_H 1
     35
     36#include <stddef.h>
    3537
    3638#ifdef  __cplusplus
  • trunk/src/kmk/kmkbuiltin/strlcpy.c

    r370 r3248  
    3737#include <string.h>
    3838
     39/* This trick is for bootstrap.gmk. */
     40#if defined(__DARWIN_C_LEVEL) && defined(__DARWIN_C_FULL)
     41# define SKIP_STRLCPY
     42#endif
     43#ifndef SKIP_STRLCPY
     44
    3945/*
    4046 * Copy src to string dst of size siz.  At most siz-1 characters
     
    6975        return(s - src - 1);    /* count does not include NUL */
    7076}
     77
     78#endif /* !SKIP_STRLCPY */
  • trunk/src/kmk/kmkbuiltin/touch.c

    r3192 r3248  
    6969/** Checks an alleged digit. */
    7070#define IS_DIGIT(chDigit, uMax)          ( ((unsigned)(chDigit) - (unsigned)'0') <= (unsigned)(uMax) )
     71
     72/* Missing config.h bits for high res timestamp. */
     73#if FILE_TIMESTAMP_HI_RES
     74# ifndef ST_ATIM_NSEC
     75#  define ST_ATIM_NSEC st_atim.tv_nsec
     76# endif
     77# ifndef ST_MTIM_NSEC
     78#  define ST_MTIM_NSEC st_mtim.tv_nsec
     79# endif
     80#endif
    7181
    7282
     
    694704                        pThis->NewMTime.tv_sec  = St.st_mtime;
    695705#if FILE_TIMESTAMP_HI_RES
    696                         pThis->NewATime.tv_usec = St.st_atim.tv_nsec / 1000;
    697                         pThis->NewMTime.tv_usec = St.st_mtim.tv_nsec / 1000;
     706                        pThis->NewATime.tv_usec = St.ST_ATIM_NSEC / 1000;
     707                        pThis->NewMTime.tv_usec = St.ST_MTIM_NSEC / 1000;
    698708#else
    699709                        pThis->NewATime.tv_usec = 0;
     
    840850    aTimes[1].tv_sec  = St.st_mtime;
    841851#if FILE_TIMESTAMP_HI_RES
    842     aTimes[0].tv_usec = St.st_atim.tv_nsec / 1000;
    843     aTimes[1].tv_usec = St.st_mtim.tv_nsec / 1000;
     852    aTimes[0].tv_usec = St.ST_ATIM_NSEC / 1000;
     853    aTimes[1].tv_usec = St.ST_MTIM_NSEC / 1000;
    844854#else
    845855    aTimes[0].tv_usec = 0;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette