From 9c8f18e023fea7d5064ae554b8c21435d9859816 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Fri, 7 Jul 2023 08:45:47 +0200 Subject: [PATCH] Tennix 1.3.4 --- CHANGELOG.md | 6 ++++++ configure | 4 +++- src/credits.h | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d0c457..0bab143 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 1.3.4 (2023-07-07) + +### Fixed + +- `configure`: Search for dependencies in `--prefix` (`/lib` and `/include`) + ## 1.3.3 (2023-06-29) ### Fixed diff --git a/configure b/configure index 462d6b1..e5da2ce 100755 --- a/configure +++ b/configure @@ -2,7 +2,7 @@ # Configuration script for Tennix # 2013-07-27 Thomas Perl -V="1.3.3" +V="1.3.4" SILENT="1" PYTHON="1" PREFIX="/usr/local" @@ -285,6 +285,8 @@ parse_arguments() { --prefix) [ $# -gt 1 ] || fail "Not enough arguments." PREFIX="$2" + CFLAGS="-I$PREFIX/include $CFLAGS" + LDFLAGS="-L$PREFIX/lib $LDFLAGS" shift ;; --with-debug) diff --git a/src/credits.h b/src/credits.h index 849d1be..051656e 100644 --- a/src/credits.h +++ b/src/credits.h @@ -29,7 +29,7 @@ const char* credits_text[] = { "Tennix Classic Championship Tour 2011", - "Version " VERSION " (2023-06-29)", + "Version " VERSION " (2023-07-07)", CREDITS_EMPTY_TEXT, "Code, graphics and idea by", "Thomas Perl (thp.io)", -- 2.11.4.GIT