summaryrefslogtreecommitdiff
path: root/scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-11-16 10:50:24 -0500
committerB. Stack <bgstack15@gmail.com>2023-11-16 10:50:24 -0500
commitdf738368f9198b78c3b9a1c70c02916066c78df9 (patch)
tree6f4bacdf5d0b93adbe9b882c2993004474397548 /scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch
parentnotepadnext v0.6.4 rc1 (diff)
downloadstackrpms-df738368f9198b78c3b9a1c70c02916066c78df9.tar.gz
stackrpms-df738368f9198b78c3b9a1c70c02916066c78df9.tar.bz2
stackrpms-df738368f9198b78c3b9a1c70c02916066c78df9.zip
scite 5.3.9
Diffstat (limited to 'scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch')
-rw-r--r--scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch b/scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch
index 29e40a0..1a69a2b 100644
--- a/scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch
+++ b/scite/debian/patches/0007-Build-with-Debian-packaged-Lua.patch
@@ -32,7 +32,7 @@ Forwarded: not-needed
-# For the Gnome desktop stuff to work, prefix must point to where Gnome thinks it is.
-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.
++# stackrpms,3 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.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)
bgstack15