-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 0.4.4 Add option to block usage with an active temp session, dr…
…op list template, --enable-locate (#77) * chore: move list template to new file * feat: push calls return NULL when has_temp==1 and conf wants to * chore: rename __KLS_STRCPY() to avoid using __ namespacing * feat: collect common parts for push ops * feat: add enable-locate * chore: update bad_size test * feat: include profileapi.h instead of whole windows.h * chore: drop intrusive mention from readme * chore: bump invil to 0.2.15 * chore: update stego.lock * chore: bump version * chore: bump anvil version in stego.lock to 2.0.6
- Loading branch information
Showing
12 changed files
with
1,046 additions
and
1,115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Define the package name and version | ||
AC_INIT([koliseo], [0.4.3], [[email protected]]) | ||
AC_INIT([koliseo], [0.4.4], [[email protected]]) | ||
|
||
# Verify automake version and enable foreign option | ||
AM_INIT_AUTOMAKE([foreign -Wall]) | ||
|
@@ -11,6 +11,10 @@ build_windows=no | |
build_mac=no | ||
echo "Host os: $host_os" | ||
|
||
AC_ARG_ENABLE([locate], | ||
[AS_HELP_STRING([--enable-locate], [Enable location signatures])], | ||
[enable_locate=$enableval], | ||
[enable_locate=no]) | ||
AC_ARG_ENABLE([debug], | ||
[AS_HELP_STRING([--enable-debug], [Enable debug build])], | ||
[enable_debug=$enableval], | ||
|
@@ -35,6 +39,7 @@ AC_ARG_ENABLE([exper], | |
[AS_HELP_STRING([--enable-exper], [Enable experimental features])], | ||
[enable_exper=$enableval], | ||
[enable_exper=no]) | ||
AM_CONDITIONAL([LOCATE_BUILD], [test "$enable_locate" = "yes"]) | ||
AM_CONDITIONAL([DEBUG_BUILD], [test "$enable_debug" = "yes"]) | ||
AM_CONDITIONAL([CURSES_BUILD], [test "$enable_curses" = "yes"]) | ||
AM_CONDITIONAL([GULP_BUILD], [test "$enable_gulp" = "yes"]) | ||
|
@@ -104,7 +109,7 @@ AM_CONDITIONAL([LINUX_BUILD], [test "$build_linux" = "yes"]) | |
# Set a default version number if not specified externally | ||
AC_ARG_VAR([VERSION], [Version number]) | ||
if test -z "$VERSION"; then | ||
VERSION="0.4.3" | ||
VERSION="0.4.4" | ||
fi | ||
|
||
# Output variables to the config.h header | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule invil
updated
7 files
+15 −0 | CHANGELOG.md | |
+29 −29 | Cargo.lock | |
+12 −11 | Cargo.toml | |
+2 −3 | README.md | |
+44 −0 | bench/gitmode-0.2.15-bench.md | |
+1 −1 | kazoj/bone/vershw.k.stdout | |
+7 −1 | src/core.rs |
Oops, something went wrong.