package/python-simplejson: bump version to 3.8.2
[buildroot-gz.git] / package / e2fsprogs / 0002-MCONFIG.in-handle-CLOCK_GETTIME_LIB.patch
blobbd86c4e21a3d472908649964b0d44d71cd904f97
1 From b5baf15b36107925186d89af9097b4b8e2d7cad6 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Wed, 21 Sep 2016 08:38:21 +0200
4 Subject: [PATCH] MCONFIG.in: handle CLOCK_GETTIME_LIB
6 Commit 62bc243f1bfe623312a350e4cd0d2e17a69aac45 ("fuse2fs: might need
7 librt") added a check for the clock_gettime() to verify whether linking
8 with the librt library is needed or not to use this function.
10 However, this commit forgot the change in MCONFIG.in that allows to
11 define the make variable CLOCK_GETTIME_LIB from the CLOCK_GETTIME_LIB
12 variable substituted by the configure script. Due to this, from a make
13 perspective $(CLOCK_GETTIME_LIB) is always empty, and we get link
14 failure on platforms where clock_gettime() is available in librt.
16 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 ---
18 MCONFIG.in | 1 +
19 1 file changed, 1 insertion(+)
21 diff --git a/MCONFIG.in b/MCONFIG.in
22 index e82963d..9ba9ce2 100644
23 --- a/MCONFIG.in
24 +++ b/MCONFIG.in
25 @@ -125,6 +125,7 @@ LIBSUPPORT = $(LIBINTL) $(LIB)/libsupport@STATIC_LIB_EXT@
26 LIBBLKID = @LIBBLKID@ @PRIVATE_LIBS_CMT@ $(LIBUUID)
27 LIBINTL = @LIBINTL@
28 SYSLIBS = @LIBS@
29 +CLOCK_GETTIME_LIB = @CLOCK_GETTIME_LIB@
30 DEPLIBSS = $(LIB)/libss@LIB_EXT@
31 DEPLIBCOM_ERR = $(LIB)/libcom_err@LIB_EXT@
32 DEPLIBUUID = @DEPLIBUUID@
33 --
34 2.7.4