Skip to content

Commit 8e7b1e1

Browse files
committed
fix #351 build on jammy
1 parent 449a428 commit 8e7b1e1

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

BRANDING.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
VERSION_MAJOR = 1
55
VERSION_MINOR = 4
6-
VERSION_MICRO = 11
6+
VERSION_MICRO = 12
77
BRANDING_SHORTNAME = mainline
88
BRANDING_LONGNAME = Mainline Kernels
99
BRANDING_COPYRIGHT = 2019

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ json-glib := json-glib-1.0
3535
gee := gee-0.8
3636

3737
#VALACFLAGS += $(shell pkg-config $(json-glib) --atleast-version=1.6 && echo " -D HAVE_GLIB_JSON_1_6")
38-
#VALACFLAGS += $(shell pkg-config $(vte) --atleast-version=0.72 && echo " -D VTE_0_72")
38+
VALACFLAGS += $(shell pkg-config $(vte) --atleast-version=0.72 && echo " -D VTE_0_72")
3939
VALACFLAGS += $(shell pkg-config $(glib) --atleast-version=2.56 || echo " --target-glib 2.32")
4040

4141
include BRANDING.mak

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
mainline (1.4.12) unstable; urgency=medium
2+
3+
* fix build on jammy by detecting vte version with pkgkit
4+
5+
-- Brian K. White <b.kenyon.w@gmail.com> Wed, 19 Feb 2025 22:52:04 -0500
6+
17
mainline (1.4.11) unstable; urgency=medium
28

39
* no functional change, just keep up with vte changes so it builds with current vte

po/messages.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#, fuzzy
66
msgid ""
77
msgstr ""
8-
"Project-Id-Version: mainline 1.4.11\n"
8+
"Project-Id-Version: mainline 1.4.12\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2025-02-16 13:22-0500\n"
10+
"POT-Creation-Date: 2025-02-19 22:24-0500\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313
"Language-Team: LANGUAGE <LL@li.org>\n"

src/Gtk/TerminalWindow.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public class TerminalWindow : Gtk.Window {
131131
btn_copy.clicked.connect(()=>{
132132
long output_end_col, output_end_row;
133133
term.get_cursor_position(out output_end_col, out output_end_row);
134-
#if VALA_0_56 // vte 0.72
134+
#if VTE_0_72
135135
string? buf = term.get_text_range_format(TEXT,0,0,output_end_row,-1,null);
136136
#else
137137
string? buf = term.get_text_range(0, 0, output_end_row, -1, null, null);

0 commit comments

Comments
 (0)