The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / softether / 0006-librt.patch
1 Downloaded from
2 https://github.com/dajhorn/SoftEtherVPN/commit/9a8538a6f2287fe8bebd0a7185de408e31e5a7df
3
4 Fixes
5 http://autobuild.buildroot.net/results/48f/48f778a891e0bf6a60ed2e4bec057c338ec25ec9/
6 and many others
7
8 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
9
10
11 From 9a8538a6f2287fe8bebd0a7185de408e31e5a7df Mon Sep 17 00:00:00 2001
12 From: Darik Horn <dajhorn@vanadac.com>
13 Date: Thu, 5 Jun 2014 21:02:02 -0400
14 Subject: [PATCH] Add an explicit autoconf check for librt.
15
16 The realtime extensions library is not automatically linked on Debian ARM
17 platforms, so do an AC_CHECK_LIB for it in the configuration macro.
18 ---
19  configure.ac | 1 +
20  1 file changed, 1 insertion(+)
21
22 diff --git a/configure.ac b/configure.ac
23 index 165623a..6f85393 100644
24 --- a/configure.ac
25 +++ b/configure.ac
26 @@ -60,6 +60,7 @@ CC="$PTHREAD_CC"
27  CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
28  LIBS="$PTHREAD_LIBS $LIBS"
29  
30 +AC_CHECK_LIB([rt],[clock_gettime])
31  
32  AX_CHECK_OPENSSL([
33         AC_SUBST(OPENSSL_LIBS)