Disable some stuff which should not be in 0.2.

Disable decoders, disable lib building.
This commit is contained in:
Uwe Hermann 2011-04-03 22:38:35 +02:00
parent 847c21bc65
commit 2f3aab0ee9
2 changed files with 9 additions and 5 deletions

View File

@ -21,7 +21,8 @@ AM_CPPFLAGS = -I $(top_srcdir)/libsigrok
SUBDIRS = hardware input output firmware SUBDIRS = hardware input output firmware
lib_LTLIBRARIES = libsigrok.la # lib_LTLIBRARIES = libsigrok.la
noinst_LTLIBRARIES = libsigrok.la
libsigrok_la_SOURCES = \ libsigrok_la_SOURCES = \
backend.c \ backend.c \
@ -42,9 +43,10 @@ libsigrok_la_LIBADD = \
libsigrok_la_LDFLAGS = $(SIGROK_LT_LDFLAGS) libsigrok_la_LDFLAGS = $(SIGROK_LT_LDFLAGS)
include_HEADERS = sigrok.h sigrok-proto.h # include_HEADERS = sigrok.h sigrok-proto.h
noinst_HEADERS = sigrok-internal.h # noinst_HEADERS = sigrok-internal.h
noinst_HEADERS = sigrok.h sigrok-proto.h sigrok-internal.h
pkgconfigdir = $(libdir)/pkgconfig # pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libsigrok.pc # pkgconfig_DATA = libsigrok.pc

View File

@ -243,9 +243,11 @@ int serial_set_params(int fd, int speed, int bits, int parity, int stopbits,
case 115200: case 115200:
baud = B115200; baud = B115200;
break; break;
#if 0
case 460800: case 460800:
baud = B460800; baud = B460800;
break; break;
#endif
default: default:
return SR_ERR; return SR_ERR;
} }