mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-17 12:41:05 +03:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
Description:
|
|
A more-standard <time.h>.
|
|
|
|
Files:
|
|
lib/time.in.h
|
|
m4/time_h.m4
|
|
|
|
Depends-on:
|
|
extensions
|
|
include_next
|
|
|
|
configure.ac:
|
|
gl_HEADER_TIME_H
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += time.h
|
|
|
|
# We need the following in order to create <time.h> when the system
|
|
# doesn't have one that works with the given compiler.
|
|
time.h: time.in.h
|
|
rm -f $@-t $@
|
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
|
|
sed -e 's/@''INCLUDE_NEXT''@/$(INCLUDE_NEXT)/g' \
|
|
-e 's|@NEXT_TIME_H''@|$(NEXT_TIME_H)|g' \
|
|
-e 's|@REPLACE_LOCALTIME_R''@|$(REPLACE_LOCALTIME_R)|g' \
|
|
-e 's|@REPLACE_NANOSLEEP''@|$(REPLACE_NANOSLEEP)|g' \
|
|
-e 's|@REPLACE_STRPTIME''@|$(REPLACE_STRPTIME)|g' \
|
|
-e 's|@REPLACE_TIMEGM''@|$(REPLACE_TIMEGM)|g' \
|
|
-e 's|@SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(SYS_TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \
|
|
-e 's|@TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \
|
|
< $(srcdir)/time.in.h; \
|
|
} > $@-t
|
|
mv $@-t $@
|
|
MOSTLYCLEANFILES += time.h time.h-t
|
|
|
|
Include:
|
|
#include <time.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|