1995-04-19 18:27:35 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
1996-06-25 13:11:45 +00:00
|
|
|
AC_PREREQ(2.5)dnl
|
1995-04-19 18:27:35 +00:00
|
|
|
AC_INIT(gprof.c)
|
1991-07-23 19:09:22 +00:00
|
|
|
|
1996-02-07 19:08:04 +00:00
|
|
|
AC_ARG_ENABLE(shared,
|
|
|
|
[ --enable-shared build shared BFD library],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) shared=true ;;
|
|
|
|
no) shared=false ;;
|
1996-04-08 18:45:08 +00:00
|
|
|
*bfd*) shared=true ;;
|
|
|
|
*) shared=false ;;
|
1996-02-07 19:08:04 +00:00
|
|
|
esac])dnl
|
|
|
|
|
1995-04-19 18:27:35 +00:00
|
|
|
AC_PROG_CC
|
1996-06-25 13:11:45 +00:00
|
|
|
AC_PROG_INSTALL
|
1991-07-23 19:09:22 +00:00
|
|
|
|
1996-06-27 15:37:48 +00:00
|
|
|
AC_ISC_POSIX
|
|
|
|
|
1995-04-19 18:27:35 +00:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AC_ARG_PROGRAM
|
1991-07-23 19:09:22 +00:00
|
|
|
|
1992-07-13 02:54:10 +00:00
|
|
|
case "${target}" in
|
1995-04-19 18:27:35 +00:00
|
|
|
alpha-*-*) MY_TARGET=alpha ;;
|
1995-06-16 19:30:48 +00:00
|
|
|
changequote(,)dnl
|
1996-08-29 21:28:01 +00:00
|
|
|
i[3456]86-*-*) MY_TARGET=i386 ;;
|
1995-06-16 19:30:48 +00:00
|
|
|
changequote([,])dnl
|
1995-04-19 18:27:35 +00:00
|
|
|
sparc-*-*) MY_TARGET=sparc ;;
|
|
|
|
tahoe-*-*) MY_TARGET=tahoe ;;
|
|
|
|
vax-*-*) MY_TARGET=vax ;;
|
1995-09-05 19:04:22 +00:00
|
|
|
ns32k-*-*) MY_TARGET=ns532;;
|
1995-04-19 18:27:35 +00:00
|
|
|
*-*-*) MY_TARGET=dummy ;;
|
1992-02-11 23:15:03 +00:00
|
|
|
esac
|
|
|
|
|
1995-04-19 18:27:35 +00:00
|
|
|
AC_SUBST(MY_TARGET)
|
1996-02-07 19:08:04 +00:00
|
|
|
|
|
|
|
BFDLIB='-L../bfd -lbfd'
|
|
|
|
|
|
|
|
# We need to handle some special cases if BFD was built shared.
|
1996-06-24 16:04:19 +00:00
|
|
|
case "${host}" in
|
1996-02-07 19:08:04 +00:00
|
|
|
*-*-sunos*)
|
|
|
|
# On SunOS, we must link against the name we are going to install,
|
|
|
|
# not -lbfd, since SunOS does not support SONAME.
|
1996-06-24 16:04:19 +00:00
|
|
|
if test "${shared}" = "true"; then
|
|
|
|
BFDLIB='-L../bfd -l`echo bfd | sed '"'"'$(program_transform_name)'"'"'`'
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
alpha*-*-osf*)
|
|
|
|
# On Alpha OSF/1, the native linker searches all the -L
|
|
|
|
# directories for any LIB.so files, and only then searches for any
|
|
|
|
# LIB.a files. That means that if there is an installed
|
|
|
|
# libbfd.so, but this build is not done with --enable-shared, the
|
|
|
|
# link will wind up being against the install libbfd.so rather
|
|
|
|
# than the newly built libbfd. To avoid this, we must explicitly
|
|
|
|
# link against libbfd.a when --enable-shared is not used.
|
|
|
|
if test "${shared}" != "true"; then
|
|
|
|
BFDLIB='../bfd/libbfd.a'
|
|
|
|
fi
|
1996-02-07 19:08:04 +00:00
|
|
|
;;
|
1996-06-24 16:04:19 +00:00
|
|
|
esac
|
1996-02-07 19:08:04 +00:00
|
|
|
AC_SUBST(BFDLIB)
|
|
|
|
|
|
|
|
HLDFLAGS=
|
1996-08-23 00:13:54 +00:00
|
|
|
HLDENV=
|
1996-02-07 19:08:04 +00:00
|
|
|
# If we have shared libraries, try to set rpath reasonably.
|
|
|
|
if test "${shared}" = "true"; then
|
|
|
|
case "${host}" in
|
1996-02-13 20:34:53 +00:00
|
|
|
*-*-hpux*)
|
|
|
|
HLDFLAGS='-Wl,+s,+b,$(libdir)'
|
|
|
|
;;
|
1996-02-07 19:08:04 +00:00
|
|
|
*-*-irix5*)
|
|
|
|
HLDFLAGS='-Wl,-rpath,$(libdir)'
|
|
|
|
;;
|
|
|
|
*-*-linux*aout*)
|
|
|
|
;;
|
|
|
|
*-*-linux*)
|
|
|
|
HLDFLAGS='-Wl,-rpath,$(libdir)'
|
|
|
|
;;
|
1996-08-23 00:13:54 +00:00
|
|
|
*-*-solaris*)
|
1996-02-07 19:08:04 +00:00
|
|
|
HLDFLAGS='-R $(libdir)'
|
|
|
|
;;
|
1996-08-23 00:13:54 +00:00
|
|
|
*-*-sysv4*)
|
|
|
|
HLDENV='if test -z "$${LD_RUN_PATH}"; then LD_RUN_PATH=$(libdir); else LD_RUN_PATH=$${LD_RUN_PATH}:$(libdir); fi; export LD_RUN_PATH;'
|
|
|
|
;;
|
1996-02-07 19:08:04 +00:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
# On SunOS, if the linker supports the -rpath option, use it to
|
|
|
|
# prevent ../bfd and ../opcodes from being included in the run time
|
|
|
|
# search path.
|
|
|
|
case "${host}" in
|
|
|
|
*-*-sunos*)
|
|
|
|
echo 'main () { }' > conftest.c
|
|
|
|
${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
|
|
|
|
if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
|
|
|
|
:
|
|
|
|
elif grep 'No such file' conftest.t >/dev/null 2>&1; then
|
|
|
|
:
|
1996-02-18 20:07:36 +00:00
|
|
|
elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
|
|
|
|
:
|
1996-02-07 19:08:04 +00:00
|
|
|
elif test "${shared}" = "true"; then
|
|
|
|
HLDFLAGS='-Wl,-rpath=$(libdir)'
|
|
|
|
else
|
|
|
|
HLDFLAGS='-Wl,-rpath='
|
|
|
|
fi
|
|
|
|
rm -f conftest.t conftest.c conftest
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(HLDFLAGS)
|
1996-08-23 00:13:54 +00:00
|
|
|
AC_SUBST(HLDENV)
|
1996-02-07 19:08:04 +00:00
|
|
|
|
1995-04-19 18:27:35 +00:00
|
|
|
AC_OUTPUT(Makefile)
|