diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-10-20 12:47:07 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-01-05 14:38:51 -0500 |
commit | 8b35ed1febd786c7aec34bbd7080c73a7c91bfca (patch) | |
tree | ca39491788734538b4d8cfbb6547cc466738ff81 /gdbsupport/Makefile.in | |
parent | 2b16913cdca20ae1dafdbd816b025a6efdc6c06f (diff) | |
download | fsf-binutils-gdb-8b35ed1febd786c7aec34bbd7080c73a7c91bfca.zip fsf-binutils-gdb-8b35ed1febd786c7aec34bbd7080c73a7c91bfca.tar.gz fsf-binutils-gdb-8b35ed1febd786c7aec34bbd7080c73a7c91bfca.tar.bz2 |
gdbsupport: move libxxhash configure check to gdbsupport
The following patch moves the fast_hash function, which uses libxxhash,
to gdbsupport. Move the libxxhash configure check to gdbsupport (and
transitively to gdbserver).
Change-Id: I242499e50c8cd6fe9f51e6e92dc53a1b3daaa96e
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdbsupport/Makefile.in')
-rw-r--r-- | gdbsupport/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in index 6aadae4..6db7644 100644 --- a/gdbsupport/Makefile.in +++ b/gdbsupport/Makefile.in @@ -254,6 +254,7 @@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ HAVE_CXX11 = @HAVE_CXX11@ HAVE_LIBIPT = @HAVE_LIBIPT@ +HAVE_LIBXXHASH = @HAVE_LIBXXHASH@ INCINTL = @INCINTL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ @@ -268,8 +269,10 @@ LIBINTL_DEP = @LIBINTL_DEP@ LIBIPT = @LIBIPT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ +LIBXXHASH = @LIBXXHASH@ LTLIBIPT = @LTLIBIPT@ LTLIBOBJS = @LTLIBOBJS@ +LTLIBXXHASH = @LTLIBXXHASH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ |