Skip to content

Commit

Permalink
m4: fix test ld version script.
Browse files Browse the repository at this point in the history
* The test macro gl_LD_VERSION_SCRIPT which not work on FreeBSD 14.1
  is simplified and works now also on FreeBSD 14.1
* The option --enable-nodl, which was used as a workaround for this
  problem in the cirrus CI, is removed.

Signed-off-by: Juergen Repp <[email protected]>
  • Loading branch information
JuergenReppSIT committed Nov 1, 2024
1 parent 1c084b0 commit b298a1a
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions m4/ld-version-script.m4
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,10 @@ AC_DEFUN([gl_LD_VERSION_SCRIPT],
[gl_cv_sys_ld_version_script=no
save_LDFLAGS=$LDFLAGS
LDFLAGS="$LDFLAGS -Wl,--version-script=conftest.map"
echo foo >conftest.map
echo "{ global: *; };" > conftest.map
AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
[],
[cat > conftest.map <<EOF
VERS_1 {
global: sym;
};
VERS_2 {
global: sym;
} VERS_1;
EOF
AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
[gl_cv_sys_ld_version_script=yes])])
[gl_cv_sys_ld_version_script=yes],
[gl_cv_sys_ld_version_script=no])
rm -f conftest.map
LDFLAGS=$save_LDFLAGS])
have_ld_version_script=$gl_cv_sys_ld_version_script])
Expand Down

0 comments on commit b298a1a

Please sign in to comment.