diff options
author | Jeroen Roovers <jer@gentoo.org> | 2020-01-02 01:41:15 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2020-01-02 01:41:33 +0100 |
commit | 2eb484dfb0d50ddaf9051ec7d0930397b7bf7bc7 (patch) | |
tree | a363d2969a71fb1a20480a5caf410908ebc17677 /net-analyzer/cbm/files | |
parent | kde-misc/playbar2: Switch to cmake.eclass (diff) | |
download | gentoo-2eb484dfb0d50ddaf9051ec7d0930397b7bf7bc7.tar.gz gentoo-2eb484dfb0d50ddaf9051ec7d0930397b7bf7bc7.tar.bz2 gentoo-2eb484dfb0d50ddaf9051ec7d0930397b7bf7bc7.zip |
net-analyzer/cbm: Version 0.2
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-analyzer/cbm/files')
-rw-r--r-- | net-analyzer/cbm/files/cbm-0.2-tinfo.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-analyzer/cbm/files/cbm-0.2-tinfo.patch b/net-analyzer/cbm/files/cbm-0.2-tinfo.patch new file mode 100644 index 000000000000..a719969eaaab --- /dev/null +++ b/net-analyzer/cbm/files/cbm-0.2-tinfo.patch @@ -0,0 +1,21 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -37,6 +37,7 @@ + AC_CANONICAL_HOST + + # Checks for libraries. ++PKG_CHECK_MODULES(ncurses,ncurses) + + # Checks for header files. + AC_CHECK_HEADER(curses.h,[],[ AC_MSG_ERROR(curses.h not found or too old.) ], []) +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -24,7 +24,7 @@ + cbm_SOURCES = cbm.cpp \ + ErrnoError.hpp \ + statistics.cpp statistics.hpp +-cbm_LDADD = -lncurses widgets/libwidgets.la ++cbm_LDADD = $(ncurses_LIBS) widgets/libwidgets.la + + distclean-local: + -rm -f *~ \ |