Skip to content

Commit 825ef2f

Browse files
committedOct 31, 2019
New upstream version 1.9
1 parent 0bbae73 commit 825ef2f

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed
 

‎CHANGES

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Changes with tdc 1.9 31 Oct 2019
2+
3+
* Special Halloween release
4+
* Fix FTCBFS found by downstream
5+
+ Thanks Helmut Grohne
6+
17
Changes with tdc 1.8 22 Oct 2019
28

39
* Fix compiler warnings

‎Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
export PREFIX ?= /usr/local
22

3-
CPPFLAGS += $(shell pkg-config x11 xft --cflags)
4-
LIBS += $(shell pkg-config x11 xft --libs)
3+
PKG_CONFIG ?= pkg-config
4+
CPPFLAGS += $(shell $(PKG_CONFIG) x11 xft --cflags)
5+
LIBS += $(shell $(PKG_CONFIG) x11 xft --libs)
56

67
all: tdc tdc.1
78

‎docs/tdc.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
.\" Author: Michael Lustfield <michael@lustfield.net>
33
.\" Date: 10/06/2014
44
.\" Manual: User Commands
5-
.\" Source: tdc 1.8
5+
.\" Source: tdc 1.9
66
.\"
7-
.TH "TDC" "1" "10/06/2014" "tdc 1\.8" "User Commands"
7+
.TH "TDC" "1" "10/06/2014" "tdc 1\.9" "User Commands"
88
.\" disable hyphenation
99
.nh
1010
.\" disable justification (adjust text to left margin only)

‎tdc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ void get_params(Display *display, int argc, char *argv[]) {
142142

143143
/* check for version request */
144144
if (XrmGetResource(database, "tdc.version", "tdc.version", &type, &xrmval) == True) {
145-
printf("tdc 1.8\n");
145+
printf("tdc 1.9\n");
146146
exit(0);
147147
}
148148

0 commit comments

Comments
 (0)
Please sign in to comment.