Sortix patches

This commit is contained in:
Juhani Krekelä 2021-08-28 18:43:25 +03:00
parent 4677966d3f
commit 1df2b1e130
4 changed files with 9 additions and 4 deletions

View File

@ -35,8 +35,6 @@ mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@

4
configure vendored
View File

@ -118,7 +118,7 @@ libdir='${exec_prefix}/lib'
includedir='${prefix}/include'
oldincludedir='/usr/include'
infodir='${prefix}/info'
mandir='${prefix}/man'
mandir='${prefix}/share/man'
# Initialize some other variables.
subdirs=
@ -235,7 +235,7 @@ Directory and file names:
--includedir=DIR C header files in DIR [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
--infodir=DIR info documentation in DIR [PREFIX/info]
--mandir=DIR man documentation in DIR [PREFIX/man]
--mandir=DIR man documentation in DIR [PREFIX/share/man]
--srcdir=DIR find the sources in DIR [configure dir or ..]
--program-prefix=PREFIX prepend PREFIX to installed program names
--program-suffix=SUFFIX append SUFFIX to installed program names

View File

@ -2,6 +2,7 @@
* (c) 2002 Mikulas Patocka
* This file is a part of the Links program, released under GPL.
*/
#include <langinfo.h>
#include "links.h"
@ -130,6 +131,8 @@ int get_default_charset(void)
lang = cast_uchar getenv("LC_CTYPE");
if (!lang)
lang = cast_uchar getenv("LANG");
if (!lang)
lang = cast_uchar nl_langinfo(CODESET);
if (!lang) {
i = 0;
goto ret_i;

4
tix.port Normal file
View File

@ -0,0 +1,4 @@
NAME=links
BUILD_LIBRARIES='libbrotli? libevent? libssl libz? libzstd? lzip? openmp? xz?'
BUILD_SYSTEM=configure
LOCATION_INDEPENDENT=true