Bug 54843 - [Maintainer update] shells/scponly: bogus behavior of WITH_SCPONLY_GFTP
Summary: [Maintainer update] shells/scponly: bogus behavior of WITH_SCPONLY_GFTP
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-07-25 12:20 UTC by Hideyuki KURASHINA
Modified: 2003-07-26 00:12 UTC (History)
1 user (show)

See Also:


Attachments
file.diff (517 bytes, patch)
2003-07-25 12:20 UTC, Hideyuki KURASHINA
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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!