New pre-compiled binaries for windows and linux.
De-coupled version number from libusb. Fixed cleaning of C files. UPgraded configure.ac to newer format.
This commit is contained in:
parent
35320a0a93
commit
82e64dcfa9
5
pom.xml
5
pom.xml
@ -13,10 +13,11 @@
|
||||
<artifactId>usb4java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>usb4java</name>
|
||||
<version>0.1.12-1-SNAPSHOT</version>
|
||||
<version>0.1.0-SNAPSHOT</version>
|
||||
<url>http://www.ailis.de/~k/projects/usb4java</url>
|
||||
<description>
|
||||
USB library for Java based on libusb-0.1.x
|
||||
USB library for Java based on libusb-0.1.x and implementing javax.usb
|
||||
(JSR-80).
|
||||
</description>
|
||||
<inceptionYear>2011</inceptionYear>
|
||||
<organization>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -24,13 +24,13 @@ clean:
|
||||
Makefile.in \
|
||||
missing \
|
||||
stamp-h1 \
|
||||
src/main/c/Makefile.in \
|
||||
src/main/c/.deps \
|
||||
src/main/c/.libs \
|
||||
src/main/c/*.lo \
|
||||
src/main/c/*.la \
|
||||
src/main/c/*.o \
|
||||
src/main/c/Makefile \
|
||||
src/Makefile.in \
|
||||
src/.deps \
|
||||
src/.libs \
|
||||
src/*.lo \
|
||||
src/*.la \
|
||||
src/*.o \
|
||||
src/Makefile \
|
||||
*.tar.gz \
|
||||
*.tar.bz2 \
|
||||
*~
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
AC_INIT(configure.ac)
|
||||
AM_INIT_AUTOMAKE(libusb4java, 0.1.12-1)
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
AC_PREREQ([2.65])
|
||||
AC_INIT([libusb4java], [0.1.0], [k@ailis.de])
|
||||
AM_INIT_AUTOMAKE(foreign -Wall -Werror)
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_SRCDIR([src/usb4java.h])
|
||||
|
||||
CPPFLAGS="\
|
||||
-I/System/Library/Frameworks/JavaVM.framework/Headers \
|
||||
|
||||
@ -32,7 +32,7 @@ public final class Services implements UsbServices
|
||||
"usb4java JSR-80 implementation";
|
||||
|
||||
/** The implementation version. */
|
||||
private static final String IMP_VERSION = "0.1.12-1";
|
||||
private static final String IMP_VERSION = "0.1.0";
|
||||
|
||||
/** The API version. */
|
||||
private static final String API_VERSION = "1.0.1";
|
||||
|
||||
@ -39,7 +39,7 @@ public final class VirtualRootHub implements UsbHub,
|
||||
private static final String PRODUCT = "Virtual Root Hub";
|
||||
|
||||
/** The serial number. */
|
||||
private static final String SERIAL_NUMBER = "0.1.12-1";
|
||||
private static final String SERIAL_NUMBER = "0.1.0";
|
||||
|
||||
/** The configurations. */
|
||||
private final List<UsbConfiguration> configurations =
|
||||
|
||||
Loading…
Reference in New Issue
Block a user