blob: fd2f30cd14cc71a0ea0b1dd613302887f44d2f39 [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From f92becaf97be16a28013693cd99bac92c54074f2 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 7 Sep 2022 13:54:58 -0700
4Subject: [PATCH 1/2] Do not build mtest
5
6its a test utility which is not generally used. We need to disable it
7because it uses gets() function which is not available in glibc, if we
8want to use it then port it to use something like fgets
9
10Upstream-Status: Pending
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 Makefile | 2 --
14 1 file changed, 2 deletions(-)
15
16diff --git a/Makefile b/Makefile
17index cf6d405..1e2d0fb 100644
18--- a/Makefile
19+++ b/Makefile
20@@ -669,7 +669,6 @@ an ua:
21 $(TOOLS)/$@ "$(LN)" src/ansilib c-client
22 $(TOOLS)/$@ "$(LN)" src/charset c-client
23 $(TOOLS)/$@ "$(LN)" src/osdep/$(SYSTEM) c-client
24- $(TOOLS)/$@ "$(LN)" src/mtest mtest
25 $(TOOLS)/$@ "$(LN)" src/ipopd ipopd
26 $(TOOLS)/$@ "$(LN)" src/imapd imapd
27 $(TOOLS)/$@ "$(LN)" src/mailutil mailutil
28@@ -706,7 +705,6 @@ rebuildclean:
29
30 bundled:
31 @echo Building bundled tools...
32- $(CD) mtest;$(MAKE)
33 $(CD) ipopd;$(MAKE)
34 $(CD) imapd;$(MAKE)
35 $(CD) mailutil;$(MAKE)
36--
372.37.3
38