Commit 3f346b6 1 parent 415e494 commit 3f346b6 Copy full SHA for 3f346b6
File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ checksums rmd160 b4023708d1320bd1b0ad5ce0dc35ec71fc68b33c \
25
25
supported_archs x86_64
26
26
installs_libs no
27
27
28
- patchfiles patch-includes-quotes.diff
28
+ patchfiles patch-includes-quotes.diff \
29
+ patch-includes-quotes-2.diff
29
30
patch.pre_args -p1
30
31
31
32
# This is a temporary kludge. The new Xcode build system fails to
Original file line number Diff line number Diff line change
1
+ Fix implicit function declaration (error as of Xcode 12):
2
+ secmem_free() is declared in "memory.h" rather than <memory.h>
3
+ (the <memory.h> system header merely inludes <string.h>)
4
+ https://trac.macports.org/ticket/61421
5
+
6
+ Upstream-Status: Submitted (https://github.com/GPGTools/pinentry-mac/pull/8)
7
+
8
+ diff --git a/Source/pinentry-0.9.4/pinentry/pinentry-curses.c b/Source/pinentry-0.9.4/pinentry/pinentry-curses.c
9
+ index fc27d81..4279aff 100644
10
+ --- a/Source/pinentry-0.9.4/pinentry/pinentry-curses.c
11
+ +++ b/Source/pinentry-0.9.4/pinentry/pinentry-curses.c
12
+ @@ -44,7 +44,7 @@
13
+ #include <utime.h>
14
+ #endif /*HAVE_UTIME_H*/
15
+
16
+ - #include <memory.h>
17
+ + #include "memory.h"
18
+
19
+ #ifdef HAVE_WCHAR_H
20
+ #include <wchar.h>
You can’t perform that action at this time.
0 commit comments