aboutsummaryrefslogtreecommitdiff
path: root/system/ttyrec/ttyrec-1.0.8-flags.patch
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2020-08-18 20:00:02 +0200
committerRobby Workman <rworkman@slackbuilds.org>2021-04-18 00:02:36 -0500
commitb42166cb70cf5af174883c3462e49498f4fe13fe (patch)
tree0e7a129e9f5c5bdcbc8565be8b2fd108a4992bd7 /system/ttyrec/ttyrec-1.0.8-flags.patch
parentf6191a5590f175bb5585b078a55e22f7bdf89189 (diff)
system/ttyrec: Patch for the newer glibc and fix the CFLAGS.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/ttyrec/ttyrec-1.0.8-flags.patch')
-rw-r--r--system/ttyrec/ttyrec-1.0.8-flags.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/system/ttyrec/ttyrec-1.0.8-flags.patch b/system/ttyrec/ttyrec-1.0.8-flags.patch
new file mode 100644
index 0000000000000..34687d9b8b7a3
--- /dev/null
+++ b/system/ttyrec/ttyrec-1.0.8-flags.patch
@@ -0,0 +1,19 @@
+--- a/Makefile 2017-08-26 11:47:02.981266309 +0200
++++ b/Makefile 2017-08-26 14:33:47.161600445 +0200
+@@ -10,13 +10,13 @@
+ all: $(TARGET)
+
+ ttyrec: ttyrec.o io.o
+- $(CC) $(CFLAGS) -o ttyrec ttyrec.o io.o
++ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ttyrec ttyrec.o io.o
+
+ ttyplay: ttyplay.o io.o
+- $(CC) $(CFLAGS) -o ttyplay ttyplay.o io.o
++ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ttyplay ttyplay.o io.o
+
+ ttytime: ttytime.o io.o
+- $(CC) $(CFLAGS) -o ttytime ttytime.o io.o
++ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o ttytime ttytime.o io.o
+
+ clean:
+ rm -f *.o $(TARGET) ttyrecord *~