1999-06-23 Mumit Khan <khan@xraylith.wisc.edu>

* configure.in (HAVE_EXECUTABLE_SUFFIX): Define.
	* dlltool.c (look_for_prog): Use HAVE_EXECUTABLE_SUFFIX.
	* dllwrap.c (look_for_prog): Likewise.
	* resrc.c (look_for_default): Likewise.
	* configure, config.in: Rebuild.
This commit is contained in:
Ian Lance Taylor
1999-06-22 22:50:22 +00:00
parent 03ae5f594e
commit 2481e6a24f
7 changed files with 84 additions and 63 deletions

View File

@@ -178,7 +178,7 @@ inform (message, va_alist)
/* Look for the program formed by concatenating PROG_NAME and the
string running from PREFIX to END_PREFIX. If the concatenated
string contains a '/', try appending EXECUTABLE_SUFFIX if it is
defined. */
appropriate. */
static char *
look_for_prog (prog_name, prefix, end_prefix)
@@ -191,7 +191,7 @@ look_for_prog (prog_name, prefix, end_prefix)
cmd = xmalloc (strlen (prefix)
+ strlen (prog_name)
#ifdef EXECUTABLE_SUFFIX
#ifdef HAVE_EXECUTABLE_SUFFIX
+ strlen (EXECUTABLE_SUFFIX)
#endif
+ 10);
@@ -204,7 +204,7 @@ look_for_prog (prog_name, prefix, end_prefix)
int found;
found = (stat (cmd, &s) == 0
#ifdef EXECUTABLE_SUFFIX
#ifdef HAVE_EXECUTABLE_SUFFIX
|| stat (strcat (cmd, EXECUTABLE_SUFFIX), &s) == 0
#endif
);