0 Members and 2 Guests are viewing this topic.
i'v 3.02 on computer softwar but 3.1 on calc
Here it is: http://bytecode.fr/luna/page.php5?id=1163613The id is the one of your code snippet on Gist. An old version of Luna is being used, I'm not sure which one, I have to update it.This was not really built for for development use, but rather for sharing Lua binary files. An HTML form would be more suited. And don't expect this service to be always available, I have limited resources on the server.
I have released Luna v0.3 with OS v3.2 compatibility and full support of special characters: http://ndlessly.wordpress.com/2012/06/24/luna-updated-compatibility-with-os-v3-2-and-special-characters/
CC:=gccCFLAGS:=-W -Wall -m32LDFLAGS:= -lssl -lz -m32VPATH := minizip-1.1OS ?= `uname -s`ifeq ($(OS),Windows_NT) EXEEXT = .exeelse CFLAGS := $(CFLAGS) -DUSE_FILE32API LDFLAGS:= $(LDFLAGS) -lcryptoendifall: luna$(EXEEXT)luna$(EXEEXT): luna.o zip.o ioapi.o gcc -o $@ $^ $(LDFLAGS)dist: clean all mkdir -p dist/src rm -f *.o find . -maxdepth 1 ! -name 'luna$(EXEEXT)' -a ! -name dist -a ! -name . -exec cp -r {} dist/src \; cp luna$(EXEEXT) *.dll *.txt distclean: rm -rf *.o luna$(EXEEXT) dist