summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-02-17 15:35:21 +0100
committerDavid Seifert <soap@gentoo.org>2024-02-17 15:35:21 +0100
commit3bf39315fea027544e97da87d2f4e106f93ccb65 (patch)
treea32df2eb61d6faa84d1291997a95c1071d189138 /games-strategy/freeciv
parentdev-libs/intel-metrics-discovery: remove unused patch (diff)
downloadgentoo-3bf39315fea027544e97da87d2f4e106f93ccb65.tar.gz
gentoo-3bf39315fea027544e97da87d2f4e106f93ccb65.tar.bz2
gentoo-3bf39315fea027544e97da87d2f4e106f93ccb65.zip
games-strategy/freeciv: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'games-strategy/freeciv')
-rw-r--r--games-strategy/freeciv/files/freeciv-3.1.0_beta2-lua-search.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/games-strategy/freeciv/files/freeciv-3.1.0_beta2-lua-search.patch b/games-strategy/freeciv/files/freeciv-3.1.0_beta2-lua-search.patch
deleted file mode 100644
index e7c8123f9985..000000000000
--- a/games-strategy/freeciv/files/freeciv-3.1.0_beta2-lua-search.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-This patches meson.build to enable it to find lua in any of its
-many wonderous hiding places. It also bumps the meson version so that
-there's a ton less boilerplate to do so.
---- a/meson.build
-+++ b/meson.build
-@@ -1,5 +1,5 @@
-
--project('freeciv', ['c', 'cpp'], meson_version: '>= 0.57.0')
-+project('freeciv', ['c', 'cpp'], meson_version: '>= 0.60.0')
-
- if not get_option('ack_experimental')
- error('Autotools are still the only fully supported way to build freeciv.\nSet configure option "ack_experimental" to true if you really want to do experimental meson build.\n' +
-@@ -436,7 +436,7 @@ endif
- icu_dep = dependency('icu-uc')
-
- syslua = get_option('syslua')
--lua_dep_tmp = dependency('lua-5.4', required:false)
-+lua_dep_tmp = dependency('lua-5.4', 'lua-54', 'lua54', 'lua5.4', required:false)
-
- if syslua != 'false' and lua_dep_tmp.found()
- lua_inc_path = []