Blame m4/lib-ld.m4

Packit 971217
# lib-ld.m4 serial 3 (gettext-0.13)
Packit 971217
dnl Copyright (C) 1996-2003 Free Software Foundation, Inc.
Packit 971217
dnl This file is free software; the Free Software Foundation
Packit 971217
dnl gives unlimited permission to copy and/or distribute it,
Packit 971217
dnl with or without modifications, as long as this notice is preserved.
Packit 971217
Packit 971217
dnl Subroutines of libtool.m4,
Packit 971217
dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision
Packit 971217
dnl with libtool.m4.
Packit 971217
Packit 971217
dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no.
Packit 971217
AC_DEFUN([AC_LIB_PROG_LD_GNU],
Packit 971217
[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld,
Packit 971217
[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
Packit 971217
case `$LD -v 2>&1 
Packit 971217
*GNU* | *'with BFD'*)
Packit 971217
  acl_cv_prog_gnu_ld=yes ;;
Packit 971217
*)
Packit 971217
  acl_cv_prog_gnu_ld=no ;;
Packit 971217
esac])
Packit 971217
with_gnu_ld=$acl_cv_prog_gnu_ld
Packit 971217
])
Packit 971217
Packit 971217
dnl From libtool-1.4. Sets the variable LD.
Packit 971217
AC_DEFUN([AC_LIB_PROG_LD],
Packit 971217
[AC_ARG_WITH(gnu-ld,
Packit 971217
[  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
Packit 971217
test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
Packit 971217
AC_REQUIRE([AC_PROG_CC])dnl
Packit 971217
AC_REQUIRE([AC_CANONICAL_HOST])dnl
Packit 971217
# Prepare PATH_SEPARATOR.
Packit 971217
# The user is always right.
Packit 971217
if test "${PATH_SEPARATOR+set}" != set; then
Packit 971217
  echo "#! /bin/sh" >conf$$.sh
Packit 971217
  echo  "exit 0"   >>conf$$.sh
Packit 971217
  chmod +x conf$$.sh
Packit 971217
  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
Packit 971217
    PATH_SEPARATOR=';'
Packit 971217
  else
Packit 971217
    PATH_SEPARATOR=:
Packit 971217
  fi
Packit 971217
  rm -f conf$$.sh
Packit 971217
fi
Packit 971217
ac_prog=ld
Packit 971217
if test "$GCC" = yes; then
Packit 971217
  # Check if gcc -print-prog-name=ld gives a path.
Packit 971217
  AC_MSG_CHECKING([for ld used by GCC])
Packit 971217
  case $host in
Packit 971217
  *-*-mingw*)
Packit 971217
    # gcc leaves a trailing carriage return which upsets mingw
Packit 971217
    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
Packit 971217
  *)
Packit 971217
    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
Packit 971217
  esac
Packit 971217
  case $ac_prog in
Packit 971217
    # Accept absolute paths.
Packit 971217
    [[\\/]* | [A-Za-z]:[\\/]*)]
Packit 971217
      [re_direlt='/[^/][^/]*/\.\./']
Packit 971217
      # Canonicalize the path of ld
Packit 971217
      ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
Packit 971217
      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
Packit 971217
	ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
Packit 971217
      done
Packit 971217
      test -z "$LD" && LD="$ac_prog"
Packit 971217
      ;;
Packit 971217
  "")
Packit 971217
    # If it fails, then pretend we aren't using GCC.
Packit 971217
    ac_prog=ld
Packit 971217
    ;;
Packit 971217
  *)
Packit 971217
    # If it is relative, then search for the first ld in PATH.
Packit 971217
    with_gnu_ld=unknown
Packit 971217
    ;;
Packit 971217
  esac
Packit 971217
elif test "$with_gnu_ld" = yes; then
Packit 971217
  AC_MSG_CHECKING([for GNU ld])
Packit 971217
else
Packit 971217
  AC_MSG_CHECKING([for non-GNU ld])
Packit 971217
fi
Packit 971217
AC_CACHE_VAL(acl_cv_path_LD,
Packit 971217
[if test -z "$LD"; then
Packit 971217
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
Packit 971217
  for ac_dir in $PATH; do
Packit 971217
    test -z "$ac_dir" && ac_dir=.
Packit 971217
    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
Packit 971217
      acl_cv_path_LD="$ac_dir/$ac_prog"
Packit 971217
      # Check to see if the program is GNU ld.  I'd rather use --version,
Packit 971217
      # but apparently some GNU ld's only accept -v.
Packit 971217
      # Break only if it was the GNU/non-GNU ld that we prefer.
Packit 971217
      case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in
Packit 971217
      *GNU* | *'with BFD'*)
Packit 971217
	test "$with_gnu_ld" != no && break ;;
Packit 971217
      *)
Packit 971217
	test "$with_gnu_ld" != yes && break ;;
Packit 971217
      esac
Packit 971217
    fi
Packit 971217
  done
Packit 971217
  IFS="$ac_save_ifs"
Packit 971217
else
Packit 971217
  acl_cv_path_LD="$LD" # Let the user override the test with a path.
Packit 971217
fi])
Packit 971217
LD="$acl_cv_path_LD"
Packit 971217
if test -n "$LD"; then
Packit 971217
  AC_MSG_RESULT($LD)
Packit 971217
else
Packit 971217
  AC_MSG_RESULT(no)
Packit 971217
fi
Packit 971217
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
Packit 971217
AC_LIB_PROG_LD_GNU
Packit 971217
])