git: 16b3b0a0f7ac - main - korean/libhangul: Make sure to link with libintl
Jung-uk Kim <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.ports |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by jkim: URL: https://cgit.FreeBSD.org/ports/commit/?id=16b3b0a0f7ac463ede015244493f66aeae1586e6 commit 16b3b0a0f7ac463ede015244493f66aeae1586e6 Author: Jung-uk Kim <[email protected]> AuthorDate: 2026-08-19 05:59:18 +0000 Commit: Jung-uk Kim <[email protected]> CommitDate: 2026-08-19 05:59:18 +0000 korean/libhangul: Make sure to link with libintl This fixes korean/fcitx5-hangul for example. PR: 297621 --- korean/libhangul/Makefile | 1 + korean/libhangul/files/patch-hangul_Makefile.am | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/korean/libhangul/Makefile b/korean/libhangul/Makefile index d4470fd01f1a..2c18733a25c8 100644 --- a/korean/libhangul/Makefile +++ b/korean/libhangul/Makefile @@ -1,5 +1,6 @@ PORTNAME= libhangul PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= korean MAINTAINER= [email protected] diff --git a/korean/libhangul/files/patch-hangul_Makefile.am b/korean/libhangul/files/patch-hangul_Makefile.am new file mode 100644 index 000000000000..bd7a79887111 --- /dev/null +++ b/korean/libhangul/files/patch-hangul_Makefile.am @@ -0,0 +1,8 @@ +--- hangul/Makefile.am.orig 2026-08-19 05:55:48 UTC ++++ hangul/Makefile.am +@@ -24,4 +24,4 @@ libhangul_la_LDFLAGS = -version-info $(LIBHANGUL_CURRE + $(NULL) + + libhangul_la_LDFLAGS = -version-info $(LIBHANGUL_CURRENT):$(LIBHANGUL_REVISION):$(LIBHANGUL_AGE) +-libhangul_la_LIBADD = $(EXPAT_LIBS) ++libhangul_la_LIBADD = $(EXPAT_LIBS) $(LTLIBINTL)