mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
Backport a opatch from upstream to preoperly detect OpenGL, add patch to
fix autoreconf.
Fixes:
http://autobuild.buildroot.org/results/be9/be9d9d0d75dca62d9edb28c1e4d81f7f33b30ea8/
http://autobuild.buildroot.org/results/db8/db87a00a7cd1f8d1627fa4a39a0f67e9328b2b0f/
http://autobuild.buildroot.org/results/f45/f45a9588090c296c9c5ece2cbc71f8bb64bebf73/
http://autobuild.buildroot.org/results/9cb/9cb669ab6760420421e3c907462b69fe36c46601/
and many others...
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Peter Thompson <peter.macleod.thompson@gmail.com>
Cc: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
785 B
Diff
31 lines
785 B
Diff
# HG changeset patch
|
|
# User "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
# Date 1485597428 -3600
|
|
# Node ID 26376ce4a3e6565885fd984b3fe5a39a6895dcdd
|
|
# Parent 3b93536d291a34183592fd29ef1df9cf1416ac09
|
|
configure: fix autoreconf
|
|
|
|
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
|
|
|
diff --git a/configure.in b/configure.in
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -1,5 +1,6 @@
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
-AC_INIT(README.txt)
|
|
+dnl The version string must be a literal
|
|
+AC_INIT([SDL2_ttf],[2.0.14])
|
|
|
|
dnl Set various version strings - taken gratefully from the GTk sources
|
|
|
|
@@ -42,7 +42,7 @@
|
|
AC_CANONICAL_HOST
|
|
|
|
dnl Setup for automake
|
|
-AM_INIT_AUTOMAKE(SDL2_ttf, $VERSION)
|
|
+AM_INIT_AUTOMAKE([foreign])
|
|
|
|
dnl Check for tools
|
|
AC_PROG_LIBTOOL
|
|
|