emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#51129: closed (Check for gperf if running from git: this avoids brea


From: GNU bug Tracking System
Subject: bug#51129: closed (Check for gperf if running from git: this avoids breaking at runtime.)
Date: Tue, 02 Aug 2022 17:29:02 +0000

Your message dated Tue, 2 Aug 2022 19:27:54 +0200
with message-id <B0682E2D-5559-4B52-8E83-769214923522@sarc.name>
and subject line gperf
has caused the debbugs.gnu.org bug report #51129,
regarding Check for gperf if running from git: this avoids breaking at runtime.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
51129: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51129
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: Check for gperf if running from git: this avoids breaking at runtime. Date: Mon, 11 Oct 2021 07:35:31 +0200 User-agent: mu4e 1.6.6; emacs 27.2
From 0b70a54dd7df0075c392067a7ce17d0f05a59adf Mon Sep 17 00:00:00 2001
From: Arne Babenhauserheide <arne_bab@web.de>
Date: Mon, 11 Oct 2021 07:33:23 +0200
Subject: [PATCH] autoconf: Check for gperf if running from git

this avoids breaking at runtime.
---
 configure.ac | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/configure.ac b/configure.ac
index a3cdaff78..5e1231a6e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -80,6 +80,15 @@ else
   fi
 fi
 
+# Check for gperf if running from git
+AC_MSG_CHECKING([Checking for gperf if built from git])
+if ! test -f ".tarball-version" && false; then
+  AC_CHECK_TOOL([GPERF], [gperf], [no])
+  if test x"$GPERF" = x"no"; then
+    AC_MSG_ERROR([Building from git requires gperf, but it could not be found. 
Please install gperf.])
+  fi
+fi
+
 gl_EARLY
 AC_PROG_CPP
 AC_PROG_SED
-- 
2.33.0

-- 
Unpolitisch sein
heißt politisch sein,
ohne es zu merken.
draketo.de

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message --- Subject: gperf Date: Tue, 2 Aug 2022 19:27:54 +0200
Fixed in 50d4b5020333275eadcdba71f0bdd3fc2571101c.

Thank you!



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]