From c510de8fa8994bded405990b557bd60c09c3f37b Mon Sep 17 00:00:00 2001 From: Jim Garlick Date: Fri, 17 Jan 2025 12:52:27 -0800 Subject: [PATCH] build: drop libpopt references Problem: the README, debian control file, and install-deps-deb.sh script mention libpopt, but that was only a requirement for dbench, which we no longer vendor. Drop libpopt references. --- README.md | 2 +- debian/control | 1 - scripts/install-deps-deb.sh | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 97ddad51..6120cec2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ #### On Debian ``` -sudo apt-get install build-essential libpopt-dev ncurses-dev automake autoconf git pkgconf +sudo apt-get install build-essential ncurses-dev automake autoconf git pkgconf sudo apt-get install lua5.1 liblua5.1-dev libmunge-dev libwrap0-dev libcap-dev libattr1-dev ./autogen.sh ./configure diff --git a/debian/control b/debian/control index 297fce29..2eb94220 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,6 @@ Standards-Version: 4.1.2 Build-Depends: debhelper (>= 10), libncurses-dev, - libpopt-dev, lua5.1, liblua5.1-dev diff --git a/scripts/install-deps-deb.sh b/scripts/install-deps-deb.sh index e81104c3..c4222ac2 100755 --- a/scripts/install-deps-deb.sh +++ b/scripts/install-deps-deb.sh @@ -6,7 +6,6 @@ apt install \ make \ pkg-config \ libc6-dev \ - libpopt-dev \ libncurses-dev \ libcap2-dev \ lua5.1 \