- import of strongswan-2.7.0

- applied patch for charon
This commit is contained in:
Martin Willi
2006-04-28 07:14:48 +00:00
parent 52923c9acb
commit 997358a6c4
2043 changed files with 346842 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh
# determine kernel version code, mostly for use in RPM building
awk 'BEGIN { FS = " *= *" }
NF != 2 { next }
$1 == "VERSION" { maj = $2 }
$1 == "PATCHLEVEL" { mid = $2 }
$1 == "SUBLEVEL" { min = $2 }
$1 == "EXTRAVERSION" { ext = $2 }
END { print maj "." mid "." min ext }' $*