Skip to content

Commit

Permalink
Fix lua
Browse files Browse the repository at this point in the history
As reported by Jean-Baptiste Boric, lua would refuse to start,
throwing an error about incompatibility of numeric types.

This resolves Stichting-MINIX-Research-Foundation#160.

Change-Id: I5cd6c3b2a35c7023946e4d14d4feedaaecb956fb
  • Loading branch information
dcvmoole committed May 8, 2017
1 parent 9624407 commit 9f81acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions external/mit/lua/dist/src/luaconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@
** without modifying the main part of the file.
*/

#ifdef __NetBSD__
#if defined(__NetBSD__) || defined(__minix)

/* Integer types */
#undef LUA_INTEGER
Expand Down Expand Up @@ -812,7 +812,7 @@

#endif /* _KERNEL */

#endif /* __NetBSD__ */
#endif /* __NetBSD__ || __minix */

#endif

0 comments on commit 9f81acb

Please sign in to comment.