Sync from SUSE:SLFO:Main elinks revision 7e2d061991ca55d7f8e3b656b7a990c7
This commit is contained in:
parent
d75e76f83e
commit
5b11e8f091
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 10 20:28:14 UTC 2024 - Gustavo Pichorim Boiko <gboiko@suse.com>
|
||||
|
||||
- Fix building on ppc64le (by using lua instead of luajit there)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 14 02:31:22 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%if 0%{?suse_version} > 1500
|
||||
%bcond_without js
|
||||
%else
|
||||
@ -50,7 +51,11 @@ BuildRequires: pkg-config
|
||||
BuildRequires: ruby-devel
|
||||
BuildRequires: tre-devel
|
||||
BuildRequires: zlib-devel
|
||||
%ifarch ppc64le
|
||||
BuildRequires: pkgconfig(lua)
|
||||
%else
|
||||
BuildRequires: pkgconfig(luajit)
|
||||
%endif
|
||||
Provides: web_browser
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%perl_requires
|
||||
@ -102,7 +107,11 @@ export CFLAGS="%{optflags} -fno-strict-aliasing"
|
||||
--without-guile \
|
||||
--with-perl \
|
||||
--without-python \
|
||||
%ifarch ppc64le
|
||||
--with-luapkg=lua \
|
||||
%else
|
||||
--with-luapkg=luajit \
|
||||
%endif
|
||||
--with-ruby \
|
||||
--without-gnutls \
|
||||
--without-x
|
||||
|
Loading…
Reference in New Issue
Block a user