
Loading…
Build fixing patches #24
Merged
+15
−9
blochl
commented
blochl
added
some commits
|
|
blochl |
Diod: Fix for cross-compiling
…
Fix failures during cross-compiling on some systems. Signed-off-by: Leonid Bloch <leonid@daynix.com> |
800ec4d
|
|
|
|
blochl |
Diod: Fix for non-standard location of Perl
…
If the perl binary was not in /usr/bin/perl, the build would fail. Signed-off-by: Leonid Bloch <leonid@daynix.com> |
0beed57
|
|
|
|
blochl |
Diod: Lua detection fix and replacing deprecated function
…
lua_open was replaced with luaL_newstate, which succeeded it in Lua 5.2. lua_open was already deprecated in Lua 5.1. Also, in order to check for Lua during config, a test for luaL_newstate is used, which works for both Lua 5.1 and 5.2, instead of testing for lua_call, which does not work for Lua 5.2. Signed-off-by: Leonid Bloch <leonid@daynix.com> |
97fb8fd
|
|
|
|
blochl |
Diod: Updated building instructions
…
Updated build instructions in README.md. Signed-off-by: Leonid Bloch <leonid@daynix.com> |
900fa1f
|
Owner
garlick
commented
Looks good, thanks!
blochl
commented
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Commits on Jul 20, 2015
-
Diod: Fix for cross-compiling …
blochl authoredFix failures during cross-compiling on some systems. Signed-off-by: Leonid Bloch <leonid@daynix.com>
-
Diod: Fix for non-standard location of Perl …
blochl authoredIf the perl binary was not in /usr/bin/perl, the build would fail. Signed-off-by: Leonid Bloch <leonid@daynix.com>
-
Diod: Lua detection fix and replacing deprecated function …
blochl authoredlua_open was replaced with luaL_newstate, which succeeded it in Lua 5.2. lua_open was already deprecated in Lua 5.1. Also, in order to check for Lua during config, a test for luaL_newstate is used, which works for both Lua 5.1 and 5.2, instead of testing for lua_call, which does not work for Lua 5.2. Signed-off-by: Leonid Bloch <leonid@daynix.com>
Commits on Jul 21, 2015
-
Diod: Updated building instructions …
blochl authoredUpdated build instructions in README.md. Signed-off-by: Leonid Bloch <leonid@daynix.com>
This page is out of date. Refresh to see the latest.
Showing
with
15 additions
and 9 deletions.
- +9 −6 README.md
- +1 −1 config/ax_lua.m4
- +1 −1 libdiod/diod_conf.c
- +2 −0 libdiod/diod_log.h
- +1 −0 libnpfs/npfs.h
- +1 −1 tests/kern/dbench/Makefile.am
15
README.md
2
config/ax_lua.m4
2
libdiod/diod_conf.c
2
libdiod/diod_log.h
1
libnpfs/npfs.h
2
tests/kern/dbench/Makefile.am
Hi,
These patches solve some compilation issues which the Diod 9p server currently has: