-
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.3.18 invil 0.1.6, add kls_dbg_features() (#58)
* chore: move AM_CONDITIONAL * feat: add kls_dbg_features(), bump invil * fix: should stabilize ./anvil -i
- Loading branch information
Showing
8 changed files
with
42 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#amboso compliant version folder, will ignore everything inside BUT the gitignore, to keep the clean dir | ||
* | ||
!.gitignore | ||
!static |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../static/ |
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.3.17], [[email protected]]) | ||
AC_INIT([koliseo], [0.3.18], [[email protected]]) | ||
|
||
# Verify automake version and enable foreign option | ||
AM_INIT_AUTOMAKE([foreign -Wall]) | ||
|
@@ -23,18 +23,20 @@ AC_ARG_ENABLE([gulp], | |
[enable_gulp=$enableval], | ||
[enable_gulp=no]) | ||
AM_CONDITIONAL([DEBUG_BUILD], [test "$enable_debug" = "yes"]) | ||
AM_CONDITIONAL([CURSES_BUILD], [test "$enable_curses" = "yes"]) | ||
AM_CONDITIONAL([GULP_BUILD], [test "$enable_gulp" = "yes"]) | ||
|
||
# Define the include and library paths based on the host system | ||
if test "$host_os" = "mingw32"; then | ||
echo "Building for mingw32: [$host_cpu-$host_vendor-$host_os]" | ||
# mingw32 specific flags | ||
if test "$enable_curses" = "yes"; then | ||
echo "Building with curses header" | ||
AC_SUBST([KOLISEO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -static -fstack-protector -DMINGW32_BUILD -DNCURSES_STATIC"]) | ||
AC_SUBST([KOLISEO_LDFLAGS], ["-L/usr/x86_64-w64-mingw32/lib -lncursesw"]) | ||
echo "Building with curses header" | ||
AC_SUBST([KOLISEO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -static -fstack-protector -DMINGW32_BUILD -DNCURSES_STATIC"]) | ||
AC_SUBST([KOLISEO_LDFLAGS], ["-L/usr/x86_64-w64-mingw32/lib -lncursesw"]) | ||
else | ||
AC_SUBST([KOLISEO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -static -fstack-protector -DMINGW32_BUILD"]) | ||
AC_SUBST([KOLISEO_LDFLAGS], ["-L/usr/x86_64-w64-mingw32/lib"]) | ||
AC_SUBST([KOLISEO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -static -fstack-protector -DMINGW32_BUILD"]) | ||
AC_SUBST([KOLISEO_LDFLAGS], ["-L/usr/x86_64-w64-mingw32/lib"]) | ||
fi | ||
AC_SUBST([CCOMP], ["/usr/bin/x86_64-w64-mingw32-gcc"]) | ||
AC_SUBST([OS], ["w64-mingw32"]) | ||
|
@@ -67,13 +69,11 @@ if test "$host_os" = "linux-gnu"; then | |
AC_SUBST([OS], ["Linux"]) | ||
AC_SUBST([TARGET], ["demo"]) | ||
fi | ||
AM_CONDITIONAL([CURSES_BUILD], [test "$enable_curses" = "yes"]) | ||
AM_CONDITIONAL([GULP_BUILD], [test "$enable_gulp" = "yes"]) | ||
|
||
# Set a default version number if not specified externally | ||
AC_ARG_VAR([VERSION], [Version number]) | ||
if test -z "$VERSION"; then | ||
VERSION="0.3.17" | ||
VERSION="0.3.18" | ||
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
+14 −0 | CHANGELOG.md | |
+40 −1 | Cargo.lock | |
+2 −1 | Cargo.toml | |
+6 −0 | README.md | |
+1 −1 | kazoj/bone/vershw.k.stdout | |
+62 −14 | src/core.rs | |
+33 −15 | src/ops.rs |
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