File tree Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Expand file tree Collapse file tree 5 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 1+ 2014-08-09
2+ Renamed command "#UNIT-PATH:" to "UNITPATH"
3+ Renamed command "#INC:" to "INCLUDE"
4+ Fixed/implemented INCLUDE command
5+ Refactored comp_pass_1 function is scan.c breaking into
6+ smaller helper functions
7+
182014-07-07
29 Update SDL to use SDL2 and common widget
310
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ dnl This program is distributed under the terms of the GPL v2.0
77dnl Download the GNU Public License (GPL) from www.gnu.org
88dnl
99
10- AC_INIT ( [ smallbasic] , [ 0.11.11 ] )
10+ AC_INIT ( [ smallbasic] , [ 0.11.12 ] )
1111AC_CONFIG_SRCDIR ( [ configure.ac] )
1212
1313AC_CANONICAL_TARGET
@@ -88,12 +88,12 @@ function checkDebugMode() {
8888 AC_MSG_RESULT ( [ $with_debug] )
8989 if test "$with_debug" = "yes" || test "$with_debug" = "full"
9090 then
91- CFLAGS="-g -O0"
92- CXXFLAGS="-g -O0"
91+ CFLAGS="${CFLAGS} -g -O0"
92+ CXXFLAGS="${CXXFLAGS} -g -O0"
9393 AC_DEFINE ( _DEBUG , 1 , [ debugging build enabled] )
9494 else
95- CFLAGS="-O3 -Os"
96- CXXFLAGS="-O3 -Os"
95+ CFLAGS="${CFLAGS} -O3 -Os"
96+ CXXFLAGS="${CXXFLAGS} -O3 -Os"
9797 fi
9898 AC_SUBST ( CFLAGS )
9999}
Original file line number Diff line number Diff line change 22<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
33 package =" net.sourceforge.smallbasic"
44 android : installLocation =" preferExternal"
5- android : versionCode =" 13 "
6- android : versionName =" 0.11.11 " >
5+ android : versionCode =" 14 "
6+ android : versionName =" 0.11.12 " >
77 <!-- This is the platform API where NativeActivity was introduced. -->
88 <uses-sdk android : minSdkVersion =" 9" />
99
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ sub about()
3030 print " (_ ._ _ _.|||_) /\ (_ |/ "
3131 print " __)| | |(_||||_)/--\__)|\_"
3232 print
33- print " Version 0.11.11 "
33+ print " Version 0.11.12 "
3434 print
3535 print " Copyright (c) 2002-2014 Chris Warren-Smith"
3636 print " Copyright (c) 2000-2006 Nic Christopoulos" + chr (10 )
Original file line number Diff line number Diff line change @@ -52,6 +52,6 @@ test: ${bin_PROGRAMS}
5252 echo $${utest} ✓; \
5353 else \
5454 echo $${utest} ✘; \
55- cat test.out; \
55+ cat test.out; \
5656 fi ; \
5757 done;
You can’t perform that action at this time.
0 commit comments