From b8345a37ac5d8c5cc103d73cc6e2a31fbecb3fa5 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 8 Sep 1995 21:11:40 +0000 Subject: * configure.in: Call AC_HEADER_DIRENT. * configure, config.in: Rebuild. * emultempl/sunos.em: Use autoconf recommend mechanism to define DIR and struct dirent. --- ld/ChangeLog | 5 +++++ ld/emultempl/sunos.em | 32 ++++++++++++++++++++------------ 2 files changed, 25 insertions(+), 12 deletions(-) (limited to 'ld') diff --git a/ld/ChangeLog b/ld/ChangeLog index 8684e4b..3ca55a2 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ Fri Sep 8 16:32:43 1995 Ian Lance Taylor + * configure.in: Call AC_HEADER_DIRENT. + * configure, config.in: Rebuild. + * emultempl/sunos.em: Use autoconf recommend mechanism to define + DIR and struct dirent. + * configure.tgt (mips*-*-bsd*): New case. * configure.host (i[345]86-sequent-ptx* | i[345]86-sequent-sysv*) diff --git a/ld/emultempl/sunos.em b/ld/emultempl/sunos.em index e18b2fc..ffdf098 100644 --- a/ld/emultempl/sunos.em +++ b/ld/emultempl/sunos.em @@ -29,18 +29,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include -/* FIXME: On some hosts we will need to include a different file. - This is correct for SunOS, which is the only place this file will - typically be compiled. However, if somebody configures the linker - for all targets, they will run into trouble here. */ -#include - #include "bfd.h" #include "sysdep.h" #include "bfdlink.h" #include "ld.h" -#include "config.h" #include "ldmain.h" #include "ldemul.h" #include "ldfile.h" @@ -48,6 +41,21 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "ldexp.h" #include "ldlang.h" +#ifdef HAVE_DIRENT_H +# include +#else +# define dirent direct +# ifdef HAVE_SYS_NDIR_H +# include +# endif +# ifdef HAVE_SYS_DIR_H +# include +# endif +# ifdef HAVE_NDIR_H +# include +# endif +#endif + static void gld${EMULATION_NAME}_before_parse PARAMS ((void)); static void gld${EMULATION_NAME}_create_output_section_statements PARAMS ((void)); @@ -82,8 +90,7 @@ gld${EMULATION_NAME}_before_parse() static void gld${EMULATION_NAME}_create_output_section_statements () { - if (config.dynamic_link) - lang_for_each_input_file (gld${EMULATION_NAME}_find_so); + lang_for_each_input_file (gld${EMULATION_NAME}_find_so); } /* Search the directory for a .so file for each library search. */ @@ -104,7 +111,8 @@ gld${EMULATION_NAME}_find_so (inp) struct stat st; if (! inp->search_dirs_flag - || ! inp->is_archive) + || ! inp->is_archive + || ! inp->dynamic) return; ASSERT (strncmp (inp->local_sym_name, "-l", 2) == 0); @@ -118,7 +126,7 @@ gld${EMULATION_NAME}_find_so (inp) { force_maj = atoi (dot + 1); len = dot - filename; - alc = (char *) alloca (len + 1); + alc = (char *) xmalloc (len + 1); strncpy (alc, filename, len); alc[len] = '\0'; filename = alc; @@ -213,7 +221,7 @@ gld${EMULATION_NAME}_find_so (inp) /* Now look for the same file name, but with .sa instead of .so. If found, add it to the list of input files. */ - alc = (char *) alloca (strlen (inp->filename) + 1); + alc = (char *) xmalloc (strlen (inp->filename) + 1); strcpy (alc, inp->filename); strstr (alc, ".so.")[2] = 'a'; if (stat (alc, &st) == 0) -- cgit v1.1