forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://bugs.gentoo.org/787962 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Georgy Yakovlev <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
app-pda/libimobiledevice/files/libimobiledevice-1.3.0-missing_libflags.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From 4b2f17e8cce8fa078aa55f5da5f726c20eac3e2e Mon Sep 17 00:00:00 2001 | ||
From: Nikias Bassen <[email protected]> | ||
Date: Tue, 13 Apr 2021 05:36:03 +0200 | ||
Subject: [PATCH] common: Add missing *_LIBS and *_CFLAGS to fix build | ||
|
||
--- | ||
common/Makefile.am | 5 +++++ | ||
1 file changed, 5 insertions(+) | ||
|
||
diff --git a/common/Makefile.am b/common/Makefile.am | ||
index 4e3facba..ab01b834 100644 | ||
--- a/common/Makefile.am | ||
+++ b/common/Makefile.am | ||
@@ -8,12 +8,17 @@ AM_CFLAGS = \ | ||
$(libplist_CFLAGS) \ | ||
$(libgnutls_CFLAGS) \ | ||
$(libtasn1_CFLAGS) \ | ||
+ $(libgcrypt_CFLAGS) \ | ||
$(openssl_CFLAGS) \ | ||
$(LFS_CFLAGS) | ||
|
||
AM_LDFLAGS = \ | ||
$(libusbmuxd_LIBS) \ | ||
$(libplist_LIBS) \ | ||
+ $(libgnutls_LIBS) \ | ||
+ $(libtasn1_LIBS) \ | ||
+ $(libgcrypt_LIBS) \ | ||
+ $(openssl_LIBS) \ | ||
${libpthread_LIBS} | ||
|
||
noinst_LTLIBRARIES = libinternalcommon.la |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters