mirror of
https://github.com/clockworkpi/WiringPi.git
synced 2025-12-13 00:08:51 +01:00
Change to the build script to check for the presence of the I2C development
libraries. Bumped gpio version.
This commit is contained in:
parent
c121349a7b
commit
4673e38b1f
15
build
15
build
@ -23,7 +23,22 @@ elif [ x$1 = "xuninstall" ]; then
|
|||||||
cd ..
|
cd ..
|
||||||
else
|
else
|
||||||
echo wiringPi Build script - please wait...
|
echo wiringPi Build script - please wait...
|
||||||
|
|
||||||
echo
|
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"
|
echo "WiringPi library"
|
||||||
cd wiringPi
|
cd wiringPi
|
||||||
sudo make uninstall
|
sudo make uninstall
|
||||||
|
|||||||
@ -42,7 +42,7 @@ extern int wiringPiDebug ;
|
|||||||
# define FALSE (1==2)
|
# define FALSE (1==2)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "1.6"
|
#define VERSION "1.7"
|
||||||
|
|
||||||
static int wpMode ;
|
static int wpMode ;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user