diff options
author | Robin Krahl <me@robin-krahl.de> | 2018-07-05 19:10:29 +0200 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2018-07-05 19:13:10 +0200 |
commit | 4cf21377525af162b3117523673dafab12bc388e (patch) | |
tree | b36df1ee4c99003536bfd224096c059bb33c61e6 | |
parent | 70a6207992deb2614ebcc2569df838af4563ba49 (diff) | |
download | nitrokey-sys-rs-4cf21377525af162b3117523673dafab12bc388e.tar.gz nitrokey-sys-rs-4cf21377525af162b3117523673dafab12bc388e.tar.bz2 |
Use Git tag in libnitrokey directory name
To make automated construction of the library path easier, this patch
changes the name of the libnitrokey source directory to match the Git
version tag (-v3.3 instead of -3.3).
-rw-r--r-- | build.rs | 2 | ||||
-rw-r--r-- | libnitrokey-v3.3/DeviceCommunicationExceptions.cpp (renamed from libnitrokey-3.3/DeviceCommunicationExceptions.cpp) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/LICENSE (renamed from libnitrokey-3.3/LICENSE) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/NK_C_API.cc (renamed from libnitrokey-3.3/NK_C_API.cc) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/NK_C_API.h (renamed from libnitrokey-3.3/NK_C_API.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/NitrokeyManager.cc (renamed from libnitrokey-3.3/NitrokeyManager.cc) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/README.md (renamed from libnitrokey-3.3/README.md) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/command_id.cc (renamed from libnitrokey-3.3/command_id.cc) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/device.cc (renamed from libnitrokey-3.3/device.cc) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/CommandFailedException.h (renamed from libnitrokey-3.3/libnitrokey/CommandFailedException.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/DeviceCommunicationExceptions.h (renamed from libnitrokey-3.3/libnitrokey/DeviceCommunicationExceptions.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/LibraryException.h (renamed from libnitrokey-3.3/libnitrokey/LibraryException.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/LongOperationInProgressException.h (renamed from libnitrokey-3.3/libnitrokey/LongOperationInProgressException.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/NitrokeyManager.h (renamed from libnitrokey-3.3/libnitrokey/NitrokeyManager.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/command.h (renamed from libnitrokey-3.3/libnitrokey/command.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/command_id.h (renamed from libnitrokey-3.3/libnitrokey/command_id.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/cxx_semantics.h (renamed from libnitrokey-3.3/libnitrokey/cxx_semantics.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/device.h (renamed from libnitrokey-3.3/libnitrokey/device.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/device_proto.h (renamed from libnitrokey-3.3/libnitrokey/device_proto.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/dissect.h (renamed from libnitrokey-3.3/libnitrokey/dissect.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/hidapi/hidapi.h (renamed from libnitrokey-3.3/libnitrokey/hidapi/hidapi.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/log.h (renamed from libnitrokey-3.3/libnitrokey/log.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/misc.h (renamed from libnitrokey-3.3/libnitrokey/misc.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/stick10_commands.h (renamed from libnitrokey-3.3/libnitrokey/stick10_commands.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/stick10_commands_0.8.h (renamed from libnitrokey-3.3/libnitrokey/stick10_commands_0.8.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/libnitrokey/stick20_commands.h (renamed from libnitrokey-3.3/libnitrokey/stick20_commands.h) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/log.cc (renamed from libnitrokey-3.3/log.cc) | 0 | ||||
-rw-r--r-- | libnitrokey-v3.3/misc.cc (renamed from libnitrokey-3.3/misc.cc) | 0 |
28 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ fn main() { "log.cc", "misc.cc", ]; - let library_dir = Path::new("libnitrokey-3.3"); + let library_dir = Path::new("libnitrokey-v3.3"); cc::Build::new() .cpp(true) diff --git a/libnitrokey-3.3/DeviceCommunicationExceptions.cpp b/libnitrokey-v3.3/DeviceCommunicationExceptions.cpp index 4d62aad..4d62aad 100644 --- a/libnitrokey-3.3/DeviceCommunicationExceptions.cpp +++ b/libnitrokey-v3.3/DeviceCommunicationExceptions.cpp diff --git a/libnitrokey-3.3/LICENSE b/libnitrokey-v3.3/LICENSE index 341c30b..341c30b 100644 --- a/libnitrokey-3.3/LICENSE +++ b/libnitrokey-v3.3/LICENSE diff --git a/libnitrokey-3.3/NK_C_API.cc b/libnitrokey-v3.3/NK_C_API.cc index b245940..b245940 100644 --- a/libnitrokey-3.3/NK_C_API.cc +++ b/libnitrokey-v3.3/NK_C_API.cc diff --git a/libnitrokey-3.3/NK_C_API.h b/libnitrokey-v3.3/NK_C_API.h index 96a1950..96a1950 100644 --- a/libnitrokey-3.3/NK_C_API.h +++ b/libnitrokey-v3.3/NK_C_API.h diff --git a/libnitrokey-3.3/NitrokeyManager.cc b/libnitrokey-v3.3/NitrokeyManager.cc index 2ca183c..2ca183c 100644 --- a/libnitrokey-3.3/NitrokeyManager.cc +++ b/libnitrokey-v3.3/NitrokeyManager.cc diff --git a/libnitrokey-3.3/README.md b/libnitrokey-v3.3/README.md index 81b367a..81b367a 100644 --- a/libnitrokey-3.3/README.md +++ b/libnitrokey-v3.3/README.md diff --git a/libnitrokey-3.3/command_id.cc b/libnitrokey-v3.3/command_id.cc index d81d487..d81d487 100644 --- a/libnitrokey-3.3/command_id.cc +++ b/libnitrokey-v3.3/command_id.cc diff --git a/libnitrokey-3.3/device.cc b/libnitrokey-v3.3/device.cc index da54e33..da54e33 100644 --- a/libnitrokey-3.3/device.cc +++ b/libnitrokey-v3.3/device.cc diff --git a/libnitrokey-3.3/libnitrokey/CommandFailedException.h b/libnitrokey-v3.3/libnitrokey/CommandFailedException.h index 32bd6b7..32bd6b7 100644 --- a/libnitrokey-3.3/libnitrokey/CommandFailedException.h +++ b/libnitrokey-v3.3/libnitrokey/CommandFailedException.h diff --git a/libnitrokey-3.3/libnitrokey/DeviceCommunicationExceptions.h b/libnitrokey-v3.3/libnitrokey/DeviceCommunicationExceptions.h index f710d0b..f710d0b 100644 --- a/libnitrokey-3.3/libnitrokey/DeviceCommunicationExceptions.h +++ b/libnitrokey-v3.3/libnitrokey/DeviceCommunicationExceptions.h diff --git a/libnitrokey-3.3/libnitrokey/LibraryException.h b/libnitrokey-v3.3/libnitrokey/LibraryException.h index 3b9d177..3b9d177 100644 --- a/libnitrokey-3.3/libnitrokey/LibraryException.h +++ b/libnitrokey-v3.3/libnitrokey/LibraryException.h diff --git a/libnitrokey-3.3/libnitrokey/LongOperationInProgressException.h b/libnitrokey-v3.3/libnitrokey/LongOperationInProgressException.h index 865d6b5..865d6b5 100644 --- a/libnitrokey-3.3/libnitrokey/LongOperationInProgressException.h +++ b/libnitrokey-v3.3/libnitrokey/LongOperationInProgressException.h diff --git a/libnitrokey-3.3/libnitrokey/NitrokeyManager.h b/libnitrokey-v3.3/libnitrokey/NitrokeyManager.h index 1f4cec4..1f4cec4 100644 --- a/libnitrokey-3.3/libnitrokey/NitrokeyManager.h +++ b/libnitrokey-v3.3/libnitrokey/NitrokeyManager.h diff --git a/libnitrokey-3.3/libnitrokey/command.h b/libnitrokey-v3.3/libnitrokey/command.h index 6852bf0..6852bf0 100644 --- a/libnitrokey-3.3/libnitrokey/command.h +++ b/libnitrokey-v3.3/libnitrokey/command.h diff --git a/libnitrokey-3.3/libnitrokey/command_id.h b/libnitrokey-v3.3/libnitrokey/command_id.h index 1092ea9..1092ea9 100644 --- a/libnitrokey-3.3/libnitrokey/command_id.h +++ b/libnitrokey-v3.3/libnitrokey/command_id.h diff --git a/libnitrokey-3.3/libnitrokey/cxx_semantics.h b/libnitrokey-v3.3/libnitrokey/cxx_semantics.h index 36ed142..36ed142 100644 --- a/libnitrokey-3.3/libnitrokey/cxx_semantics.h +++ b/libnitrokey-v3.3/libnitrokey/cxx_semantics.h diff --git a/libnitrokey-3.3/libnitrokey/device.h b/libnitrokey-v3.3/libnitrokey/device.h index f6d2380..f6d2380 100644 --- a/libnitrokey-3.3/libnitrokey/device.h +++ b/libnitrokey-v3.3/libnitrokey/device.h diff --git a/libnitrokey-3.3/libnitrokey/device_proto.h b/libnitrokey-v3.3/libnitrokey/device_proto.h index 45a6c16..45a6c16 100644 --- a/libnitrokey-3.3/libnitrokey/device_proto.h +++ b/libnitrokey-v3.3/libnitrokey/device_proto.h diff --git a/libnitrokey-3.3/libnitrokey/dissect.h b/libnitrokey-v3.3/libnitrokey/dissect.h index 690b5b7..690b5b7 100644 --- a/libnitrokey-3.3/libnitrokey/dissect.h +++ b/libnitrokey-v3.3/libnitrokey/dissect.h diff --git a/libnitrokey-3.3/libnitrokey/hidapi/hidapi.h b/libnitrokey-v3.3/libnitrokey/hidapi/hidapi.h index e5bc2dc..e5bc2dc 100644 --- a/libnitrokey-3.3/libnitrokey/hidapi/hidapi.h +++ b/libnitrokey-v3.3/libnitrokey/hidapi/hidapi.h diff --git a/libnitrokey-3.3/libnitrokey/log.h b/libnitrokey-v3.3/libnitrokey/log.h index 2a64bef..2a64bef 100644 --- a/libnitrokey-3.3/libnitrokey/log.h +++ b/libnitrokey-v3.3/libnitrokey/log.h diff --git a/libnitrokey-3.3/libnitrokey/misc.h b/libnitrokey-v3.3/libnitrokey/misc.h index 88254dd..88254dd 100644 --- a/libnitrokey-3.3/libnitrokey/misc.h +++ b/libnitrokey-v3.3/libnitrokey/misc.h diff --git a/libnitrokey-3.3/libnitrokey/stick10_commands.h b/libnitrokey-v3.3/libnitrokey/stick10_commands.h index f2ffba2..f2ffba2 100644 --- a/libnitrokey-3.3/libnitrokey/stick10_commands.h +++ b/libnitrokey-v3.3/libnitrokey/stick10_commands.h diff --git a/libnitrokey-3.3/libnitrokey/stick10_commands_0.8.h b/libnitrokey-v3.3/libnitrokey/stick10_commands_0.8.h index 9477890..9477890 100644 --- a/libnitrokey-3.3/libnitrokey/stick10_commands_0.8.h +++ b/libnitrokey-v3.3/libnitrokey/stick10_commands_0.8.h diff --git a/libnitrokey-3.3/libnitrokey/stick20_commands.h b/libnitrokey-v3.3/libnitrokey/stick20_commands.h index 4b75e6a..4b75e6a 100644 --- a/libnitrokey-3.3/libnitrokey/stick20_commands.h +++ b/libnitrokey-v3.3/libnitrokey/stick20_commands.h diff --git a/libnitrokey-3.3/log.cc b/libnitrokey-v3.3/log.cc index 06acee7..06acee7 100644 --- a/libnitrokey-3.3/log.cc +++ b/libnitrokey-v3.3/log.cc diff --git a/libnitrokey-3.3/misc.cc b/libnitrokey-v3.3/misc.cc index 59185f3..59185f3 100644 --- a/libnitrokey-3.3/misc.cc +++ b/libnitrokey-v3.3/misc.cc |