chiark / gitweb /
Change to the build script to check for the presence of the I2C development
authorGordon Henderson <projects@drogon.net>
Tue, 15 Jan 2013 15:45:32 +0000 (15:45 +0000)
committerGordon Henderson <projects@drogon.net>
Tue, 15 Jan 2013 15:45:32 +0000 (15:45 +0000)
libraries.
Bumped gpio version.

build
gpio/gpio.c

diff --git a/build b/build
index 9eeb4df494197dc56f842831f825ba6b1ad75482..ad1eff0a012cc394abf0bc10fe9b95bc3ac16357 100755 (executable)
--- a/build
+++ b/build
@@ -23,7 +23,22 @@ elif [ x$1 = "xuninstall" ]; then
   cd ..
 else
   echo wiringPi Build script - please wait...
+
   echo
+  if [ ! -f /usr/include/linux/i2c-dev.h ]; then
+    echo "* wiringPi needs the I2C Development Libraires installing."
+    echo ""
+    echo "If using Debian/Raspbian, then type this command:"
+    echo "  sudo apt-get install libi2c-dev"
+    echo "then run ./build again."
+    echo ""
+    echo "If using another Linux distribution, then you will have to"
+    echo "work out how to install the I2C Developmen Libraries for your"
+    echo "system."
+    echo ""
+    exit 1
+  fi
+
   echo "WiringPi library"
   cd wiringPi
   sudo make uninstall
index 7b84abddf31ef284c4bf279147d24e3158219cbf..66151336fa0c158aadcc4a83e04684d55e2e5d47 100644 (file)
@@ -42,7 +42,7 @@ extern int wiringPiDebug ;
 #  define      FALSE   (1==2)
 #endif
 
-#define        VERSION "1.6"
+#define        VERSION "1.7"
 
 static int wpMode ;