]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Corrected the name of the windows dll files
authorNikos Mavrogiannopoulos <nmav@redhat.com>
Thu, 18 Feb 2016 10:03:25 +0000 (11:03 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Wed, 30 Mar 2016 17:24:11 +0000 (19:24 +0200)
The new name doesn't include the minor number and thus
allows to replace with a minor update of the library.

configure.ac

index 029a15c411200221d1c400e0154d4d308cd51280..e1ee64c2e7bdc08b479651076c0bd394fe822974 100644 (file)
@@ -576,12 +576,12 @@ case "$host_os" in
     # linking to the DLL, is installed into the lib dir.
     case "$host_os" in
       mingw32*)
-        LIBNETTLE_FORLINK='libnettle-$(LIBNETTLE_MAJOR)-$(LIBNETTLE_MINOR).dll'
-        LIBHOGWEED_FORLINK='libhogweed-$(LIBHOGWEED_MAJOR)-$(LIBHOGWEED_MINOR).dll'
+        LIBNETTLE_FORLINK='libnettle-$(LIBNETTLE_MAJOR).dll'
+        LIBHOGWEED_FORLINK='libhogweed-$(LIBHOGWEED_MAJOR).dll'
         ;;
       cygwin*)
-        LIBNETTLE_FORLINK='cygnettle-$(LIBNETTLE_MAJOR)-$(LIBNETTLE_MINOR).dll'
-        LIBHOGWEED_FORLINK='cyghogweed-$(LIBHOGWEED_MAJOR)-$(LIBHOGWEED_MINOR).dll'
+        LIBNETTLE_FORLINK='cygnettle-$(LIBNETTLE_MAJOR).dll'
+        LIBHOGWEED_FORLINK='cyghogweed-$(LIBHOGWEED_MAJOR).dll'
         ;;
     esac
     if test "x$cross_compiling" = xyes ; then