added my Recipes

This commit is contained in:
2024-07-11 14:16:35 +02:00
parent 38bc4f53ac
commit 09b621d929
7118 changed files with 525762 additions and 3 deletions

View File

@@ -0,0 +1,31 @@
From f7ca67bb3372c50f612ee3e0b71057358663c42d Mon Sep 17 00:00:00 2001
From: Christophe Priouzeau <christophe.priouzeau@st.com>
Date: Fri, 17 Feb 2017 11:40:43 +0100
Subject: [PATCH 1/4] Add autogen.sh
---
autogen.sh | 12 ++++++++++++
1 file changed, 12 insertions(+)
create mode 100755 autogen.sh
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..71eed0e
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,12 @@
+#!/bin/bash -
+
+test -n "$srcdir" || srcdir=`dirname "$0"`
+test -n "$srcdir" || srcdir=.
+
+olddir=`pwd`
+(
+ cd "$srcdir" &&
+ autoreconf --force -v --install
+) || exit
+test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
+cd $olddir
--
2.7.4

View File

@@ -0,0 +1,29 @@
From 122dd4723fdd5ae745c88d32a6c45c9c1e5c07d5 Mon Sep 17 00:00:00 2001
From: Christophe Priouzeau <christophe.priouzeau@st.com>
Date: Mon, 17 Feb 2020 11:35:27 +0100
Subject: [PATCH 2/2] Correct X11 dependency
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
---
contrib/test/Makefile.am | 2 ++
1 file changed, 2 insertions(+)
diff --git a/contrib/test/Makefile.am b/contrib/test/Makefile.am
index 55e4ba0..c9a9d81 100644
--- a/contrib/test/Makefile.am
+++ b/contrib/test/Makefile.am
@@ -12,9 +12,11 @@ if HAVE_X11
noinst_PROGRAMS += pixfmt-test
endif
+if HAVE_X11
if HAVE_GLU
noinst_PROGRAMS += v4l2gl
endif
+endif
if HAVE_SDL
if HAVE_JPEG
--
2.17.1