mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-01 08:27:59 +00:00
ff4cd9bfb1
We need to ensure that we defined Numbers as int64_t everywhere we build for lua. Previously, we were compiling part of the code with Numbers as int64_t and part as double. Move lua number definition to a more-central location
8 lines
221 B
Makefile
8 lines
221 B
Makefile
# $FreeBSD$
|
|
|
|
# Common flags to build lua related files
|
|
|
|
CFLAGS+= -I${LUASRC} -I${LDRSRC} -I${LIBLUASRC}
|
|
# CFLAGS+= -Ddouble=jagged-little-pill -Dfloat=poison-shake -D__OMIT_FLOAT
|
|
CFLAGS+= -DLUA_FLOAT_TYPE=LUA_FLOAT_INT64
|