2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Install shared objects with mode 0644 except on HP-UX which needs

the executable bit set.
This commit is contained in:
Todd C. Miller 2012-06-11 10:45:34 -04:00
parent c131cb36f5
commit a8e0687ca9
9 changed files with 39 additions and 10 deletions

View File

@ -44,6 +44,7 @@ sudoersdir = $(sysconfdir)
sudoers_uid = @SUDOERS_UID@
sudoers_gid = @SUDOERS_GID@
sudoers_mode = @SUDOERS_MODE@
shlib_mode = @SHLIB_MODE@
SUBDIRS = compat common @ZLIB_SRC@ plugins/sudoers src include doc
@ -276,6 +277,7 @@ package: sudo.pp
sudoers_uid=$(sudoers_uid) \
sudoers_gid=$(sudoers_gid) \
sudoers_mode=$(sudoers_mode) \
shlib_mode=$(shlib_mode) \
version=$(VERSION) $(PPVARS)
clean: config.status

9
configure vendored
View File

@ -724,6 +724,7 @@ DEVEL
SUDOERS_GID
SUDOERS_UID
SUDOERS_MODE
SHLIB_MODE
MANCOMPRESSEXT
MANCOMPRESS
MANTYPE
@ -2878,6 +2879,7 @@ $as_echo "$as_me: Configuring Sudo version $PACKAGE_VERSION" >&6;}
#
@ -2927,6 +2929,7 @@ devdir='$(srcdir)'
PROGS="sudo"
: ${MANTYPE='man'}
: ${mansrcdir='.'}
: ${SHLIB_MODE='0644'}
: ${SUDOERS_MODE='0440'}
: ${SUDOERS_UID='0'}
: ${SUDOERS_GID='0'}
@ -13890,6 +13893,9 @@ done
*-*-hiuxmpp*)
: ${mansectsu='1m'}
: ${mansectform='4'}
# HP-UX shared libs must be executable
SHLIB_MODE=0755
;;
*-*-hpux*)
# AFS support needs -lBSD
@ -13899,6 +13905,9 @@ done
: ${mansectsu='1m'}
: ${mansectform='4'}
# HP-UX shared libs must be executable
SHLIB_MODE=0755
# The HP bundled compiler cannot generate shared libs
if test -z "$GCC"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HP bundled C compiler" >&5

View File

