summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-12-04 16:17:17 -0500
committerB. Stack <bgstack15@gmail.com>2023-12-04 16:17:17 -0500
commit467b7c2fec15dc4e4c844e6adda55dc20d93e39e (patch)
treeedbf5fb47b8d7334316bd0d49967697c14c909b7
parentscite 5.4.0 rc1 (diff)
downloadstackrpms-467b7c2fec15dc4e4c844e6adda55dc20d93e39e.tar.gz
stackrpms-467b7c2fec15dc4e4c844e6adda55dc20d93e39e.tar.bz2
stackrpms-467b7c2fec15dc4e4c844e6adda55dc20d93e39e.zip
scite: re-fix build-w-debian-lua.patch
-rw-r--r--scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch b/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch
index e622de0..bc4300e 100644
--- a/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch
+++ b/scite/debian/patches/0004-Build-with-Debian-packaged-Lua.patch
@@ -37,8 +37,8 @@ index a53e8f4..86ad0fe 100644
-CONFIGFLAGS:=$(shell $(PKG_CONFIG) --cflags $(GTK_VERSION))
-CONFIGLIB:=$(shell $(PKG_CONFIG) --libs $(GTK_VERSION) gthread-2.0 gmodule-no-export-2.0)
+# For the Lua and Gnome desktop stuff to work, prefix must point to where Lua and Gnome thinks it is.
-+CONFIGFLAGS:=$(shell $(PKG_CONFIG) --cflags $(GTK_VERSION)) $(shell $(PKG_CONFIG) --cflags lua5.3)
-+CONFIGLIB:=$(shell $(PKG_CONFIG) --libs $(GTK_VERSION) gthread-2.0 gmodule-no-export-2.0) $(shell $(PKG_CONFIG) --libs lua5.3)
++CONFIGFLAGS:=$(shell $(PKG_CONFIG) --cflags $(GTK_VERSION)) $(shell $(PKG_CONFIG) --cflags lua5.4)
++CONFIGLIB:=$(shell $(PKG_CONFIG) --libs $(GTK_VERSION) gthread-2.0 gmodule-no-export-2.0) $(shell $(PKG_CONFIG) --libs lua5.4)
gnomeprefix:=$(shell $(PKG_CONFIG) --variable=prefix $(GTK_VERSION) 2>/dev/null)
ifndef prefix
ifdef gnomeprefix
bgstack15