Home
last modified time | relevance | path

Searched refs:TZDIR (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/share/zoneinfo/
H A DMakefile38 TZDIR= ${DESTDIR}/usr/share/zoneinfo macro
117 ${ZIC} -d ${TZDIR} -L /dev/null ${TDATA})
121 ${ZIC} -d ${TZDIR} -L leapseconds ${TDATA})
125 ${ZIC} -d ${TZDIR}/posix -L /dev/null ${TDATA})
127 ${ZIC} -d ${TZDIR}/right -L ${.OBJDIR}/leapseconds ${TDATA})
135 ${ZIC} -d ${TZDIR} -p ${POSIXRULES})
136 chown -R ${BINOWN}:${BINGRP} ${TZDIR}
137 find ${TZDIR} \
/openbsd-src/lib/libc/time/
H A Dtzfile.h24 #ifndef TZDIR
25 #define TZDIR "/usr/share/zoneinfo" /* Time zone object file directory */ macro
H A Dlocaltime.c301 /* Reject absolute paths that don't start with TZDIR. */ in tzpath_ok()
302 if (name[0] == '/' && (strncmp(name, TZDIR, sizeof(TZDIR) - 1) != 0 || in tzpath_ok()
303 name[sizeof(TZDIR) - 1] != '/')) in tzpath_ok()
328 * Ignore absolute paths that don't start with TZDIR in open_tzfile()
338 /* Time zone data path is relative to TZDIR. */ in open_tzfile()
339 i = snprintf(fullname, sizeof(fullname), "%s/%s", TZDIR, name); in open_tzfile()
/openbsd-src/usr.sbin/zic/
H A Dzic.c553 directory = TZDIR; in main()