dnl See whether we need to use fopen-bin.h rather than fopen-same.h.AC_DEFUN([BFD_BINARY_FOPEN],[AC_REQUIRE([AC_CANONICAL_TARGET])case "${host}" inchangequote(,)dnl*-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)changequote([,])dnlAC_DEFINE(USE_BINARY_FOPEN, 1, [Use b modifier when opening binary files?]) ;;esac])dnldnl Get a default for CC_FOR_BUILD to put into Makefile.AC_DEFUN([BFD_CC_FOR_BUILD],[# Put a plausible default for CC_FOR_BUILD in Makefile.if test -z "$CC_FOR_BUILD"; thenif test "x$cross_compiling" = "xno"; thenCC_FOR_BUILD='$(CC)'elseCC_FOR_BUILD=gccfifiAC_SUBST(CC_FOR_BUILD)# Also set EXEEXT_FOR_BUILD.if test "x$cross_compiling" = "xno"; thenEXEEXT_FOR_BUILD='$(EXEEXT)'elseAC_CACHE_CHECK([for build system executable suffix], bfd_cv_build_exeext,[rm -f conftest*echo 'int main () { return 0; }' > conftest.cbfd_cv_build_exeext=${CC_FOR_BUILD} -o conftest conftest.c 1>&5 2>&5for file in conftest.*; docase $file in*.c | *.o | *.obj | *.ilk | *.pdb) ;;*) bfd_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;esacdonerm -f conftest*test x"${bfd_cv_build_exeext}" = x && bfd_cv_build_exeext=no])EXEEXT_FOR_BUILD=""test x"${bfd_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${bfd_cv_build_exeext}fiAC_SUBST(EXEEXT_FOR_BUILD)])dnlAC_DEFUN([AM_INSTALL_LIBBFD],[AC_MSG_CHECKING([whether to install libbfd])AC_ARG_ENABLE(install-libbfd,[ --enable-install-libbfd controls installation of libbfd and related headers],install_libbfd_p=$enableval,if test "${host}" = "${target}" || test "$enable_shared" = "yes"; theninstall_libbfd_p=yeselseinstall_libbfd_p=nofi)AC_MSG_RESULT($install_libbfd_p)AM_CONDITIONAL(INSTALL_LIBBFD, test $install_libbfd_p = yes)# Need _noncanonical variables for this.ACX_NONCANONICAL_HOSTACX_NONCANONICAL_TARGET# libbfd.a is a host library containing target dependent codebfdlibdir='$(libdir)'bfdincludedir='$(includedir)'if test "${host}" != "${target}"; thenbfdlibdir='$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/lib'bfdincludedir='$(exec_prefix)/$(host_noncanonical)/$(target_noncanonical)/include'fiAC_SUBST(bfdlibdir)AC_SUBST(bfdincludedir)])