lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


	Hi Stefan

Do I need to install Compat-5.1 with LUA 5.1?
	No.  You have to edit the file and remove the #include.  You
should edit the Makefile also to avoid trying to compile a not existent
file :-)

I see. So I remove (or comment out)

$(COMPAT_O): $(COMPAT_DIR)/compat-5.1.c
	$(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c

in the Makefile?
	Anyway, you will have to omit the compat-5.1.o from the list
of objects.  It is simpler to just comment the line:

#COMPAT_O= $(COMPAT_DIR)/compat-5.1.o

	The list of objects will became with just the lfs.o and then
the Makefile will not try to build the compat-5.1.o.

	Hope this helps,
		Tomas