diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-01-07T22·11+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07T22·11+0100 |
commit | 85488a93ec3b07210339f2b05aa93e970f9ac3be (patch) | |
tree | e0a96d79de043515dcc36198fec9aa60fccd6892 /configure.ac | |
parent | ff342fc0c2be662dd9791ff32b4d6d63e35aa2e9 (diff) | |
parent | 27332870466c971d9c9bbc4a0955c7882468e132 (diff) |
Merge pull request #2612 from Ericson2314/remove-dead-dynlib_suffix
[Needs testing and review] Remove dead code
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 85fec77a29c9..5a2526672fdb 100644 --- a/configure.ac +++ b/configure.ac @@ -127,8 +127,6 @@ NEED_PROG(bzip2, bzip2) NEED_PROG(gzip, gzip) NEED_PROG(xz, xz) AC_PATH_PROG(dot, dot) -AC_PATH_PROG(pv, pv, pv) -AC_PATH_PROGS(brotli, brotli bro, bro) AC_PATH_PROG(lsof, lsof, lsof) @@ -253,11 +251,6 @@ if test "$(uname)" = "Darwin"; then fi -# Figure out the extension of dynamic libraries. -eval dynlib_suffix=$shrext_cmds -AC_SUBST(dynlib_suffix) - - # Do we have GNU tar? AC_MSG_CHECKING([if you have a recent GNU tar]) if $tar --version 2> /dev/null | grep -q GNU && tar cvf /dev/null --warning=no-timestamp ./config.log > /dev/null; then |