1819504 Members
3281 Online
109603 Solutions
New Discussion юеВ

LFTP Binary files

 
John de Villiers
Frequent Advisor

LFTP Binary files

Does anyone know where i can get a HP-UX 11.11 compiled version of LFTP? I need it to be able to do automated FTPs ( FTP with SSL ) to a client. We do not have any compilers other than the standard CC compiler that comes with HP-UX.

The client is unwilling to allow any other transfer method ( SSH ).
4 REPLIES 4
Eric Antunes
Honored Contributor

Re: LFTP Binary files

Hi John,

I don't know any lftp. The only ftp I know is the standard ftp deamon:

http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=WUFTPD26

PS: you can always automate a ftp job with cron. If you want to know, just tell me.

Best Regards,

Eric Antunes



Each and every day is a good day to learn.
Arunvijai_4
Honored Contributor

Re: LFTP Binary files

Hi John,

Its worth reading these threads

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=667043
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=616916

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
John de Villiers
Frequent Advisor

Re: LFTP Binary files

Eric - I know how to automate ftp. Thanks for the offer though. I need to use FTP over SSL ( FTPs - RFC 2228 ) and NOTHING else.

Arunvijai - I saw those messages. WU-FTPd is a server - i need a client. It seems Bill McNamara got it working. I wonder if he has the binary available for download anywhere.

As far as compiling goes with CC - i know just enough to be very dangerous.
John de Villiers
Frequent Advisor

Re: LFTP Binary files

Ok, seeing as a binary download looks like whishfull thinking i tried to compile it myself.
First i installed GCC 4.1.0
then libiconv-1.10 and gettext-14.5

Then i downloaded lftp 3.4.7 untarred it

the configure runs error-free
./configure --disable-FEATURE --with-openssl=/opt/openssl


everything compiles, but the linker falls over with :
/bin/sh ../libtool --silent --tag=CXX --mode=link /usr/local/bin/gcc -O2 -Wall -Wwrite-strings -Woverloaded-virtual -fno-exceptions -fno-rtti -s -o lftp lftp.o complete.o lftp_rl.o liblftp-jobs.la liblftp-tasks.la liblftp-pty.la liblftp-network.la proto-ftp.la proto-http.la proto-file.la proto-fish.la proto-sftp.la cmd-mirror.la cmd-sleep.la ../readline-4.3/libreadline.a ../lib/liblib.a -lcurses
/usr/ccs/bin/ld: Unsatisfied symbols:
operator delete[](void*)(first referenced in ./.libs/liblftp-tasks.a(SignalHook.o)) (code)
__cxa_pure_virtual (first referenced in lftp.o) (code)
operator new[](unsigned long)(first referenced in ./.libs/liblftp-tasks.a(SignalHook.o)) (code)
operator new(unsigned long)(first referenced in lftp.o) (code)
operator delete(void*)(first referenced in lftp.o) (code)
collect2: ld returned 1 exit status
*** Error exit code 1

Stop.
*** Error exit code 1

Any clues? di i need to install another linker maybe ?