Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jul 2003 20:11:57 +0900 (JST)
From:      Hideyuki KURASHINA <rushani@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        nork@FreeBSD.org
Subject:   ports/54843: [Maintainer update] shells/scponly: bogus behavior of gFTP knob
Message-ID:  <20030725.201157.94071974.rushani@FreeBSD.org>
Resent-Message-ID: <200307251120.h6PBKB5o011465@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030725.201157.94071974.rushani>