-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add edbee versioning number - move onigiruma patch tools, and version set script to /tools
- Loading branch information
1 parent
7dbad2b
commit 09bfbc0
Showing
8 changed files
with
56 additions
and
5 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
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,8 @@ | ||
#pragma once | ||
|
||
#define EDBEE_VERSION "0.9.0" | ||
|
||
#define EDBEE_VERSION_MAJOR 0 | ||
#define EDBEE_VERSION_MINOR 9 | ||
#define EDBEE_VERSION_PATCH 0 | ||
#define EDBEE_VERSION_POSTFIX "" |
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,3 @@ | ||
#!/bin/sh | ||
|
||
cp -Rp ../vendor/oniguruma/patch/* ../vendor/oniguruma/oniguruma/ |
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,30 @@ | ||
#!/bin/sh | ||
|
||
if [ "$#" -lt 3 ]; then | ||
echo "Generates the edbee version header" | ||
echo "" | ||
echo "Usage: $0 <major> <minor> <patch> [<postfix>]" | ||
exit; | ||
fi | ||
|
||
major="$1" | ||
minor="$2" | ||
patch="$3" | ||
postfix="$4" | ||
if [ -n "$4" ]; then | ||
postfix_dash="-$4" | ||
fi | ||
target="../edbee-lib/edbee/edbeeversion.h" | ||
|
||
cat <<C > $target | ||
#pragma once | ||
#define EDBEE_VERSION "$major.$minor.$patch$postfix_dash" | ||
#define EDBEE_VERSION_MAJOR $major | ||
#define EDBEE_VERSION_MINOR $minor | ||
#define EDBEE_VERSION_PATCH $patch | ||
#define EDBEE_VERSION_POSTFIX "$postfix" | ||
C | ||
|
||
cat $target |
This file was deleted.
Oops, something went wrong.