From 94315c5463b2331f5e506caa4d495d07b76a8bca Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Mon, 24 Apr 2023 16:49:07 +0200 Subject: [PATCH] src/makefile: remove VTE_291_OLD and VTE_291 symbols (#183) These symbols won't be used in the source code anymore. --- src/makefile | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/makefile b/src/makefile index 4768b99..9e2ec66 100644 --- a/src/makefile +++ b/src/makefile @@ -17,17 +17,6 @@ man1dir=$(mandir)/man1 app_name=timeshift app_fullname=Timeshift -# vte ----------------------------- - -vte_symbol = -D VTE_291 -vte_version=$(shell { (pkg-config --modversion vte-2.91 | cut -d. -f2); } ) - -ifeq ($(shell { test ${vte_version} -lt 52 ; echo $$? ; } ), 0) -vte_symbol=$(shell echo '-D VTE_291_OLD') -else -vte_symbol=$(shell echo '-D VTE_291') -endif - # xapp ----------------------------- xapp_pkg=$(shell { ((pkg-config --exists 'xapp >= 1.0.4') >/dev/null && echo '--pkg xapp') || echo ''; } ) @@ -43,7 +32,7 @@ else gtk3_symbol=$(shell echo '') endif -symbols=$(shell echo "${vte_symbol} ${gtk3_symbol} ${xapp_symbol}") +symbols=$(shell echo "${gtk3_symbol} ${xapp_symbol}") all: app-gtk app-console