mirror of
https://github.com/linux-usb-gadgets/libusbgx.git
synced 2025-07-13 00:19:43 +03:00
Merge pull request #99 from mgrzeschik/release/0.3.0
libusbgx: Release libusbgx version 0.3.0
This commit is contained in:
commit
dbedf16f80
5 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
Wed, 09 Sep 2024 Michael Grzeschik <m.grzeschik@pengutronix.de> 0.3.0
|
||||||
|
- Add meson build support
|
||||||
|
- Add support for usb9pfs
|
||||||
|
- Add more controls for USB Audio Class 2 (UAC2)
|
||||||
|
- Add support for USB Video Class (UVC)
|
||||||
|
- Add support for Printer8664b79
|
||||||
|
- Improved support for network gadget
|
||||||
|
- Many smaller fixes
|
||||||
|
|
||||||
Fri, 02 Ma 2018 Krzysztof Opasiak <k.opasiak@samsung.com> 0.2.0
|
Fri, 02 Ma 2018 Krzysztof Opasiak <k.opasiak@samsung.com> 0.2.0
|
||||||
- Use prefix for our enums
|
- Use prefix for our enums
|
||||||
- Use string names similar to USB spec
|
- Use string names similar to USB spec
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([libusbgx], [0.2.0], [k.opasiak@samsung.com])
|
AC_INIT([libusbgx], [0.3.0], [m.grzeschik@pengutronix.de])
|
||||||
AM_INIT_AUTOMAKE([1.12 -Wall -Werror foreign serial-tests])
|
AM_INIT_AUTOMAKE([1.12 -Wall -Werror foreign serial-tests])
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
AC_PROG_CXX
|
AC_PROG_CXX
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
project(
|
project(
|
||||||
'libusbgx',
|
'libusbgx',
|
||||||
[ 'c', 'cpp' ],
|
[ 'c', 'cpp' ],
|
||||||
version: '0.2.0',
|
version: '0.3.0',
|
||||||
license: 'LGPL2.1',
|
license: 'LGPL2.1',
|
||||||
default_options: [
|
default_options: [
|
||||||
'warning_level=1',
|
'warning_level=1',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Name: libusbgx
|
Name: libusbgx
|
||||||
Version: 0.2.0
|
Version: 0.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
License: LGPL-2.1+ and GPL-2.0+
|
License: LGPL-2.1+ and GPL-2.0+
|
||||||
Summary: USB gadget with ConfigFS Library
|
Summary: USB gadget with ConfigFS Library
|
||||||
|
|
|
@ -7,6 +7,6 @@ else
|
||||||
libusbgx_la_SOURCES += usbg_schemes_none.c
|
libusbgx_la_SOURCES += usbg_schemes_none.c
|
||||||
endif
|
endif
|
||||||
libusbgx_la_LDFLAGS = $(LIBCONFIG_LIBS)
|
libusbgx_la_LDFLAGS = $(LIBCONFIG_LIBS)
|
||||||
libusbgx_la_LDFLAGS += -version-info 2:0:0
|
libusbgx_la_LDFLAGS += -version-info 3:0:0
|
||||||
libusbgx_la_CFLAGS = $(LIBCONFIG_CFLAGS)
|
libusbgx_la_CFLAGS = $(LIBCONFIG_CFLAGS)
|
||||||
AM_CPPFLAGS=-I$(top_srcdir)/include/ -I$(top_builddir)/include/usbg
|
AM_CPPFLAGS=-I$(top_srcdir)/include/ -I$(top_builddir)/include/usbg
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue