From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Apr 5 15:10:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 840A11EE for ; Fri, 5 Apr 2013 15:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 77198D32 for ; Fri, 5 Apr 2013 15:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r35FA2kj081517 for ; Fri, 5 Apr 2013 15:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r35FA1Q6081516; Fri, 5 Apr 2013 15:10:01 GMT (envelope-from gnats) Date: Fri, 5 Apr 2013 15:10:01 GMT Message-Id: <201304051510.r35FA1Q6081516@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: mfv Subject: Re: ports/177619: make palm/pilot-link does not install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mfv List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Apr 2013 15:10:02 -0000 The following reply was made to PR ports/177619; it has been noted by GNATS. From: mfv To: bug-followup@freebsd.org, mrkvrg@acm.org Cc: Subject: Re: ports/177619: make palm/pilot-link does not install Date: Fri, 5 Apr 2013 10:53:53 -0400 This is my first attempt at debugging a Makefile. I believe the following may solve the problem which seems to be a syntax issue. -----------------------< SNIP >---------------------------------------- --- /tmp/Makefile 2013-04-05 08:28:58.000000000 -0400 +++ ./Makefile 2013-04-05 08:30:31.000000000 -0400 @@ -19,7 +19,7 @@ USE_PKGCONFIG= build GNU_CONFIGURE= yes CFLAGS+= -I${WRKSRC}/popt -I${LOCALBASE}/include -CONFIGURE_ARGS+=--with-libiconv=${LOCALBASE} --with-included-popt --enable- conduits --enable-xsltproc +CONFIGURE_ARGS+= --with-libiconv=${LOCALBASE} --with-included-popt -- enable-conduits --enable-xsltproc USE_LDCONFIG= yes OPTIONS_DEFINE= PNG THREADS USB @@ -40,7 +40,7 @@ CONFIGURE_ARGS+=--enable-libusb LDFLAGS+= -L${PREFIX}/lib -lusb -.if ! ${PORT_OPTIONS:THREADS} +.if ! ${PORT_OPTIONS:MTHREADS} IGNORE= cannot be built: USB support requires THREADS turned on. Please reconfigure using 'make config' .else LDFLAGS+= ${PTHREAD_LIBS} ---------------------------------------------------------------------- With the above changes this program will build, though I am not certain if it is a proper build. At least the error messages no longer appear. Cheers ...