File: fix-private-libs-pc.patch

package info (click to toggle)
libde265 1.0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,088 kB
  • sloc: cpp: 40,575; sh: 4,184; asm: 1,223; ansic: 368; makefile: 350
file content (26 lines) | stat: -rw-r--r-- 847 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Fix missing "LIBS_PRIVATE" variable for libde265.pc in
 autoconf builds.
From 56d1cf52e43d734692721c99b72815c0fee1f184 Mon Sep 17 00:00:00 2001
From: Joachim Bauch <bauch@struktur.de>
Date: Thu, 21 Dec 2023 09:22:58 +0100
Subject: [PATCH] Fix missing "LIBS_PRIVATE" for libde265.pc in autoconf
 builds.
Forwarded: https://github.com/strukturag/libde265/pull/439
---
 configure.ac | 3 +++
 1 file changed, 3 insertions(+)

Index: libde265/configure.ac
===================================================================
--- libde265.orig/configure.ac
+++ libde265/configure.ac
@@ -105,6 +105,9 @@ AC_FUNC_MKTIME
 LIBS_PRIVATE="$LIBS -lstdc++"
 AC_SUBST(LIBS_PRIVATE)
 
+LIBS_PRIVATE="$LIBS -lstdc++"
+AC_SUBST(LIBS_PRIVATE)
+
 AM_CONDITIONAL(MINGW, expr $host : '.*-mingw' >/dev/null 2>&1)
 
 # Check if "__STRICT_ANSI__" is required.