Use AX_APPEND_FLAG instead of SUDO_APPEND_CPPFLAGS and direct
modification of LDFLAGS.
This commit is contained in:
1
MANIFEST
1
MANIFEST
@@ -205,6 +205,7 @@ lib/zlib/zlib.h
|
|||||||
lib/zlib/zutil.c
|
lib/zlib/zutil.c
|
||||||
lib/zlib/zutil.h
|
lib/zlib/zutil.h
|
||||||
ltmain.sh
|
ltmain.sh
|
||||||
|
m4/ax_append_flag.m4
|
||||||
m4/ax_check_compile_flag.m4
|
m4/ax_check_compile_flag.m4
|
||||||
m4/ax_check_link_flag.m4
|
m4/ax_check_link_flag.m4
|
||||||
m4/ax_func_getaddrinfo.m4
|
m4/ax_func_getaddrinfo.m4
|
||||||
|
1
aclocal.m4
vendored
1
aclocal.m4
vendored
@@ -126,6 +126,7 @@ AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET],
|
|||||||
| (ullmax / ull) | (ullmax % ull));]])
|
| (ullmax / ull) | (ullmax % ull));]])
|
||||||
])
|
])
|
||||||
|
|
||||||
|
m4_include([m4/ax_append_flag.m4])
|
||||||
m4_include([m4/ax_check_compile_flag.m4])
|
m4_include([m4/ax_check_compile_flag.m4])
|
||||||
m4_include([m4/ax_check_link_flag.m4])
|
m4_include([m4/ax_check_link_flag.m4])
|
||||||
m4_include([m4/ax_func_getaddrinfo.m4])
|
m4_include([m4/ax_func_getaddrinfo.m4])
|
||||||
|
56
configure.ac
56
configure.ac
@@ -291,7 +291,7 @@ dnl
|
|||||||
AC_ARG_WITH(devel, [AS_HELP_STRING([--with-devel], [add development options])],
|
AC_ARG_WITH(devel, [AS_HELP_STRING([--with-devel], [add development options])],
|
||||||
[case $with_devel in
|
[case $with_devel in
|
||||||
yes) AC_MSG_NOTICE([Setting up for development: -Wall, flex, yacc])
|
yes) AC_MSG_NOTICE([Setting up for development: -Wall, flex, yacc])
|
||||||
SUDO_APPEND_CPPFLAGS(-DSUDO_DEVEL)
|
AX_APPEND_FLAG([-DSUDO_DEVEL], [CPPFLAGS])
|
||||||
DEVEL="true"
|
DEVEL="true"
|
||||||
devdir=.
|
devdir=.
|
||||||
;;
|
;;
|
||||||
@@ -390,7 +390,7 @@ AC_ARG_WITH(incpath, [AS_HELP_STRING([--with-incpath], [additional places to loo
|
|||||||
;;
|
;;
|
||||||
*) AC_MSG_NOTICE([Adding ${with_incpath} to CPPFLAGS])
|
*) AC_MSG_NOTICE([Adding ${with_incpath} to CPPFLAGS])
|
||||||
for i in ${with_incpath}; do
|
for i in ${with_incpath}; do
|
||||||
SUDO_APPEND_CPPFLAGS(-I${i})
|
AX_APPEND_FLAG([-I${i}], [CPPFLAGS])
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
esac])
|
esac])
|
||||||
@@ -1562,7 +1562,7 @@ dnl before the call to LT_INIT
|
|||||||
dnl
|
dnl
|
||||||
case "$host_os" in
|
case "$host_os" in
|
||||||
aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
|
aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
|
||||||
LDFLAGS="${LDFLAGS}${LDFLAGS+ }-Wl,-brtl"
|
AX_APPEND_FLAG([-Wl,-brtl], [LDFLAGS])
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -1854,8 +1854,7 @@ case "$host" in
|
|||||||
;;
|
;;
|
||||||
*-dec-osf*)
|
*-dec-osf*)
|
||||||
# ignore envariables wrt dynamic lib path
|
# ignore envariables wrt dynamic lib path
|
||||||
# XXX - sudo LDFLAGS instead?
|
AX_APPEND_FLAG([-Wl,-no_library_replacement], [SUDO_LDFLAGS])
|
||||||
SUDOERS_LDFLAGS="${SUDOERS_LDFLAGS} -Wl,-no_library_replacement"
|
|
||||||
|
|
||||||
: ${CHECKSIA='true'}
|
: ${CHECKSIA='true'}
|
||||||
AC_MSG_CHECKING(whether to disable sia support on Digital UNIX)
|
AC_MSG_CHECKING(whether to disable sia support on Digital UNIX)
|
||||||
@@ -1954,14 +1953,14 @@ case "$host" in
|
|||||||
;;
|
;;
|
||||||
*-*-riscos*)
|
*-*-riscos*)
|
||||||
LIBS="${LIBS} -lsun -lbsd"
|
LIBS="${LIBS} -lsun -lbsd"
|
||||||
SUDO_APPEND_CPPFLAGS(-I/usr/include)
|
AX_APPEND_FLAG([-I/usr/include], [CPPFLAGS])
|
||||||
SUDO_APPEND_CPPFLAGS(-I/usr/include/bsd)
|
AX_APPEND_FLAG([-I/usr/include/bsd], [CPPFLAGS])
|
||||||
SUDO_APPEND_CPPFLAGS(-D_MIPS)
|
AX_APPEND_FLAG([-D_MIPS], [CPPFLAGS])
|
||||||
: ${mansectsu='1m'}
|
: ${mansectsu='1m'}
|
||||||
: ${mansectform='4'}
|
: ${mansectform='4'}
|
||||||
;;
|
;;
|
||||||
*-*-isc*)
|
*-*-isc*)
|
||||||
SUDO_APPEND_CPPFLAGS(-D_ISC)
|
AX_APPEND_FLAG([-D_ISC], [CPPFLAGS])
|
||||||
LIB_CRYPT=1
|
LIB_CRYPT=1
|
||||||
SUDOERS_LIBS="${SUDOERS_LIBS} -lcrypt"
|
SUDOERS_LIBS="${SUDOERS_LIBS} -lcrypt"
|
||||||
|
|
||||||
@@ -2111,7 +2110,7 @@ case "$host" in
|
|||||||
|
|
||||||
# We need to force a flat namespace to make libc
|
# We need to force a flat namespace to make libc
|
||||||
# symbol hooking work like it does on ELF.
|
# symbol hooking work like it does on ELF.
|
||||||
AX_CHECK_LINK_FLAG([-Wl,-force_flat_namespace], [SUDO_LDFLAGS="${SUDO_LDFLAGS}${SUDO_LDFLAGS+ }-Wl,-force_flat_namespace"])
|
AX_CHECK_LINK_FLAG([-Wl,-force_flat_namespace], [AX_APPEND_FLAG([-Wl,-force_flat_namespace], [SUDO_LDFLAGS])])
|
||||||
|
|
||||||
# Examples go in share/examples/sudo
|
# Examples go in share/examples/sudo
|
||||||
if test X"$with_exampledir" = X""; then
|
if test X"$with_exampledir" = X""; then
|
||||||
@@ -2901,7 +2900,7 @@ fi
|
|||||||
# make sure we use the gettext() that matches the include file.
|
# make sure we use the gettext() that matches the include file.
|
||||||
if test "$enable_nls" != "no"; then
|
if test "$enable_nls" != "no"; then
|
||||||
if test "$enable_nls" != "yes"; then
|
if test "$enable_nls" != "yes"; then
|
||||||
SUDO_APPEND_CPPFLAGS(-I${enable_nls}/include)
|
AX_APPEND_FLAG([-I${enable_nls}/include], [CPPFLAGS])
|
||||||
SUDO_APPEND_LIBPATH(LDFLAGS, [$enable_nls/lib])
|
SUDO_APPEND_LIBPATH(LDFLAGS, [$enable_nls/lib])
|
||||||
fi
|
fi
|
||||||
OLIBS="$LIBS"
|
OLIBS="$LIBS"
|
||||||
@@ -2976,7 +2975,7 @@ case "$enable_zlib" in
|
|||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
AC_DEFINE(HAVE_ZLIB_H)
|
AC_DEFINE(HAVE_ZLIB_H)
|
||||||
SUDO_APPEND_CPPFLAGS(-I${enable_zlib}/include)
|
AX_APPEND_FLAG([-I${enable_zlib}/include], [CPPFLAGS])
|
||||||
SUDO_APPEND_LIBPATH(ZLIB, [$enable_zlib/lib])
|
SUDO_APPEND_LIBPATH(ZLIB, [$enable_zlib/lib])
|
||||||
ZLIB="${ZLIB} -lz"
|
ZLIB="${ZLIB} -lz"
|
||||||
;;
|
;;
|
||||||
@@ -2984,6 +2983,7 @@ esac
|
|||||||
case "$enable_zlib" in
|
case "$enable_zlib" in
|
||||||
builtin|static|dynamic)
|
builtin|static|dynamic)
|
||||||
AC_DEFINE(HAVE_ZLIB_H)
|
AC_DEFINE(HAVE_ZLIB_H)
|
||||||
|
# XXX - can't use AX_APPEND_FLAG due to use of $(top_foo) and quoting
|
||||||
CPPFLAGS='-I$(top_builddir)/lib/zlib -I$(top_srcdir)/lib/zlib '"${CPPFLAGS}"
|
CPPFLAGS='-I$(top_builddir)/lib/zlib -I$(top_srcdir)/lib/zlib '"${CPPFLAGS}"
|
||||||
ZLIB="${ZLIB}"' $(top_builddir)/lib/zlib/libsudo_z.la'
|
ZLIB="${ZLIB}"' $(top_builddir)/lib/zlib/libsudo_z.la'
|
||||||
ZLIB_SRC=lib/zlib
|
ZLIB_SRC=lib/zlib
|
||||||
@@ -3272,7 +3272,7 @@ dnl
|
|||||||
if test ${with_fwtk-'no'} != "no"; then
|
if test ${with_fwtk-'no'} != "no"; then
|
||||||
if test "$with_fwtk" != "yes"; then
|
if test "$with_fwtk" != "yes"; then
|
||||||
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_fwtk}])
|
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_fwtk}])
|
||||||
SUDO_APPEND_CPPFLAGS(-I${with_fwtk})
|
AX_APPEND_FLAG([-I${with_fwtk}], [CPPFLAGS])
|
||||||
with_fwtk=yes
|
with_fwtk=yes
|
||||||
fi
|
fi
|
||||||
SUDOERS_LIBS="${SUDOERS_LIBS} -lauth -lfwall"
|
SUDOERS_LIBS="${SUDOERS_LIBS} -lauth -lfwall"
|
||||||
@@ -3290,7 +3290,7 @@ if test ${with_SecurID-'no'} != "no"; then
|
|||||||
else
|
else
|
||||||
with_SecurID=/usr/ace
|
with_SecurID=/usr/ace
|
||||||
fi
|
fi
|
||||||
SUDO_APPEND_CPPFLAGS(-I${with_SecurID})
|
AX_APPEND_FLAG([-I${with_SecurID}], [CPPFLAGS])
|
||||||
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_SecurID}])
|
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_SecurID}])
|
||||||
SUDOERS_LIBS="${SUDOERS_LIBS} -laceclnt -lpthread"
|
SUDOERS_LIBS="${SUDOERS_LIBS} -laceclnt -lpthread"
|
||||||
AUTH_OBJS="$AUTH_OBJS securid5.lo";
|
AUTH_OBJS="$AUTH_OBJS securid5.lo";
|
||||||
@@ -3322,7 +3322,7 @@ if test ${with_kerb5-'no'} != "no"; then
|
|||||||
if test -n "$KRB5CONFIG"; then
|
if test -n "$KRB5CONFIG"; then
|
||||||
AC_DEFINE(HAVE_KERB5)
|
AC_DEFINE(HAVE_KERB5)
|
||||||
AUTH_OBJS="$AUTH_OBJS kerb5.lo"
|
AUTH_OBJS="$AUTH_OBJS kerb5.lo"
|
||||||
CPPFLAGS="$CPPFLAGS `krb5-config --cflags`"
|
AX_APPEND_FLAG([`krb5-config --cflags`], [CPPFLAGS])
|
||||||
SUDOERS_LIBS="$SUDOERS_LIBS `krb5-config --libs`"
|
SUDOERS_LIBS="$SUDOERS_LIBS `krb5-config --libs`"
|
||||||
dnl
|
dnl
|
||||||
dnl Try to determine whether we have Heimdal or MIT Kerberos
|
dnl Try to determine whether we have Heimdal or MIT Kerberos
|
||||||
@@ -3354,7 +3354,7 @@ if test ${with_kerb5-'no'} != "no"; then
|
|||||||
else
|
else
|
||||||
dnl XXX - try to include krb5.h here too
|
dnl XXX - try to include krb5.h here too
|
||||||
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_kerb5}/lib])
|
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_kerb5}/lib])
|
||||||
SUDO_APPEND_CPPFLAGS(-I${with_kerb5}/include)
|
AX_APPEND_FLAG([-I${with_kerb5}/include], [CPPFLAGS])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
@@ -3442,7 +3442,7 @@ if test ${with_AFS-'no'} = "yes"; then
|
|||||||
# AFS includes may live in /usr/include on some machines...
|
# AFS includes may live in /usr/include on some machines...
|
||||||
for i in /usr/afsws/include; do
|
for i in /usr/afsws/include; do
|
||||||
if test -d ${i}; then
|
if test -d ${i}; then
|
||||||
SUDO_APPEND_CPPFLAGS(-I${i})
|
AX_APPEND_FLAG([-I${i}], [CPPFLAGS])
|
||||||
FOUND_AFSINCDIR=true
|
FOUND_AFSINCDIR=true
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@@ -3470,7 +3470,7 @@ dnl
|
|||||||
if test "${with_skey-'no'}" = "yes"; then
|
if test "${with_skey-'no'}" = "yes"; then
|
||||||
O_LDFLAGS="$LDFLAGS"
|
O_LDFLAGS="$LDFLAGS"
|
||||||
if test "$with_skey" != "yes"; then
|
if test "$with_skey" != "yes"; then
|
||||||
SUDO_APPEND_CPPFLAGS(-I${with_skey}/include)
|
AX_APPEND_FLAG([-I${with_skey}/include], [CPPFLAGS])
|
||||||
LDFLAGS="$LDFLAGS -L${with_skey}/lib"
|
LDFLAGS="$LDFLAGS -L${with_skey}/lib"
|
||||||
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_skey}/lib])
|
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_skey}/lib])
|
||||||
AC_CHECK_HEADER([skey.h], [found=yes], [found=no], [#include <stdio.h>])
|
AC_CHECK_HEADER([skey.h], [found=yes], [found=no], [#include <stdio.h>])
|
||||||
@@ -3519,7 +3519,7 @@ dnl
|
|||||||
if test "${with_opie-'no'}" = "yes"; then
|
if test "${with_opie-'no'}" = "yes"; then
|
||||||
O_LDFLAGS="$LDFLAGS"
|
O_LDFLAGS="$LDFLAGS"
|
||||||
if test "$with_opie" != "yes"; then
|
if test "$with_opie" != "yes"; then
|
||||||
SUDO_APPEND_CPPFLAGS(-I${with_opie}/include)
|
AX_APPEND_FLAG([-I${with_opie}/include], [CPPFLAGS])
|
||||||
LDFLAGS="$LDFLAGS -L${with_opie}/lib"
|
LDFLAGS="$LDFLAGS -L${with_opie}/lib"
|
||||||
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_opie}/lib])
|
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_opie}/lib])
|
||||||
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[#include <opie.h>]])], [found=yes], [found=no])
|
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[#include <opie.h>]])], [found=yes], [found=no])
|
||||||
@@ -3619,7 +3619,7 @@ if test ${with_ldap-'no'} != "no"; then
|
|||||||
if test "$with_ldap" != "yes"; then
|
if test "$with_ldap" != "yes"; then
|
||||||
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_ldap}/lib])
|
SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_ldap}/lib])
|
||||||
LDFLAGS="$LDFLAGS -L${with_ldap}/lib"
|
LDFLAGS="$LDFLAGS -L${with_ldap}/lib"
|
||||||
SUDO_APPEND_CPPFLAGS(-I${with_ldap}/include)
|
AX_APPEND_FLAG([-I${with_ldap}/include], [CPPFLAGS])
|
||||||
with_ldap=yes
|
with_ldap=yes
|
||||||
fi
|
fi
|
||||||
SUDOERS_OBJS="${SUDOERS_OBJS} ldap.lo"
|
SUDOERS_OBJS="${SUDOERS_OBJS} ldap.lo"
|
||||||
@@ -3713,7 +3713,7 @@ case "$lt_cv_dlopen" in
|
|||||||
AC_DEFINE(STATIC_SUDOERS_PLUGIN)
|
AC_DEFINE(STATIC_SUDOERS_PLUGIN)
|
||||||
SUDO_OBJS="${SUDO_OBJS} preload.o"
|
SUDO_OBJS="${SUDO_OBJS} preload.o"
|
||||||
STATIC_SUDOERS="\$(top_builddir)/plugins/sudoers/sudoers.la"
|
STATIC_SUDOERS="\$(top_builddir)/plugins/sudoers/sudoers.la"
|
||||||
SUDOERS_LDFLAGS="${SUDOERS_LDFLAGS} --tag=disable-shared -static"
|
AX_APPEND_FLAG([--tag=disable-shared -static], [SUDOERS_LDFLAGS])
|
||||||
LT_STATIC=""
|
LT_STATIC=""
|
||||||
else
|
else
|
||||||
LT_STATIC="--tag=disable-static"
|
LT_STATIC="--tag=disable-static"
|
||||||
@@ -3725,7 +3725,7 @@ case "$lt_cv_dlopen" in
|
|||||||
AC_DEFINE(STATIC_SUDOERS_PLUGIN)
|
AC_DEFINE(STATIC_SUDOERS_PLUGIN)
|
||||||
SUDO_OBJS="${SUDO_OBJS} preload.o"
|
SUDO_OBJS="${SUDO_OBJS} preload.o"
|
||||||
STATIC_SUDOERS="\$(top_builddir)/plugins/sudoers/sudoers.la"
|
STATIC_SUDOERS="\$(top_builddir)/plugins/sudoers/sudoers.la"
|
||||||
SUDOERS_LDFLAGS="${SUDOERS_LDFLAGS} --tag=disable-shared -static"
|
AX_APPEND_FLAG([--tag=disable-shared -static], [SUDOERS_LDFLAGS])
|
||||||
LT_STATIC=""
|
LT_STATIC=""
|
||||||
else
|
else
|
||||||
LT_STATIC="--tag=disable-static"
|
LT_STATIC="--tag=disable-static"
|
||||||
@@ -3759,8 +3759,8 @@ if test "$enable_shared_libutil" = "no"; then
|
|||||||
AC_MSG_ERROR(["--disable-shared-libutil may only be specified with --enable-static-sudoers or when dynamic linking is disabled."])
|
AC_MSG_ERROR(["--disable-shared-libutil may only be specified with --enable-static-sudoers or when dynamic linking is disabled."])
|
||||||
else
|
else
|
||||||
# Do not install sudoers or libsudo_util.
|
# Do not install sudoers or libsudo_util.
|
||||||
SUDOERS_LDFLAGS="${SUDOERS_LDFLAGS}${SUDOERS_LDFLAGS+ }-no-install"
|
AX_APPEND_FLAG([-no-install], [SUDOERS_LDFLAGS])
|
||||||
LIBUTIL_LDFLAGS="${LIBUTIL_LDFLAGS}${LIBUTIL_LDFLAGS+ }-no-install"
|
AX_APPEND_FLAG([-no-install], [LIBUTIL_LDFLAGS])
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -3794,7 +3794,7 @@ dnl it but libc does not, __sprintf_chk should be an undefined symbol.
|
|||||||
dnl
|
dnl
|
||||||
if test "$enable_hardening" != "no"; then
|
if test "$enable_hardening" != "no"; then
|
||||||
O_CPPFLAGS="$CPPFLAGS"
|
O_CPPFLAGS="$CPPFLAGS"
|
||||||
SUDO_APPEND_CPPFLAGS(-D_FORTIFY_SOURCE=2)
|
AX_APPEND_FLAG([-D_FORTIFY_SOURCE=2], [CPPFLAGS])
|
||||||
AC_CACHE_CHECK([whether _FORTIFY_SOURCE may be specified],
|
AC_CACHE_CHECK([whether _FORTIFY_SOURCE may be specified],
|
||||||
[sudo_cv_use_fortify_source],
|
[sudo_cv_use_fortify_source],
|
||||||
[AC_LINK_IFELSE([
|
[AC_LINK_IFELSE([
|
||||||
@@ -3830,7 +3830,7 @@ dnl GNU ld (which can avoid linking in libgcc when it is not needed).
|
|||||||
dnl This test relies on AC_LANG_WERROR
|
dnl This test relies on AC_LANG_WERROR
|
||||||
dnl
|
dnl
|
||||||
if test -n "$GCC" -a "$lt_cv_prog_gnu_ld" != "yes" -a -n "$GCC"; then
|
if test -n "$GCC" -a "$lt_cv_prog_gnu_ld" != "yes" -a -n "$GCC"; then
|
||||||
AX_CHECK_COMPILE_FLAG([-static-libgcc], [LT_LDFLAGS="$LT_LDFLAGS -Wc,-static-libgcc"])
|
AX_CHECK_COMPILE_FLAG([-static-libgcc], [AX_APPEND_FLAG([-Wc,-static-libgcc], [LT_LDFLAGS])])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
@@ -4014,7 +4014,7 @@ if test "$enable_pie" != "yes"; then
|
|||||||
# Solaris 11.1 and higher supports tagging binaries to use ASLR
|
# Solaris 11.1 and higher supports tagging binaries to use ASLR
|
||||||
case "$host_os" in
|
case "$host_os" in
|
||||||
solaris2.1[[1-9]]|solaris2.[[2-9]][[0-9]])
|
solaris2.1[[1-9]]|solaris2.[[2-9]][[0-9]])
|
||||||
AX_CHECK_LINK_FLAG([-Wl,-z,aslr], [PIE_LDFLAGS="${PIE_LDFLAGS}${PIE_LDFLAGS+ }-Wl,-z,aslr"])
|
AX_CHECK_LINK_FLAG([-Wl,-z,aslr], [AX_APPEND_FLAG([-Wl,-z,aslr], [PIE_LDFLAGS])])
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
@@ -4072,7 +4072,7 @@ if test "$enable_hardening" != "no"; then
|
|||||||
SSP_CFLAGS="$sudo_cv_var_stack_protector"
|
SSP_CFLAGS="$sudo_cv_var_stack_protector"
|
||||||
SSP_LDFLAGS="-Wc,$sudo_cv_var_stack_protector"
|
SSP_LDFLAGS="-Wc,$sudo_cv_var_stack_protector"
|
||||||
fi
|
fi
|
||||||
AX_CHECK_LINK_FLAG([-Wl,-z,relro], [LDFLAGS="${LDFLAGS} -Wl,-z,relro"])
|
AX_CHECK_LINK_FLAG([-Wl,-z,relro], [AX_APPEND_FLAG([-Wl,-z,relro], [LDFLAGS])])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
|
71
m4/ax_append_flag.m4
Normal file
71
m4/ax_append_flag.m4
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://www.gnu.org/software/autoconf-archive/ax_append_flag.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
|
||||||
|
# added in between.
|
||||||
|
#
|
||||||
|
# If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
|
||||||
|
# CFLAGS) is used. FLAGS-VARIABLE is not changed if it already contains
|
||||||
|
# FLAG. If FLAGS-VARIABLE is unset in the shell, it is set to exactly
|
||||||
|
# FLAG.
|
||||||
|
#
|
||||||
|
# NOTE: Implementation based on AX_CFLAGS_GCC_OPTION.
|
||||||
|
#
|
||||||
|
# LICENSE
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
|
||||||
|
# Copyright (c) 2011 Maarten Bosmans <mkbosmans@gmail.com>
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU General Public License as published by the
|
||||||
|
# Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
# option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||||
|
# Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along
|
||||||
|
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# As a special exception, the respective Autoconf Macro's copyright owner
|
||||||
|
# gives unlimited permission to copy, distribute and modify the configure
|
||||||
|
# scripts that are the output of Autoconf when processing the Macro. You
|
||||||
|
# need not follow the terms of the GNU General Public License when using
|
||||||
|
# or distributing such scripts, even though portions of the text of the
|
||||||
|
# Macro appear in them. The GNU General Public License (GPL) does govern
|
||||||
|
# all other use of the material that constitutes the Autoconf Macro.
|
||||||
|
#
|
||||||
|
# This special exception to the GPL applies to versions of the Autoconf
|
||||||
|
# Macro released by the Autoconf Archive. When you make and distribute a
|
||||||
|
# modified version of the Autoconf Macro, you may extend this special
|
||||||
|
# exception to the GPL to apply to your modified version as well.
|
||||||
|
|
||||||
|
#serial 6
|
||||||
|
|
||||||
|
AC_DEFUN([AX_APPEND_FLAG],
|
||||||
|
[dnl
|
||||||
|
AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_SET_IF
|
||||||
|
AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])
|
||||||
|
AS_VAR_SET_IF(FLAGS,[
|
||||||
|
AS_CASE([" AS_VAR_GET(FLAGS) "],
|
||||||
|
[*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])],
|
||||||
|
[
|
||||||
|
AS_VAR_APPEND(FLAGS,[" $1"])
|
||||||
|
AC_RUN_LOG([: FLAGS="$FLAGS"])
|
||||||
|
])
|
||||||
|
],
|
||||||
|
[
|
||||||
|
AS_VAR_SET(FLAGS,[$1])
|
||||||
|
AC_RUN_LOG([: FLAGS="$FLAGS"])
|
||||||
|
])
|
||||||
|
AS_VAR_POPDEF([FLAGS])dnl
|
||||||
|
])dnl AX_APPEND_FLAG
|
31
m4/sudo.m4
31
m4/sudo.m4
@@ -346,33 +346,10 @@ dnl Append a libpath to an LDFLAGS style variable if not already present.
|
|||||||
dnl Also appends to the _R version unless rpath is disabled.
|
dnl Also appends to the _R version unless rpath is disabled.
|
||||||
dnl
|
dnl
|
||||||
AC_DEFUN([SUDO_APPEND_LIBPATH], [
|
AC_DEFUN([SUDO_APPEND_LIBPATH], [
|
||||||
case "${$1}" in
|
AX_APPEND_FLAG([-L$2], [$1])
|
||||||
*"-L$2"|*"-L$2 ")
|
if test X"$enable_rpath" = X"yes"; then
|
||||||
;;
|
AX_APPEND_FLAG([-R$2], [$1_R])
|
||||||
*)
|
fi
|
||||||
$1="${$1} -L$2"
|
|
||||||
if test X"$enable_rpath" = X"yes"; then
|
|
||||||
$1_R="${$1_R} -R$2"
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
])
|
|
||||||
|
|
||||||
dnl
|
|
||||||
dnl Append a directory to CPPFLAGS if not already present.
|
|
||||||
dnl
|
|
||||||
AC_DEFUN([SUDO_APPEND_CPPFLAGS], [
|
|
||||||
case "${CPPFLAGS}" in
|
|
||||||
*"$1"|*"$1 ")
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
if test X"${CPPFLAGS}" = X""; then
|
|
||||||
CPPFLAGS="$1"
|
|
||||||
else
|
|
||||||
CPPFLAGS="${CPPFLAGS} $1"
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
|
Reference in New Issue
Block a user