diff options
author | Ian Lance Taylor <ian@airs.com> | 2013-01-11 14:36:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2013-01-11 14:36:36 +0000 |
commit | 0bf402d505d293fd9ceaa6bf7ca7bd4d910fd545 (patch) | |
tree | 9d92a8f7030fe7448d65f6e1e46461c584dbf8db /gold/Makefile.in | |
parent | 02be4619f1326faebdf539a45539ba83e689470c (diff) | |
download | gdb-0bf402d505d293fd9ceaa6bf7ca7bd4d910fd545.zip gdb-0bf402d505d293fd9ceaa6bf7ca7bd4d910fd545.tar.gz gdb-0bf402d505d293fd9ceaa6bf7ca7bd4d910fd545.tar.bz2 |
Fix mingw gold build with plugins enabled
* Makefile.am: Replace -ldl with @DLOPEN_LIBS@.
* configure.ac: Export DLOPEN_LIBS and add headers check.
* plugin.cc: Handle non-dlfcn case.
* Makefile.in: Regenerate.
* config.in: Regenerate.
* configure: Regenerate.
* testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/Makefile.in')
-rw-r--r-- | gold/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gold/Makefile.in b/gold/Makefile.in index 216532a..f12832b 100644 --- a/gold/Makefile.in +++ b/gold/Makefile.in @@ -16,7 +16,8 @@ @SET_MAKE@ # -# Copyright 2012 Free Software Foundation +# Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 +# Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -272,6 +273,7 @@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLOPEN_LIBS = @DLOPEN_LIBS@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ @@ -398,7 +400,7 @@ AM_CPPFLAGS = \ -DTOOLLIBDIR="\"$(tooldir)/lib\"" @INCINTL@ LIBIBERTY = ../libiberty/libiberty.a -@PLUGINS_TRUE@LIBDL = -ldl +@PLUGINS_TRUE@LIBDL = @DLOPEN_LIBS@ @THREADS_TRUE@THREADSLIB = -lpthread AM_YFLAGS = -d |