2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $NetBSD: ldconfig,v 1.5 2002/03/22 04:33:58 thorpej Exp $
|
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: ldconfig
|
2003-04-30 07:12:09 +00:00
|
|
|
# REQUIRE: mountall mountcritremote
|
2002-06-13 22:14:37 +00:00
|
|
|
# BEFORE: DAEMON
|
|
|
|
# KEYWORD: FreeBSD NetBSD
|
2001-06-16 07:16:14 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="ldconfig"
|
2002-06-13 22:14:37 +00:00
|
|
|
ldconfig_command="/sbin/ldconfig"
|
2001-06-16 07:16:14 +00:00
|
|
|
start_cmd="ldconfig_start"
|
|
|
|
stop_cmd=":"
|
|
|
|
|
|
|
|
ldconfig_start()
|
|
|
|
{
|
2002-09-06 16:18:05 +00:00
|
|
|
case ${OSTYPE} in
|
2002-06-13 22:14:37 +00:00
|
|
|
FreeBSD)
|
2003-05-18 03:39:39 +00:00
|
|
|
_ins=
|
2002-06-13 22:14:37 +00:00
|
|
|
ldconfig=${ldconfig_command}
|
2003-05-18 03:39:39 +00:00
|
|
|
checkyesno ldconfig_insecure && _ins="-i"
|
2002-06-13 22:14:37 +00:00
|
|
|
if [ -x "${ldconfig_command}" ]; then
|
2002-09-17 01:49:00 +00:00
|
|
|
_LDC=/usr/lib
|
2003-06-30 15:02:05 +00:00
|
|
|
for i in ${ldconfig_paths} /etc/ld-elf.so.conf; do
|
|
|
|
if [ -r "${i}" ]; then
|
2002-09-17 01:49:00 +00:00
|
|
|
_LDC="${_LDC} ${i}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo 'ELF ldconfig path:' ${_LDC}
|
2003-05-18 03:39:39 +00:00
|
|
|
${ldconfig} -elf ${_ins} ${_LDC}
|
2002-06-13 22:14:37 +00:00
|
|
|
|
|
|
|
# Legacy aout support for i386 only
|
|
|
|
case `sysctl -n hw.machine_arch` in
|
|
|
|
i386)
|
|
|
|
# Default the a.out ldconfig path.
|
|
|
|
: ${ldconfig_paths_aout=${ldconfig_paths}}
|
|
|
|
_LDC=/usr/lib/aout
|
2003-06-30 15:02:05 +00:00
|
|
|
for i in ${ldconfig_paths_aout} /etc/ld.so.conf; do
|
|
|
|
if [ -r "${i}" ]; then
|
2002-06-13 22:14:37 +00:00
|
|
|
_LDC="${_LDC} ${i}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo 'a.out ldconfig path:' ${_LDC}
|
2003-05-18 03:39:39 +00:00
|
|
|
${ldconfig} -aout ${_ins} ${_LDC}
|
2002-06-13 22:14:37 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
NetBSD)
|
|
|
|
if [ -f ${ldconfig_command} ]; then
|
|
|
|
echo "Creating a.out runtime link editor directory cache."
|
|
|
|
${ldconfig_command}
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
2001-06-16 07:16:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|