[packages/ddcutil] fix build on x32; rel 2

atler atler at pld-linux.org
Sun Dec 2 14:13:08 CET 2018


commit 2045b066f5d3c3a47edd8ea7042da961c9f17562
Author: Jan Palus <atler at pld-linux.org>
Date:   Sun Dec 2 14:12:24 2018 +0100

    fix build on x32; rel 2

 ddcutil-x32.patch | 44 ++++++++++++++++++++++++++++++++++++++++++++
 ddcutil.spec      |  4 +++-
 2 files changed, 47 insertions(+), 1 deletion(-)
---
diff --git a/ddcutil.spec b/ddcutil.spec
index 9809fc7..8f715f7 100644
--- a/ddcutil.spec
+++ b/ddcutil.spec
@@ -1,11 +1,12 @@
 Summary:	Query and change Linux monitor settings using DDC/CI and USB
 Name:		ddcutil
 Version:	0.9.3
-Release:	1
+Release:	2
 License:	GPL v2+
 Group:		X11/Applications
 Source0:	https://github.com/rockowitz/ddcutil/archive/v%{version}.tar.gz
 # Source0-md5:	d676ec9ca9f6488fa5888bb39175f2d5
+Patch0:		%{name}-x32.patch
 URL:		http://www.ddcutil.com/
 BuildRequires:	autoconf >= 2.69
 BuildRequires:	automake >= 1:1.11
@@ -44,6 +45,7 @@ ddcutil header files.
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %{__libtoolize}
diff --git a/ddcutil-x32.patch b/ddcutil-x32.patch
new file mode 100644
index 0000000..6290e23
--- /dev/null
+++ b/ddcutil-x32.patch
@@ -0,0 +1,44 @@
+From e98181066b5a6986c9bfc65759077e28d0defebe Mon Sep 17 00:00:00 2001
+From: Jan Palus <atler at pld-linux.org>
+Date: Tue, 27 Nov 2018 13:26:30 +0100
+Subject: [PATCH] ddc_dumpload.c: portable format string for time_t (fixes
+ build on x32)
+
+Signed-off-by: Jan Palus <atler at pld-linux.org>
+---
+ configure.ac           | 5 +++++
+ src/ddc/ddc_dumpload.c | 2 +-
+ 2 files changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 082e85fc..c9911f87 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -127,6 +127,11 @@ dnl warning: warning: compiling 'base/common.c' in subdir requires 'AM_PROG_CC_C
+ 
+ dnl needed for OBS
+ AC_PROG_CC_STDC
++AC_PROG_CC_C99
++
++if test "x$ac_cv_prog_cc_c99" = xno; then
++  AC_MSG_ERROR([Building ddcutil requires C99 enabled compiler])
++fi
+ 
+ dnl AC_PROG_LIBTOOL, AM_PROG_LIBTOOL are deprecated names for older versions of LT_INIT
+ dnl adds support for --enable/disable -static/shared, -with/without-pic configure flags
+diff --git a/src/ddc/ddc_dumpload.c b/src/ddc/ddc_dumpload.c
+index 71043629..d3a0336c 100644
+--- a/src/ddc/ddc_dumpload.c
++++ b/src/ddc/ddc_dumpload.c
+@@ -628,7 +628,7 @@ collect_machine_readable_timestamp(time_t time_millis, GPtrArray* vals) {
+    snprintf(buf, bufsz, "TIMESTAMP_TEXT %s", timestamp_buf );
+    g_ptr_array_add(vals, strdup(buf));
+ 
+-   snprintf(buf, bufsz, "TIMESTAMP_MILLIS %ld", time_millis);
++   snprintf(buf, bufsz, "TIMESTAMP_MILLIS %jd", time_millis);
+    g_ptr_array_add(vals, strdup(buf));
+ }
+ 
+-- 
+2.19.2
+
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ddcutil.git/commitdiff/2045b066f5d3c3a47edd8ea7042da961c9f17562



More information about the pld-cvs-commit mailing list