@ -36,6 +36,7 @@ AC_SUBST([AUTH_OBJS])
AC_SUBST([MANTYPE])
AC_SUBST([MANCOMPRESS])
AC_SUBST([MANCOMPRESSEXT])
AC_SUBST([SHLIB_MODE])
AC_SUBST([SUDOERS_MODE])
AC_SUBST([SUDOERS_UID])
AC_SUBST([SUDOERS_GID])
@ -157,6 +158,7 @@ devdir='$(srcdir)'
PROGS="sudo"
: ${MANTYPE='man'}
: ${mansrcdir='.'}
: ${SHLIB_MODE='0644'}
: ${SUDOERS_MODE='0440'}
: ${SUDOERS_UID='0'}
: ${SUDOERS_GID='0'}
@ -1562,6 +1564,9 @@ case "$host" in
*-*-hiuxmpp*)
: ${mansectsu='1m'}
: ${mansectform='4'}
# HP-UX shared libs must be executable
SHLIB_MODE=0755
;;
*-*-hpux*)
# AFS support needs -lBSD
@ -1571,6 +1576,9 @@ case "$host" in
: ${mansectsu='1m'}
: ${mansectform='4'}
# HP-UX shared libs must be executable
SHLIB_MODE=0755
# The HP bundled compiler cannot generate shared libs
if test -z "$GCC"; then
AC_CACHE_CHECK([for HP bundled C compiler],

View File

@ -55,7 +55,10 @@ libexecdir = @libexecdir@
datarootdir = @datarootdir@
localstatedir = @localstatedir@
plugindir = @PLUGINDIR@
# File extension and mode to use for shared libraries/objects
soext = @SOEXT@
shlib_mode = @SHLIB_MODE@
# OS dependent defines
DEFS = @OSDEFS@
@ -97,7 +100,7 @@ install-includes:
install-doc:
install-plugin: install-dirs sample_plugin.la
$(INSTALL) -b~ -m 0755 .libs/sample_plugin$(soext) $(DESTDIR)$(plugindir)
$(INSTALL) -b~ -m $(shlib_mode) .libs/sample_plugin$(soext) $(DESTDIR)$(plugindir)
uninstall:
-rm -f $(DESTDIR)$(plugindir)/sample_plugin$(soext)

View File

@ -56,7 +56,10 @@ libexecdir = @libexecdir@
datarootdir = @datarootdir@
localstatedir = @localstatedir@
plugindir = @PLUGINDIR@
# File extension and mode to use for shared libraries/objects
soext = @SOEXT@
shlib_mode = @SHLIB_MODE@
# OS dependent defines
DEFS = @OSDEFS@
@ -98,7 +101,7 @@ install-includes:
install-doc:
install-plugin: install-dirs sample_group.la
$(INSTALL) -b~ -m 0755 .libs/sample_group$(soext) $(DESTDIR)$(plugindir)
$(INSTALL) -b~ -m $(shlib_mode) .libs/sample_group$(soext) $(DESTDIR)$(plugindir)
uninstall:
-rm -f $(DESTDIR)$(plugindir)/sample_group$(soext)

View File

@ -72,8 +72,9 @@ datarootdir = @datarootdir@
localedir = @localedir@
localstatedir = @localstatedir@
# File extension for shared objects
# File extension and mode to use for shared libraries/objects
soext = @SOEXT@
shlib_mode = @SHLIB_MODE@
# Directory in which to install the sudoers plugin
plugindir = @PLUGINDIR@
@ -262,7 +263,7 @@ install-doc: install-dirs
install-plugin: sudoers.la install-dirs
if [ X"$(soext)" != X"" ]; then \
$(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -m 0755 .libs/sudoers$(soext) $(DESTDIR)$(plugindir); \
$(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -m $(shlib_mode) .libs/sudoers$(soext) $(DESTDIR)$(plugindir); \
fi
install-sudoers: install-dirs

View File

@ -56,7 +56,10 @@ libexecdir = @libexecdir@
datarootdir = @datarootdir@
localstatedir = @localstatedir@
plugindir = @PLUGINDIR@
# File extension and mode to use for shared libraries/objects
soext = @SOEXT@
shlib_mode = @SHLIB_MODE@
# OS dependent defines
DEFS = @OSDEFS@
@ -98,7 +101,7 @@ install-includes:
install-doc:
install-plugin: install-dirs system_group.la
$(INSTALL) -b~ -m 0755 .libs/system_group$(soext) $(DESTDIR)$(plugindir)
$(INSTALL) -b~ -m $(shlib_mode) .libs/system_group$(soext) $(DESTDIR)$(plugindir)
uninstall:
-rm -f $(DESTDIR)$(plugindir)/system_group$(soext)

View File

@ -63,6 +63,9 @@ noexecdir = @NOEXECDIR@
install_uid = 0
install_gid = 0
# File mode to use for shared libraries/objects
shlib_mode = @SHLIB_MODE@
# OS dependent defines
DEFS = @OSDEFS@ -DLOCALEDIR=\"$(localedir)\"
@ -123,7 +126,7 @@ install-includes:
# We install sudo_noexec by hand so we can avoid a "lib" prefix
# and a version number. Since we use LD_PRELOAD, neither is needed.
install-noexec: install-dirs libsudo_noexec.la
if [ -f .libs/lib$(noexecfile) ]; then $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -m 0755 .libs/lib$(noexecfile) $(DESTDIR)$(noexecdir)/$(noexecfile); fi
if [ -f .libs/lib$(noexecfile) ]; then $(INSTALL) -b~ -O $(install_uid) -G $(install_gid) -m $(shlib_mode) .libs/lib$(noexecfile) $(DESTDIR)$(noexecdir)/$(noexecfile); fi
install-plugin:

View File

@ -13,7 +13,6 @@ The basic philosophy is to give as few privileges as possible but \
still allow people to get their work done."
vendor="Todd C. Miller"
copyright="(c) 1993-1996,1998-2012 Todd C. Miller"
shmode=0644
sudoedit_man=`echo ${pp_destdir}$mandir/*/sudoedit.*|sed "s:^${pp_destdir}::"`
sudoedit_man_target=`basename $sudoedit_man | sed 's/edit//'`
@ -33,8 +32,6 @@ still allow people to get their work done."
%if [sd]
pp_sd_vendor_tag="TCM"
# HP-UX shared objects must be executable
shmode=0755
%endif
%if [solaris]
@ -252,7 +249,7 @@ still allow people to get their work done."
$sbindir/visudo 0755
$bindir/sudoreplay 0755
$includedir/sudo_plugin.h 0644
$libexecdir/* $shmode optional
$libexecdir/* $shlib_mode optional
$sudoersdir/sudoers.d/ 0750 $sudoers_uid:$sudoers_gid
$timedir/ 0700 root:
$docdir/ 0755