mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-30 13:37:55 +00:00
[2667] Add --disable-rpath configure switch.
Some dynamic linkers are wise enough (at least the Linux one) to correctly pick needed shared libraries without hardcoded rpath. The --disable-rpath configure switch allows distributors to avoid hardcoded rpath paths in libraries and executables. Signed-off-by: Adam Tkac <atkac@redhat.com>
This commit is contained in:
@@ -9,38 +9,46 @@ dnl the found option flag. The main configure.ac can use it as follows:
|
|||||||
dnl if test "x$ISC_RPATH_FLAG" != "x"; then
|
dnl if test "x$ISC_RPATH_FLAG" != "x"; then
|
||||||
dnl LDFLAGS="$LDFLAGS ${ISC_RPATH_FLAG}/usr/local/lib/some_library"
|
dnl LDFLAGS="$LDFLAGS ${ISC_RPATH_FLAG}/usr/local/lib/some_library"
|
||||||
dnl fi
|
dnl fi
|
||||||
|
dnl
|
||||||
|
dnl If you pass --disable-rpath to configure, ISC_RPATH_FLAG is not set
|
||||||
|
|
||||||
AC_DEFUN([AX_ISC_RPATH], [
|
AC_DEFUN([AX_ISC_RPATH], [
|
||||||
|
|
||||||
# We'll tweak both CXXFLAGS and CCFLAGS so this function will work whichever
|
AC_ARG_ENABLE(rpath,
|
||||||
# language is used in the main script. Note also that it's not LDFLAGS;
|
[AC_HELP_STRING([--disable-rpath], [don't hardcode library path into binaries])],
|
||||||
# technically this is a linker flag, but we've noticed $LDFLAGS can be placed
|
rpath=$enableval, rpath=yes)
|
||||||
# where the compiler could interpret it as a compiler option, leading to
|
|
||||||
# subtle failure mode. So, in the check below using the compiler flag is
|
|
||||||
# safer (in the actual Makefiles the flag should be set in LDFLAGS).
|
|
||||||
CXXFLAGS_SAVED="$CXXFLAGS"
|
|
||||||
CXXFLAGS="$CXXFLAGS -Wl,-R/usr/lib"
|
|
||||||
CCFLAGS_SAVED="$CCFLAGS"
|
|
||||||
CCFLAGS="$CCFLAGS -Wl,-R/usr/lib"
|
|
||||||
|
|
||||||
# check -Wl,-R and -R rather than gcc specific -rpath to be as portable
|
if test x$rpath != xno; then
|
||||||
# as possible. -Wl,-R seems to be safer, so we try it first. In some cases
|
# We'll tweak both CXXFLAGS and CCFLAGS so this function will work whichever
|
||||||
# -R is not actually recognized but AC_TRY_LINK doesn't fail due to that.
|
# language is used in the main script. Note also that it's not LDFLAGS;
|
||||||
AC_MSG_CHECKING([whether -Wl,-R flag is available in linker])
|
# technically this is a linker flag, but we've noticed $LDFLAGS can be placed
|
||||||
AC_TRY_LINK([],[],
|
# where the compiler could interpret it as a compiler option, leading to
|
||||||
[ AC_MSG_RESULT(yes)
|
# subtle failure mode. So, in the check below using the compiler flag is
|
||||||
ISC_RPATH_FLAG=-Wl,-R
|
# safer (in the actual Makefiles the flag should be set in LDFLAGS).
|
||||||
],[ AC_MSG_RESULT(no)
|
CXXFLAGS_SAVED="$CXXFLAGS"
|
||||||
AC_MSG_CHECKING([whether -R flag is available in linker])
|
CXXFLAGS="$CXXFLAGS -Wl,-R/usr/lib"
|
||||||
CXXFLAGS="$CXXFLAGS_SAVED -R"
|
CCFLAGS_SAVED="$CCFLAGS"
|
||||||
CCFLAGS="$CCFLAGS_SAVED -R"
|
CCFLAGS="$CCFLAGS -Wl,-R/usr/lib"
|
||||||
|
|
||||||
|
# check -Wl,-R and -R rather than gcc specific -rpath to be as portable
|
||||||
|
# as possible. -Wl,-R seems to be safer, so we try it first. In some cases
|
||||||
|
# -R is not actually recognized but AC_TRY_LINK doesn't fail due to that.
|
||||||
|
AC_MSG_CHECKING([whether -Wl,-R flag is available in linker])
|
||||||
|
AC_TRY_LINK([],[],
|
||||||
|
[ AC_MSG_RESULT(yes)
|
||||||
|
ISC_RPATH_FLAG=-Wl,-R
|
||||||
|
],[ AC_MSG_RESULT(no)
|
||||||
|
AC_MSG_CHECKING([whether -R flag is available in linker])
|
||||||
|
CXXFLAGS="$CXXFLAGS_SAVED -R"
|
||||||
|
CCFLAGS="$CCFLAGS_SAVED -R"
|
||||||
AC_TRY_LINK([], [],
|
AC_TRY_LINK([], [],
|
||||||
[ AC_MSG_RESULT([yes; note that -R is more sensitive about the position in option arguments])
|
[ AC_MSG_RESULT([yes; note that -R is more sensitive about the position in option arguments])
|
||||||
ISC_RPATH_FLAG=-R
|
ISC_RPATH_FLAG=-R
|
||||||
],[ AC_MSG_RESULT(no) ])
|
],[ AC_MSG_RESULT(no) ])
|
||||||
])
|
])
|
||||||
|
|
||||||
CXXFLAGS=$CXXFLAGS_SAVED
|
CXXFLAGS=$CXXFLAGS_SAVED
|
||||||
CCFLAGS=$CCFLAGS_SAVED
|
CCFLAGS=$CCFLAGS_SAVED
|
||||||
|
fi
|
||||||
|
|
||||||
])dnl AX_ISC_RPATH
|
])dnl AX_ISC_RPATH
|
||||||
|
Reference in New Issue
Block a user