strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8416ebb
)
charon-tkm: Abort if gprbuild binary is not found
author
Reto Buerki
<reet@codelabs.ch>
Thu, 28 Nov 2013 08:37:55 +0000
(09:37 +0100)
committer
Tobias Brunner
<tobias@strongswan.org>
Wed, 4 Dec 2013 09:42:03 +0000
(10:42 +0100)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
a3fb712
..
34836d6
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-939,6
+939,9
@@
CFLAGS="$CFLAGS -include `pwd`/config.h"
if test x$tkm = xtrue; then
AC_PATH_PROG([GPRBUILD], [gprbuild], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
+ if test x$GPRBUILD = x; then
+ AC_MSG_ERROR([gprbuild not found])
+ fi
fi
if test x$coverage = xtrue; then