From: Uwe Hermann Date: Sun, 3 Apr 2011 20:38:35 +0000 (+0200) Subject: Disable some stuff which should not be in 0.2. X-Git-Tag: libsigrok-0.1.0~300 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=2f3aab0ee9797700238656218208a6ab17a607b3;p=libsigrok.git Disable some stuff which should not be in 0.2. Disable decoders, disable lib building. --- diff --git a/Makefile.am b/Makefile.am index 8095ff2c..df0e9de4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,8 @@ AM_CPPFLAGS = -I $(top_srcdir)/libsigrok SUBDIRS = hardware input output firmware -lib_LTLIBRARIES = libsigrok.la +# lib_LTLIBRARIES = libsigrok.la +noinst_LTLIBRARIES = libsigrok.la libsigrok_la_SOURCES = \ backend.c \ @@ -42,9 +43,10 @@ libsigrok_la_LIBADD = \ libsigrok_la_LDFLAGS = $(SIGROK_LT_LDFLAGS) -include_HEADERS = sigrok.h sigrok-proto.h -noinst_HEADERS = sigrok-internal.h +# include_HEADERS = sigrok.h sigrok-proto.h +# noinst_HEADERS = sigrok-internal.h +noinst_HEADERS = sigrok.h sigrok-proto.h sigrok-internal.h -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = libsigrok.pc +# pkgconfigdir = $(libdir)/pkgconfig +# pkgconfig_DATA = libsigrok.pc diff --git a/hardware/common/serial.c b/hardware/common/serial.c index 5205c188..b3e8af0f 100644 --- a/hardware/common/serial.c +++ b/hardware/common/serial.c @@ -243,9 +243,11 @@ int serial_set_params(int fd, int speed, int bits, int parity, int stopbits, case 115200: baud = B115200; break; +#if 0 case 460800: baud = B460800; break; +#endif default: return SR_ERR; }