Bumped to version 0.2.2

Tue, 02 Sep 2014 16:54:18 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 02 Sep 2014 16:54:18 +0200
changeset 283
affe4d2adc94
parent 282
885e5243bb50
child 284
9e6fb5aed618

Bumped to version 0.2.2

configure file | annotate | diff | comparison | revisions
configure.ac file | annotate | diff | comparison | revisions
--- 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; }
--- 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'
 ])

mercurial