Solved [Solved] w3m - Makefile

www/w3m stops to compile:
Code:
configure: error: invalid feature name: image=fb,x11
===>  Script "configure" failed unexpectedly.
Please report the problem to nobutaka@FreeBSD.org [maintainer] and attach the
"/ram/usr/ports/www/w3m/work/w3m-0.5.3/config.log" including the output of
the failure of your make command. Also, it might be a good idea to provide
an overview of all packages installed on your system (e.g. a
/usr/local/sbin/pkg-static info -g -Ea).
*** Error code 1

It works if i change the lines in Makefile from
Code:
INLINE_IMAGE_CONFIGURE_WITH=    imagelib=gtk2
INLINE_IMAGE_CONFIGURE_ENABLE=  image=fb,x11

KEY_LYNX_CONFIGURE_ENABLE=      keymap=lynx
to
Code:
INLINE_IMAGE_CONFIGURE_ON=      imagelib=gtk2
INLINE_IMAGE_CONFIGURE_ON=      image=fb,x11

KEY_LYNX_CONFIGURE_ON=  keymap=lynx

this was posted on freshports:
20 Jun 2014 07:48:34
Original commit files touched by this commit 0.5.3_3
Revision:358524 adamw search for other commits by this committer

Change _WITH/_ENABLE to _ON for things that take arguments.

Seems forgot the change in Makefile.
 
Back
Top