# HG changeset patch # User Michiel Broek # Date 1409669658 -7200 # Node ID affe4d2adc94e9ba89f9252104f84e47161ce96b # Parent 885e5243bb50f17b493afc14e880fa36e48c93a6 Bumped to version 0.2.2 diff -r 885e5243bb50 -r affe4d2adc94 configure --- a/configure Tue Sep 02 16:37:43 2014 +0200 +++ b/configure Tue Sep 02 16:54:18 2014 +0200 @@ -2034,7 +2034,7 @@ PACKAGE="mbsePi-apps" -VERSION="0.2.1" +VERSION="0.2.2" COPYRIGHT="Copyright (C) 2014 Michiel Broek, All Rights Reserved" CYEARS="2014" @@ -3523,6 +3523,7 @@ fi +SIMULATOR=No # Check whether --enable-simulator was given. if test "${enable_simulator+set}" = set; then : enableval=$enable_simulator; simulator=$enableval @@ -3533,6 +3534,7 @@ if test "$simulator" = "yes"; then $as_echo "#define USE_SIMULATOR 1" >>confdefs.h + SIMULATOR=Yes fi # Check whether --enable-debugging was given. @@ -5072,6 +5074,7 @@ Version : ............ ${VERSION} Main directory : ..... ${prefix} WiringPi : ........... ${WIRINGPI} + Simulator : .......... ${SIMULATOR} Now type 'make' and 'sudo make install' " >&5 @@ -5083,6 +5086,7 @@ Version : ............ ${VERSION} Main directory : ..... ${prefix} WiringPi : ........... ${WIRINGPI} + Simulator : .......... ${SIMULATOR} Now type 'make' and 'sudo make install' " >&6; } diff -r 885e5243bb50 -r affe4d2adc94 configure.ac --- a/configure.ac Tue Sep 02 16:37:43 2014 +0200 +++ b/configure.ac Tue Sep 02 16:54:18 2014 +0200 @@ -8,7 +8,7 @@ dnl General settings dnl After changeing the version number, run autoconf! PACKAGE="mbsePi-apps" -VERSION="0.2.1" +VERSION="0.2.2" COPYRIGHT="Copyright (C) 2014 Michiel Broek, All Rights Reserved" CYEARS="2014" AC_SUBST(PACKAGE) @@ -47,9 +47,11 @@ AC_DEFINE(USE_EXPERIMENT) fi +SIMULATOR=No AC_ARG_ENABLE(simulator, [ --enable-simulator Compile simulator code], [ simulator=$enableval ], [ simulator=no ]) if test "$simulator" = "yes"; then AC_DEFINE(USE_SIMULATOR) + SIMULATOR=Yes fi AC_ARG_ENABLE(debugging, [ --enable-debugging Compile for debugging], [ debugging=$enableval ], [ debugging=no ]) @@ -98,6 +100,7 @@ Version : ............ ${VERSION} Main directory : ..... ${prefix} WiringPi : ........... ${WIRINGPI} + Simulator : .......... ${SIMULATOR} Now type 'make' and 'sudo make install' ])