main/screen: update configure arguments

screen 5.* changed the arguments to its configure script.

--with-system_screenrc is the new way to spell that argument's name.
Since APKBUILD used that argument with its default value, the
misspelled argument was ignored but the right (default) path was still
used.

--enable-colors256 are --enable-rxvt_osc are gone.

The same config.h is generated by configure.
This commit is contained in:
Valery Ushakov 2025-02-01 17:29:51 +03:00 committed by Celeste
parent 9b75420c6d
commit a9db2f29ee

View File

@ -39,13 +39,11 @@ build() {
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--with-sys-screenrc=/etc/screenrc \
--with-system_screenrc=/etc/screenrc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--enable-colors256 \
--enable-telnet \
--enable-rxvt_osc
--enable-telnet
make
}