Skip to content

Commit

Permalink
1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ncannasse committed Sep 10, 2011
1 parent 084bdd2 commit 79e5c6a
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2010-??-?? : 1.8.2
2011-09-10 : 1.8.2
vm : use 15 digits (instead of 10) for float display
std : allow up to 512MB array/string size in serialize (instead of 1MB)
std : bugfix in utf8 (with 4 bytes codes)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ OSX_UNIVERSAL=1
endif

ifeq (${MACOSX}, 1)
export MACOSX_DEPLOYMENT_TARGET=10.3
export MACOSX_DEPLOYMENT_TARGET=10.4
EXTFLAGS =
MAKESO = ${CC}
LIBNEKO_NAME = libneko.dylib
LIBNEKO_INSTALL = -install_name @executable_path/${LIBNEKO_NAME}
LIBNEKO_LIBS = -ldl -lgc -lm -dynamiclib -single_module ${LIBNEKO_INSTALL}
LIBNEKO_LIBS = -ldl /opt/local/lib/libgc.a -lm -dynamiclib -single_module ${LIBNEKO_INSTALL}
NEKOVM_FLAGS = -L${PWD}/bin -lneko
STD_NDLL_FLAGS = -bundle -undefined dynamic_lookup ${NEKOVM_FLAGS}
CFLAGS += -L/usr/local/lib -L/opt/local/lib -I/opt/local/include
Expand Down
2 changes: 1 addition & 1 deletion bin/release.neko
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if( $loader.args[0] == "-src" ) {
cmd("rm -rf */*.o */*/*.o");
cmd("rm -rf src/*.n src/*/*.n src/*.neko src/neko/*.neko src/nekoml/*.neko");
cmd("rm -rf src/nekoc.exe src/nekoml.exe src/nekotools.exe");
cmd("rm -rf */debug */release */*/debug */*/release");
cmd("rm -rf */debug */release */*/debug */*/release */.svn */*/.svn */*/*/.svn");
cmd("rm -rf libs/include libs/mod_neko/debug2 libs/mod_neko/release2 libs/std/std2.sln");
cmd("rm -rf libs/mysql/debug5 libs/mysql/release5");
cmd("rm -rf libs/mod_tora/debug2 libs/mod_tora/release2 libs/mod_tora/server/CVS libs/mod_tora/server/.cvsignore libs/mod_tora/server/*.n");
Expand Down
3 changes: 3 additions & 0 deletions src/tools/install.neko
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ search_includes = function(isap2) {
"/usr/include/gtk-2.0",
"/opt/local/include",
"/opt/local/include/mysql",
"/opt/local/include/mysql5/mysql",
"/Developer/Headers/FlatCarbon",
);
var inc2;
Expand All @@ -171,6 +172,7 @@ search_includes = function(isap2) {
"/usr/include/apache-1.3",
"/usr/include/httpd",
"/opt/local/include/apache",
"/opt/local/include/httpd",
"/usr/local/apache/include"
);
return $aconcat($array(inc1,inc2));
Expand All @@ -186,6 +188,7 @@ libraries = $array(
"/usr/local/lib/mysql",
"/opt/local/lib",
"/opt/local/lib/mysql",
"/opt/local/lib/mysql5/mysql",
);

exec = function(cmd) {
Expand Down
2 changes: 1 addition & 1 deletion vm/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ int main( int argc, char *argv[] ) {
# ifdef NEKO_STANDALONE
report(vm,alloc_string("No embedded module in this executable"),0);
# else
printf("NekoVM %d.%d.%d (c)2005-2009 Motion-Twin\n Usage : neko <file>\n",NEKO_VERSION/100,(NEKO_VERSION/10)%10,NEKO_VERSION%10);
printf("NekoVM %d.%d.%d (c)2005-2011 Motion-Twin\n Usage : neko <file>\n",NEKO_VERSION/100,(NEKO_VERSION/10)%10,NEKO_VERSION%10);
# endif
mload = NULL;
r = 1;
Expand Down
2 changes: 1 addition & 1 deletion vm/neko.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# include <stdint.h>
#endif

#define NEKO_VERSION 181
#define NEKO_VERSION 182

typedef intptr_t int_val;

Expand Down

0 comments on commit 79e5c6a

Please sign in to comment.