diff --git a/src/main/c/AUTHORS b/src/main/c/AUTHORS index 1f18bbf..9d14783 100644 --- a/src/main/c/AUTHORS +++ b/src/main/c/AUTHORS @@ -1 +1,2 @@ Klaus Reimer +Luca Longinotti diff --git a/src/main/c/README b/src/main/c/README index 3bab7f2..d942c8f 100644 --- a/src/main/c/README +++ b/src/main/c/README @@ -23,7 +23,7 @@ When compilation was successful then you can find the library in the number (Examples: libusb4java.so, libusb4java.dylib, libusb4java.dll). usb4java searches for the library in the CLASSPATH directory -`de/ailis/usb4java/libusb/-/`. On a 32 bit x86 linux machine for -example the directory name is `de/ailis/usb4java/libusb/linux-x86`. Usually +`org/usb4java/libusb/-/`. On a 32 bit x86 linux machine for +example the directory name is `org/usb4java/libusb/linux-x86`. Usually you can find the required name in the exception thrown by usb4java when it does not find the required library. diff --git a/src/main/c/build/common.sh b/src/main/c/build/common.sh index 5572e56..0b0b758 100644 --- a/src/main/c/build/common.sh +++ b/src/main/c/build/common.sh @@ -28,7 +28,7 @@ build() LIBUSB_URL="http://downloads.sf.net/project/libusb/libusb-1.0/$LIBUSB_NAME/$LIBUSB_ARCHIVE" fi - DISTDIR="$SRCDIR/../resources/de/ailis/usb4java/libusb/$OS-$ARCH" + DISTDIR="$SRCDIR/../resources/org/usb4java/libusb/$OS-$ARCH" # Only Windows needs the shared library, the others want static ones. if [ "$OS" = "windows" ] diff --git a/src/main/c/configure.ac b/src/main/c/configure.ac index 8818253..64b819d 100644 --- a/src/main/c/configure.ac +++ b/src/main/c/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.61]) -AC_INIT([libusb4java], [1.0.0], [k@ailis.de]) +AC_INIT([libusb4java], [1.2.0], [usb4java@googlegroups.com]) AM_INIT_AUTOMAKE([foreign -Wall -Werror]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/src/main/c/src/usb4java.h b/src/main/c/src/usb4java.h index c2d317a..9e854be 100644 --- a/src/main/c/src/usb4java.h +++ b/src/main/c/src/usb4java.h @@ -11,8 +11,8 @@ #include #include "config.h" -#define PACKAGE_DIR "de/ailis/usb4java/libusb" -#define METHOD_NAME(CLASS_NAME, METHOD_NAME) Java_de_ailis_usb4java_libusb_##CLASS_NAME##_##METHOD_NAME +#define PACKAGE_DIR "org/usb4java/libusb" +#define METHOD_NAME(CLASS_NAME, METHOD_NAME) Java_org_usb4java_libusb_##CLASS_NAME##_##METHOD_NAME #if SIZEOF_VOID_P == 4 # define jptr jint