Skip to content

Commit

Permalink
Removed code to create symlink for previous name of renamed lib
Browse files Browse the repository at this point in the history
libhdf5hl_fortran.
Add RELEASE.txt entry about changeing name libhdf5hl_fortran to
libhdf5_hl_fortran.
  • Loading branch information
lrknox committed Sep 6, 2024
1 parent 7bc4490 commit 878dae1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
15 changes: 0 additions & 15 deletions hl/fortran/src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,6 @@ libhdf5_hl_fortran_la_SOURCES=H5DSfc.c H5LTfc.c H5IMfc.c H5IMcc.c H5TBfc.c \
# HDF5 HL Fortran library depends on HDF5 Library.
libhdf5_hl_fortran_la_LIBADD=$(LIBH5_HL) $(LIBH5F)

# The name of the lib file doesn't follow the same pattern as the other hl lib
# files, namely libhdf5_hl_*. Add a symlink with the compliant name to the
# actual lib file.
install-exec-hook:
cd $(DESTDIR)$(libdir) && \
if test -f libhdf5_hl_fortran.a -a \
! -f libhdf5hl_fortran.a; then \
$(LN_S) libhdf5_hl_fortran.a libhdf5hl_fortran.a; \
fi; \
if test -f libhdf5_hl_fortran.so -a \
! -f libhdf5hl_fortran.so; then \
$(LN_S) libhdf5_hl_fortran.so libhdf5hl_fortran.so; \
fi;


# Fortran module files can have different extensions and different names
# (e.g., different capitalizations) on different platforms. Write rules
# for them explicitly rather than trying to teach automake about them.
Expand Down
6 changes: 6 additions & 0 deletions release_docs/RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1767,6 +1767,12 @@ Bug Fixes since HDF5-1.14.0 release

Configuration
-------------
- Changed name of libhdf5hl_fortran installed by autotools to libhdf5_hl_fortran. The
new name is consistent with the name of the lib when installed by CMake and with the
other hl libs.

Fixes GitHub issue #4811

- Fixed usage issue with FindZLIB.cmake module

When building HDF5 with CMake and relying on the FindZLIB.cmake module,
Expand Down

0 comments on commit 878dae1

Please sign in to comment.