ports/54843: [Maintainer update] shells/scponly: bogus behavior of gFTP knob

Hideyuki KURASHINA rushani at FreeBSD.org
Fri Jul 25 11:20:13 UTC 2003


>Number:         54843
>Category:       ports
>Synopsis:       [Maintainer update] shells/scponly: bogus behavior of WITH_SCPONLY_GFTP
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jul 25 04:20:11 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Hideyuki KURASHINA
>Release:        FreeBSD 4.8-STABLE i386
>Organization:
>Environment:

	System: FreeBSD ***.*******.jp 4.8-STABLE FreeBSD 4.8-STABLE #3

>Description:

	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

>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

>Fix:

	Apply following patch.

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/shells/scponly/Makefile,v
retrieving revision 1.6
diff -u -r1.6 Makefile
--- Makefile	10 May 2003 21:54:40 -0000	1.6
+++ Makefile	6 Jul 2003 08:00:52 -0000
@@ -73,9 +73,9 @@
 .endif
 
 .if defined(WITH_SCPONLY_GFTP)
-CONFIGURE_ARGS+=--enable-gftp
+CONFIGURE_ARGS+=--enable-gftp-compat
 .else
-CONFIGURE_ARGS+=--disable-gftp
+CONFIGURE_ARGS+=--disable-gftp-compat
 .endif
 
 .if defined(WITH_SCPONLY_WINSCP)
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list