From owner-freebsd-questions@FreeBSD.ORG Tue Nov 7 09:01:32 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D27E16A47B for ; Tue, 7 Nov 2006 09:01:32 +0000 (UTC) (envelope-from ben@spooty.net) Received: from swift.swiftnames.com (swift.swiftnames.com [205.214.82.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F0B143D49 for ; Tue, 7 Nov 2006 09:01:31 +0000 (GMT) (envelope-from ben@spooty.net) Received: from peterpavement.plus.com ([80.229.40.235] helo=[192.168.2.4]) by swift.swiftnames.com with esmtpa (Exim 4.52) id 1GhMpb-0005Tr-0F for freebsd-questions@freebsd.org; Tue, 07 Nov 2006 02:01:19 -0700 From: Ben Paley To: FreeBSD Questions Date: Tue, 7 Nov 2006 09:01:24 +0000 User-Agent: KMail/1.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200611070901.25132.ben@spooty.net> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - swift.swiftnames.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - spooty.net X-Source: X-Source-Args: X-Source-Dir: Subject: libtool & missing library? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Nov 2006 09:01:32 -0000 Hello, I'm trying to compile kftpgrabber from source, and get this when I make: /bin/bash ../../../../libtool --silent --tag=CXX --mode=link g++ -Wno-long-long -Wundef -Wall -W -Wpoi nter-arith -O2 -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQ T_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -o libkftpinterfaces.la -rpath /usr/lo cal/lib -L/usr/local/lib -L/usr/X11R6/lib -version-info 0:0:0 -no-undefined kftpbookmarkimportplugin.lo -lkparts libtool: link: cannot find the library `' *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber/src/misc/interfaces. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber/src/misc. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber/src. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2. root@sark# I've tried moving the libtool which comes with the source and linking to /usr/local/bin/libtool instead, then doing make clean; then the error changes: if g++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I./.. -I./../engine -I./../misc/interfaces -I/usr/local/include -I/usr/X11R6/include -DQT_THREAD_SUPPORT -D_THREAD_SAFE -Wno-long-long -Wundef -Wall -W -Wpointer-arith -O2 -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -MT configbase.o -MD -MP -MF ".deps/configbase.Tpo" -c -o configbase.o configbase.cpp; then mv -f ".deps/configbase.Tpo" ".deps/configbase.Po"; else rm -f ".deps/configbase.Tpo"; exit 1; fi configbase.cpp: In member function `void KFTPCore::ConfigBase::postInit()': configbase.cpp:65: error: `Config' has not been declared configbase.cpp:65: error: `downloadActions' was not declared in this scope configbase.cpp:68: error: `Config' has not been declared configbase.cpp:68: error: `uploadActions' was not declared in this scope configbase.cpp:71: error: `Config' has not been declared configbase.cpp:71: error: `fxpActions' was not declared in this scope configbase.cpp:65: warning: unused variable 'downloadActions' configbase.cpp:68: warning: unused variable 'uploadActions' configbase.cpp:71: warning: unused variable 'fxpActions' configbase.cpp: In member function `void KFTPCore::ConfigBase::saveConfig()': configbase.cpp:80: error: `Config' has not been declared configbase.cpp:80: error: `setDownloadActions' was not declared in this scope configbase.cpp:83: error: `Config' has not been declared configbase.cpp:83: error: `setUploadActions' was not declared in this scope configbase.cpp:86: error: `Config' has not been declared configbase.cpp:86: error: `setFxpActions' was not declared in this scope configbase.cpp:89: error: `Config' has not been declared configbase.cpp:89: error: `setSize' was not declared in this scope configbase.cpp:90: error: `Config' has not been declared configbase.cpp:90: error: `setPosition' was not declared in this scope configbase.cpp:80: warning: unused variable 'setDownloadActions' configbase.cpp:83: warning: unused variable 'setUploadActions' configbase.cpp:86: warning: unused variable 'setFxpActions' configbase.cpp:89: warning: unused variable 'setSize' configbase.cpp:90: warning: unused variable 'setPosition' configbase.cpp: In member function `char KFTPCore::ConfigBase::ftpMode(const QString&)': configbase.cpp:116: error: `Config' has not been declared configbase.cpp:116: error: `asciiList' was not declared in this scope configbase.cpp:116: warning: unused variable 'asciiList' *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber/src/misc. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber/src/misc. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber/src. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2/kftpgrabber. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2. *** Error code 1 Stop in /root/kftpgrabber-0.8.0-alpha2. root@sark# There's more, of course, but that's how it ends. Has anyone got a clue? I'm running FreeBSD 6.2-PRERELEASE If anyone's got a reply, could they cc to me, as I get the digest and sometimes miss things in amongst all the other posts! Thanks, Ben