diff options
author | ng0 <ng0@n0.is> | 2019-10-25 12:07:06 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-25 12:07:06 +0000 |
commit | 853b43d07307de32a012703cafbc583fdac412a9 (patch) | |
tree | 7c7034d6eb88da52ec5cba11c73d93b2843bdb66 | |
parent | 3650b47b46c944473c28d73b3c148e985879026c (diff) |
remove glpk.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | configure.ac | 14 |
3 files changed, 3 insertions, 15 deletions
@@ -1,3 +1,6 @@ +Fri Oct 25 00:00:00 UTC 2019 + Dropped glpk dependency(-check). -ng0 + Wed Oct 23 00:00:00 UTC 2019 Remove setuid helpers. They never worked as intended. The fixed version is not portable and the defacto good way to @@ -122,7 +122,6 @@ These are the optional dependencies: - grof (for linting of man pages) - libextractor >= 0.6.1 (highly recommended[*5]) - libjansson -- libglpk >= 4.45 (for experimental code) - libopus >= 1.0.1 (for experimental conversation tool) - libpulse >= 2.0 (for experimental conversation tool) - libogg >= 1.3.0 (for experimental conversation tool) diff --git a/configure.ac b/configure.ac index bf4e13320..fc0d75fbf 100644 --- a/configure.ac +++ b/configure.ac @@ -791,20 +791,6 @@ AM_CONDITIONAL(HAVE_LIBATOMIC, [test "$have_libatomic" = 1]) LIBS=$SAVE_LIBS CPPFLAGS=$SAVE_CPPFLAGS -AC_CHECK_HEADERS([glpk.h],[glpk=true],[glpk=false]) -# GLPK must support glpk_init_env, version >= 4.43 -AC_CHECK_LIB([glpk],[glp_init_env],,[glpk=false]) -# GLPK must support atm MLP presolving, version >= 4.32 -AC_CHECK_MEMBERS(glp_iocp.presolve,,[glpk=false],[[#include <glpk.h>]]) -AS_IF([test "x$glpk" = xfalse], -[ - AM_CONDITIONAL(HAVE_LIBGLPK, false) - AC_MSG_WARN([ERROR: GNUnet requires GLPK >= 4.32]) -],[ - AM_CONDITIONAL(HAVE_LIBGLPK, true) - AC_DEFINE([HAVE_LIBGLPK],[1],[Have GLPK]) -]) - AC_CHECK_HEADERS([nss.h],[nss=true],[nss=false]) AS_IF([test x$nss = xfalse], |