diff options
author | Alexey Neyman <stilor@att.net> | 2018-12-03 23:50:48 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2018-12-03 23:50:48 -0800 |
commit | f4238194a211a6a27598a7fdf9ad63f9b5d6fbaa (patch) | |
tree | cdf77d24f3ea44f4d671edc048f1a36205ef8c29 /gold/config.in | |
parent | 314a80c41d52737c9cfdc80dc2f6f56e0d5cfd96 (diff) | |
download | gdb-f4238194a211a6a27598a7fdf9ad63f9b5d6fbaa.zip gdb-f4238194a211a6a27598a7fdf9ad63f9b5d6fbaa.tar.gz gdb-f4238194a211a6a27598a7fdf9ad63f9b5d6fbaa.tar.bz2 |
Restore build on x86_64-w64-mingw32.
gold/
PR gold/23594
* configure.ac: Add checks for link, mkdtemp.
* configure: Regenerate.
* config.in: Regenerate.
* plugin.cc (Plugin_recorder::init): Fall back to mktemp
if mkdtemp is not available.
(link_or_copy_file): Fall back to copy if link() is not available.
Diffstat (limited to 'gold/config.in')
-rw-r--r-- | gold/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gold/config.in b/gold/config.in index 2b53d71..7bac34a 100644 --- a/gold/config.in +++ b/gold/config.in @@ -103,6 +103,9 @@ /* Define if your <locale.h> file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES +/* Define to 1 if you have the `link' function. */ +#undef HAVE_LINK + /* Define to 1 if you have the <locale.h> header file. */ #undef HAVE_LOCALE_H @@ -112,6 +115,9 @@ /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H +/* Define to 1 if you have the `mkdtemp' function. */ +#undef HAVE_MKDTEMP + /* Define to 1 if you have the `mmap' function. */ #undef HAVE_MMAP |