Fixed some minor problems.
CVS patchset: 1623 CVS date: 1997/05/14 18:42:47
This commit is contained in:
parent
5c28a3c541
commit
43e43407b8
23
configure.in
23
configure.in
|
@ -294,27 +294,30 @@ if test "x$tmpdir" = "x"; then
|
|||
fi
|
||||
|
||||
# Solaris 2.5.1 seems to confuse things
|
||||
if echo "$build" grep "solaris2.5" > /dev/null ; then
|
||||
echo "Real Time is hacking things up for Solaris 2.5.x"
|
||||
if echo "$build" | grep "solaris2.5" > /dev/null ; then
|
||||
echo "Hacking things up for Solaris 2.5.x"
|
||||
build_os="solaris"
|
||||
fi
|
||||
|
||||
if echo "$build" | egrep 'solaris|hpux10|sco' >/dev/null ; then
|
||||
RPM=rpm
|
||||
# Solaris needs -ldl to use -lnsl, and it can't build static
|
||||
# binaries if you use -ldl
|
||||
RPM=rpm.shared
|
||||
if echo "$build" | grep solaris >/dev/null; then
|
||||
if echo "$build_os" | grep solaris >/dev/null; then
|
||||
echo "hacking things up for solaris"
|
||||
RPM=rpm.shared
|
||||
LIBDL=-ldl
|
||||
elif echo "$build" | grep sco > /dev/null; then
|
||||
elif echo "$build_os" | grep sco > /dev/null; then
|
||||
echo "hacking things up for sco"
|
||||
RPM=rpm.shared
|
||||
AC_DEFINE(NEED_STRINGS_H)
|
||||
else
|
||||
elif echo "$build_os" | grep sunos > /dev/null; then
|
||||
echo "hacking things up for sunos"
|
||||
CFLAGS="$CFLAGS -D__USE_FIXED_PROTOTYPES__"
|
||||
AC_DEFINE(NEED_STRINGS_H)
|
||||
elif echo "$build_os" | grep hpux > /dev/null; then
|
||||
RPM=rpm.shared
|
||||
echo "hacking things up for hpux"
|
||||
fi
|
||||
else
|
||||
RPM=rpm
|
||||
fi
|
||||
|
||||
rm -f ./find-provides.sh
|
||||
if test -f autodeps/${build_os}.prov ; then
|
||||
|
|
Loading…
Reference in New Issue