Greetings! I can't build lynx with prt-get depinst lynx. Full build log is available here http://sprunge.us/ENIA It complains it couldn't find ssl.h, but pkginfo -i | grep openssl openssl 1.0.1e-1 openssl-32 1.0.1e-1 Thanks! -- Peter A. Shevtsov
This port is broken then. You may need to tweak it's configure options and point it to the right place to find the SSL headers. Ping the port maintainer about it. cheers James James Mills / prologic E: prologic@shortcircuit.net.au W: prologic.shortcircuit.net.au On Wed, May 29, 2013 at 10:06 AM, Peter A. Shevtsov <petr.shevtsov@gmail.com
wrote:
Greetings!
I can't build lynx with prt-get depinst lynx. Full build log is available here http://sprunge.us/ENIA
It complains it couldn't find ssl.h, but
pkginfo -i | grep openssl openssl 1.0.1e-1 openssl-32 1.0.1e-1
Thanks! -- Peter A. Shevtsov _______________________________________________ CRUX mailing list CRUX@lists.crux.nu http://lists.crux.nu/mailman/listinfo/crux
On 29/05/13 at 10:28am, James Mills wrote:
This port is broken then. You may need to tweak it's configure options and point it to the right place to find the SSL headers.
diff --git a/lynx/Pkgfile b/lynx/Pkgfile index 72a52dd..5c24f24 100644 --- a/lynx/Pkgfile +++ b/lynx/Pkgfile @@ -17,7 +17,7 @@ build() { --disable-nls \ --enable-color-style \ --enable-ipv6 \ - --with-ssl \ + --with-ssl=/usr/lib \ --with-zlib make -- Peter A. Shevtsov
On 29/05/13 13:35, Peter A. Shevtsov wrote: > On 29/05/13 at 10:28am, James Mills wrote: >> This port is broken then. >> You may need to tweak it's configure options >> and point it to the right place to find the SSL >> headers. > diff --git a/lynx/Pkgfile b/lynx/Pkgfile > index 72a52dd..5c24f24 100644 > --- a/lynx/Pkgfile > +++ b/lynx/Pkgfile > @@ -17,7 +17,7 @@ build() { > --disable-nls \ > --enable-color-style \ > --enable-ipv6 \ > - --with-ssl \ > + --with-ssl=/usr/lib \ > --with-zlib > > make > > Thank you for reporting that, it is now fixed.
On 29/05/13 at 10:10pm, Danny Rawlins wrote:
Thank you for reporting that, it is now fixed.
Hello, Also please apply the folowing patch to build lynx against ncursesw to support wide-characters (CJK and Unicode) in lynx. Thanks! diff --git a/lynx/Pkgfile b/lynx/Pkgfile index 1c50a11..1de4d17 100644 --- a/lynx/Pkgfile +++ b/lynx/Pkgfile @@ -6,7 +6,7 @@ name=lynx version=2.8.7 -release=4 +release=5 source=(http://lynx.isc.org/lynx$version/lynx$version.tar.bz2) build() { @@ -18,7 +18,8 @@ build() { --enable-color-style \ --enable-ipv6 \ --with-ssl=/usr/lib \ - --with-zlib + --with-zlib \ + --with-screen=ncursesw make make -j 1 DESTDIR=$PKG install -- Peter A. Shevtsov
Wouldn't this also mean having to change the ncurses port to support wide characters? I would rather you change the port yourself and keep your own copy of ncurses/lynx if this is the case. cheers James James Mills / prologic E: prologic@shortcircuit.net.au W: prologic.shortcircuit.net.au On Thu, May 30, 2013 at 9:05 AM, Peter A. Shevtsov <petr.shevtsov@gmail.com>wrote:
On 29/05/13 at 10:10pm, Danny Rawlins wrote:
Thank you for reporting that, it is now fixed.
Hello,
Also please apply the folowing patch to build lynx against ncursesw to support wide-characters (CJK and Unicode) in lynx. Thanks!
diff --git a/lynx/Pkgfile b/lynx/Pkgfile index 1c50a11..1de4d17 100644 --- a/lynx/Pkgfile +++ b/lynx/Pkgfile @@ -6,7 +6,7 @@
name=lynx version=2.8.7 -release=4 +release=5 source=(http://lynx.isc.org/lynx$version/lynx$version.tar.bz2)
build() { @@ -18,7 +18,8 @@ build() { --enable-color-style \ --enable-ipv6 \ --with-ssl=/usr/lib \ - --with-zlib + --with-zlib \ + --with-screen=ncursesw
make make -j 1 DESTDIR=$PKG install
-- Peter A. Shevtsov _______________________________________________ CRUX mailing list CRUX@lists.crux.nu http://lists.crux.nu/mailman/listinfo/crux
Oh i see :) Small change then. cheers James James Mills / prologic E: prologic@shortcircuit.net.au W: prologic.shortcircuit.net.au On Thu, May 30, 2013 at 9:32 AM, Peter A. Shevtsov <petr.shevtsov@gmail.com>wrote:
On 30/05/13 at 09:24am, James Mills wrote:
Wouldn't this also mean having to change the ncurses port to support wide characters?
No, it wouldn't since ncurses is already configured with --enable-widec option in core.
-- Peter A. Shevtsov
On Wed, May 29, 2013 at 7:06 AM, Peter A. Shevtsov <petr.shevtsov@gmail.com> wrote:
I can't build lynx with prt-get depinst lynx. Full build log is available here http://sprunge.us/ENIA
Just so can you can open the bug report using lynx :) --- Pkgfile.orig 2013-05-29 09:44:53.209081564 +0700 +++ Pkgfile 2013-05-29 09:44:30.819080940 +0700 @@ -12,6 +12,8 @@ build() { cd lynx${version//./-} + export CFLAGS+=" -I/usr/include/openssl/" + ./configure \ --prefix=/usr \ --disable-nls \
participants (4)
-
Danny Rawlins
-
Emmanuel Benisty
-
James Mills
-
Peter A. Shevtsov