Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sagan/files/
Date: Fri, 09 Oct 2020 13:47:15
Message-Id: 1602251092.76512d5d02a36b2956fbba4ecda0d1bf23ea9cef.conikost@gentoo
1 commit: 76512d5d02a36b2956fbba4ecda0d1bf23ea9cef
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Oct 1 18:21:26 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 13:44:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76512d5d
7
8 app-admin/sagan: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/17738
11 Package-Manager: Portage-3.0.8, Repoman-3.0.1
12 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 app-admin/sagan/files/mysql_check.patch | 26 --------------------------
16 1 file changed, 26 deletions(-)
17
18 diff --git a/app-admin/sagan/files/mysql_check.patch b/app-admin/sagan/files/mysql_check.patch
19 deleted file mode 100644
20 index 37f7d61fa0c..00000000000
21 --- a/app-admin/sagan/files/mysql_check.patch
22 +++ /dev/null
23 @@ -1,26 +0,0 @@
24 -diff --git a/configure.in b/configure.ac
25 -rename from configure.in
26 -rename to configure.ac
27 ---- a/configure.in
28 -+++ b/configure.ac
29 -@@ -215,13 +215,17 @@
30 - AC_CHECK_LIB(pthread, main,,AC_MSG_ERROR(Sagan needs pthreads!))
31 - AC_CHECK_LIB(m, main,,AC_MSG_ERROR(Sagan needs libm!))
32 -
33 -+save_LIBS=$LIBS
34 - if test "$MYSQL" = "yes"; then
35 - AC_MSG_RESULT([------- MySQL support is enabled -------])
36 -+ AC_CHECK_PROGS(MYSQL_CONFIG, mysql_config)
37 - AC_CHECK_HEADER([mysql/mysql.h])
38 - AC_CHECK_HEADER([mysql/errmsg.h])
39 -- AC_CHECK_LIB(mysqlclient_r, main,,AC_MSG_ERROR(The MySQL library libmysqlclient_r is missing!
40 --If you're not interested in MySQL support use the --disable-mysql flag.))
41 -- fi
42 -+ LIBS=$(mysql_config --libs)
43 -+ AC_CHECK_LIB(mysqlclient, main,,AC_MSG_ERROR(The MySQL library libmysqlclient is missing!))
44 -+fi
45 -+LIBS="$save_LIBS $LIBS"
46 -+
47 -
48 - if test "$POSTGRES" = "yes"; then
49 - AC_MSG_RESULT([------- PostgreSQL support is enabled -------])