From 64c45143db4c550e19763edf97ca3441c78f9a05 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 28 Dec 2018 21:07:24 -0700 Subject: Fix the build when GNU Source Highlight is not available The builder pointed out that, when GNU Source Highlight is not available, get_language_name is not used. This patch makes it conditional, fixing the build problem. gdb/ChangeLog 2018-12-28 Tom Tromey * source-cache.c (get_language_name): Conditionally compile. --- gdb/source-cache.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gdb/source-cache.c') diff --git a/gdb/source-cache.c b/gdb/source-cache.c index 5685180..f171552 100644 --- a/gdb/source-cache.c +++ b/gdb/source-cache.c @@ -108,6 +108,8 @@ source_cache::extract_lines (const struct source_text &text, int first_line, return false; } +#ifdef HAVE_SOURCE_HIGHLIGHT + /* Return the Source Highlight language name, given a gdb language LANG. Returns NULL if the language is not known. */ @@ -160,6 +162,8 @@ get_language_name (enum language lang) return nullptr; } +#endif /* HAVE_SOURCE_HIGHLIGHT */ + /* See source-cache.h. */ bool -- cgit v1.1