strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add initial TKM integration test
[strongswan.git]
/
autogen.sh
1
#!/bin/sh
2
3
LIBTOOLIZE
=
`which glibtoolize 2>/dev/null`
4
case
"
$LIBTOOLIZE
"
in
5
/* ) ;;
6
* )
LIBTOOLIZE
=
`which libtoolize 2>/dev/null`
7
case
"
$LIBTOOLIZE
"
in
8
/* ) ;;
9
* )
LIBTOOLIZE
=
libtoolize
10
;;
11
esac
12
;;
13
esac
14
15
$LIBTOOLIZE
--
force
&&
16
aclocal
&&
17
autoheader
&&
18
automake
-
a
&&
19
autoconf
20