Disable some stuff which should not be in 0.2.
Disable decoders, disable lib building.
This commit is contained in:
parent
847c21bc65
commit
2f3aab0ee9
12
Makefile.am
12
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
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue