Initial commit
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
From 8c10181547c93438fc10f753e7164ee004add6d1 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 27 Aug 2022 10:28:47 -0700
|
||||
Subject: [PATCH] ogginfo: Include utf8.h for missing utf8_decode
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
ogginfo/codec_skeleton.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/ogginfo/codec_skeleton.c b/ogginfo/codec_skeleton.c
|
||||
index a27f8da..3ac13f6 100644
|
||||
--- a/ogginfo/codec_skeleton.c
|
||||
+++ b/ogginfo/codec_skeleton.c
|
||||
@@ -25,6 +25,7 @@
|
||||
#include <ogg/ogg.h>
|
||||
|
||||
#include "i18n.h"
|
||||
+#include "utf8.h" /* utf8_decode */
|
||||
|
||||
#include "private.h"
|
||||
|
||||
--
|
||||
2.37.2
|
||||
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
Fix build with gettext 0.20.x
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -34,7 +34,7 @@
|
||||
AC_PROG_LIBTOOL
|
||||
|
||||
ALL_LINGUAS="be cs da en_GB eo es fr hr hu nl pl ro ru sk sv uk vi"
|
||||
-AM_GNU_GETTEXT
|
||||
+AM_GNU_GETTEXT([external])
|
||||
|
||||
dnl --------------------------------------------------
|
||||
dnl System checks
|
||||
@@ -397,7 +397,6 @@
|
||||
Makefile
|
||||
m4/Makefile
|
||||
po/Makefile.in
|
||||
-intl/Makefile
|
||||
include/Makefile
|
||||
share/Makefile
|
||||
win32/Makefile
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign dist-zip
|
||||
|
||||
-SUBDIRS = po intl include share win32 @OPT_SUBDIRS@
|
||||
-DIST_SUBDIRS = po intl include share win32 ogg123 oggenc oggdec ogginfo \
|
||||
+SUBDIRS = po include share win32 @OPT_SUBDIRS@
|
||||
+DIST_SUBDIRS = po include share win32 ogg123 oggenc oggdec ogginfo \
|
||||
vcut vorbiscomment m4
|
||||
|
||||
EXTRA_DIST = config.rpath README AUTHORS COPYING CHANGES
|
||||
Reference in New Issue
Block a user