Skip to content

Commit

Permalink
Remove support of blinkstick
Browse files Browse the repository at this point in the history
  • Loading branch information
naguirre committed Feb 7, 2024
1 parent ade219f commit aa35144
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 222 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN apt-get update -qq && \
apt-get install -y \
build-essential wget git curl \
libsigc++-2.0-dev libjansson-dev libcurl4-openssl-dev libluajit2-5.1-dev libsqlite3-dev \
libcurl4-openssl-dev libusb-dev libow-dev imagemagick libev-dev libusb-1.0-0-dev \
libcurl4-openssl-dev libow-dev imagemagick libev-dev \
knxd knxd-dev googletest libuv1-dev libmosquitto-dev libmosquittopp-dev \
libola-dev ola \
unzip zip cmake automake autoconf libtool autopoint gettext \
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Requires:
- luajit
- sigc++ > 2.4.1
- owfs (optional) [http://owfs.org/](http://owfs.org/)
- libusb (optional)
- imagemagick (optional)
- OLA (optional) [https://github.com/OpenLightingProject/ola](https://github.com/OpenLightingProject/ola)
- knxd (optional) [https://github.com/knxd/knxd](https://github.com/knxd/knxd)
Expand Down
9 changes: 0 additions & 9 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,6 @@ then
AC_CHECK_LIB([owcapi], [OW_init],, AC_MSG_ERROR(Missing owfs library))
fi

have_libusb="no"
PKG_CHECK_MODULES([LIBUSB], [libusb-1.0], [have_libusb="yes"], [have_libusb="no"])
AM_CONDITIONAL([HAVE_LIBUSB], [test "x${have_libusb}" = "xyes"])
if test "x${have_libusb}" == "xyes"
then
AC_DEFINE([HAVE_LIBUSB], [1], [libusb])
fi

have_libola="no"
PKG_CHECK_MODULES([LIBOLA], [libola], [have_libola="yes"], [have_libola="no"])
AM_CONDITIONAL([HAVE_LIBOLA], [test "x${have_libola}" = "xyes"])
Expand Down Expand Up @@ -220,7 +212,6 @@ echo " UrlDownloader picture resizing.......: $(colorOut $CONVERT_INFO)"
echo
echo "Hardware support:"
echo " One Wire support.....................: $(colorOut $have_owcapi)"
echo " Libusb support.......................: $(colorOut $have_libusb)"
echo " Open Lightning Architecture support..: $(colorOut $have_libola)"
echo " Eib/KNX support (eibd or knxd).......: $(colorOut $have_libknx)"
echo " MQTT support (libmosquittopp)........: $(colorOut $have_mosquitto)"
Expand Down
2 changes: 0 additions & 2 deletions po/POTFILES.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
./src/bin/calaos_server/HttpServer.h
./src/bin/calaos_server/IO/AnalogIO.cpp
./src/bin/calaos_server/IO/AnalogIO.h
./src/bin/calaos_server/IO/Blinkstick/BlinkstickOutputLightRGB.cpp
./src/bin/calaos_server/IO/Blinkstick/BlinkstickOutputLightRGB.h
./src/bin/calaos_server/IO/ExternProc.cpp
./src/bin/calaos_server/IO/ExternProc.h
./src/bin/calaos_server/IO/Gpio/GpioCtrl.cpp
Expand Down
150 changes: 0 additions & 150 deletions src/bin/calaos_server/IO/Blinkstick/BlinkstickOutputLightRGB.cpp

This file was deleted.

50 changes: 0 additions & 50 deletions src/bin/calaos_server/IO/Blinkstick/BlinkstickOutputLightRGB.h

This file was deleted.

9 changes: 0 additions & 9 deletions src/bin/calaos_server/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/src/lib/sole \
@CALAOS_COMMON_CFLAGS@ \
@CALAOS_SERVER_CFLAGS@ \
@LIBUSB_CFLAGS@ \
@LIBOLA_CFLAGS@ \
@PTHREAD_CFLAGS@

Expand Down Expand Up @@ -415,16 +414,9 @@ calaos_server_SOURCES = \
HistLogger.h \
main.cpp

if HAVE_LIBUSB
calaos_server_SOURCES += \
IO/Blinkstick/BlinkstickOutputLightRGB.cpp \
IO/Blinkstick/BlinkstickOutputLightRGB.h
endif

calaos_server_LDADD = \
@CALAOS_COMMON_LIBS@ \
@CALAOS_SERVER_LIBS@ \
@LIBUSB_LIBS@ \
@INTLLIBS@ \
@PTHREAD_CFLAGS@ \
$(top_builddir)/src/lib/libcalaos_common.la
Expand Down Expand Up @@ -514,4 +506,3 @@ calaos_mqtt_LDADD = \
-lmosquitto -lmosquittopp \
$(top_builddir)/src/lib/libcalaos_common.la
endif

0 comments on commit aa35144

Please sign in to comment.