mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
Version bump to 0.9.10 (prepares for #366)
This commit is contained in:
8
NEWS
8
NEWS
@@ -1,3 +1,11 @@
|
||||
Since 0.9.9:
|
||||
- improved macOS Monterey support through dyld interposing
|
||||
- changed interception hooks for stat() and similar functions,
|
||||
refactored to use a common handler (@sirainen)
|
||||
- added support for timespec_get, timerfd_{get,set} (@sliquister)
|
||||
- generic syscall() interception for selected syscalls (@dkg)
|
||||
- improved testing system (@dkg)
|
||||
|
||||
Since 0.9.8:
|
||||
- When compiled with the CFLAG FAKE_RANDOM set,
|
||||
libfaketime will intercept calls to getrandom()
|
||||
|
||||
4
README
4
README
@@ -1,5 +1,5 @@
|
||||
libfaketime, version 0.9.9 (February 2021)
|
||||
==========================================
|
||||
libfaketime, version 0.9.10 (February 2022)
|
||||
===========================================
|
||||
|
||||
|
||||
Content of this file:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.TH FAKETIME "1" "February 2021" "faketime 0.9.9" wolfcw
|
||||
.TH FAKETIME "1" "February 2022" "faketime 0.9.10" wolfcw
|
||||
.SH NAME
|
||||
faketime \- manipulate the system time for a given command
|
||||
.SH SYNOPSIS
|
||||
|
||||
@@ -56,7 +56,7 @@ INSTALL ?= install
|
||||
PREFIX ?= /usr/local
|
||||
|
||||
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"' $(FAKETIME_COMPILE_CFLAGS) -DMACOS_DYLD_INTERPOSE -DFAKE_SETTIME
|
||||
LIB_LDFLAGS += -dynamiclib -current_version 0.9.9 -compatibility_version 0.7
|
||||
LIB_LDFLAGS += -dynamiclib -current_version 0.9.10 -compatibility_version 0.7
|
||||
|
||||
SONAME = 1
|
||||
LIBS = libfaketime.${SONAME}.dylib
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* libfaketime wrapper command
|
||||
*
|
||||
* This file is part of libfaketime, version 0.9.9
|
||||
* This file is part of libfaketime, version 0.9.10
|
||||
*
|
||||
* libfaketime is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License v2 as published by the
|
||||
@@ -48,7 +48,7 @@
|
||||
|
||||
#include "faketime_common.h"
|
||||
|
||||
const char version[] = "0.9.9";
|
||||
const char version[] = "0.9.10";
|
||||
|
||||
#if (defined __APPLE__) || (defined __sun)
|
||||
static const char *date_cmd = "gdate";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* This file is part of libfaketime, version 0.9.9
|
||||
* This file is part of libfaketime, version 0.9.10
|
||||
*
|
||||
* libfaketime is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License v2 as published by the
|
||||
|
||||
Reference in New Issue
Block a user