Bug 54843

Summary: [Maintainer update] shells/scponly: bogus behavior of WITH_SCPONLY_GFTP
Product: Ports & Packages Reporter: Hideyuki KURASHINA <rushani>
Component: Individual Port(s)Assignee: freebsd-ports-bugs (Nobody) <ports-bugs>
Status: Closed FIXED    
Severity: Affects Only Me CC: nork
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Hideyuki KURASHINA freebsd_committer freebsd_triage 2003-07-25 12:20:11 UTC
	According to the output of `configure --help' in distfile, 
	`--disable-gftp-compat' option is needed to disable gFTP
	compatibility.

	However, corresponding CONFIGURE_ARGS in shells/scponly/Makefile
	is specified like this;

	  .if defined(WITH_SCPONLY_GFTP)
	  CONFIGURE_ARGS+=--enable-gftp
	  .else
	  CONFIGURE_ARGS+=--disable-gftp
	  .endif

Fix: Apply following patch.

How-To-Repeat: 	
	cd /usr/ports/shells/scponly
	make configure
	cp ${WRKSRC}/config.h /tmp/config.h.default
	make clean
	make -DWITH_SCPONLY_GFTP configure
	cp ${WRKSRC}/config.h /tmp/config.h.gftp
	diff -u /tmp/config.h.default /tmp/config.h.gftp
Comment 1 Maho Nakata freebsd_committer freebsd_triage 2003-07-26 00:12:21 UTC
State Changed
From-To: open->closed

committed, thanks!