Stefan Sperling writes:
> Fish Fillets NG is strictly a puzzle game. The goal is always the same:
> find a safe way out. The fish utter witty remarks about their
> surroundings, the various inhabitants of their underwater realm quarrel
> among themselves or comment on the efforts of your fish. The whole game
> is accompanied by quiet, comforting music.
>
> No puffy sprites, unfortunately...
> CFLAGS = -I${MODLUA_INCL_DIR}
> LDFLAGS = -L${MODLUA_LIBDIR}
This will break if someone sets CFLAGS in mk.conf or on the command line.
Can you do something like this instead?
CONFIGURE_ENV = CPPFLAGS="${CPPFLAGS} -I${MODLUA_INCL_DIR}" \
LUA_CFLAGS=-I${MODLUA_INCL_DIR} \
LUA_LIBS=${MODLUA_LIB}
otherwise, ok bentley@