- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- GNUPG on HPUX 11.00
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 11:10 AM
01-16-2005 11:10 AM
I'm trying to set this up. I've installed GCC, Bison and some other things. When I compile, I get this:
gmake[2]: Entering directory `/admintmp/adm/gnupg/gnupg-1.2.7/util'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/admintmp/adm/gnupg/gnupg-1.2.7/util'
Making all in mpi
gmake[2]: Entering directory `/admintmp/adm/gnupg/gnupg-1.2.7/mpi'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/admintmp/adm/gnupg/gnupg-1.2.7/mpi'
Making all in cipher
gmake[2]: Entering directory `/admintmp/adm/gnupg/gnupg-1.2.7/cipher'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/admintmp/adm/gnupg/gnupg-1.2.7/cipher'
Making all in tools
gmake[2]: Entering directory `/admintmp/adm/gnupg/gnupg-1.2.7/tools'
gcc -g -O2 -Wall -o mpicalc mpicalc.o ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a ../intl/libintl.a
/usr/ccs/bin/ld: Unsatisfied symbols:
__udiv_qrnnd (first referenced in ../mpi/libmpi.a(mpih-div.o)) (code)
collect2: ld returned 1 exit status
gmake[2]: *** [mpicalc] Error 1
gmake[2]: Leaving directory `/admintmp/adm/gnupg/gnupg-1.2.7/tools'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/admintmp/adm/gnupg/gnupg-1.2.7'
gmake: *** [all] Error 2
Any ideas? Do I need to install an assembler compiler? Does anyone have a compiled binary available?
Thnks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 11:20 AM
01-16-2005 11:20 AM
Re: GNUPG on HPUX 11.00
http://hpux.connect.org.uk/
Perhaps ght GNUPG is not there.
Lets check though.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2005 01:25 PM
01-16-2005 01:25 PM
Re: GNUPG on HPUX 11.00
Mic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 12:05 AM
01-17-2005 12:05 AM
Re: GNUPG on HPUX 11.00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 12:30 AM
01-17-2005 12:30 AM
Re: GNUPG on HPUX 11.00
This thread has a link to a binary and some more info on how to get it working.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=758126
Regards,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2005 12:32 AM
01-17-2005 12:32 AM
Re: GNUPG on HPUX 11.00
That symbol does exist in 1.2.6 so it isn't new.
Maybe they haven't properly tested a port to PA_RISC yet.
The other difference between you and me is that I use the HP ANSI C compiler and you are using GCC.
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2005 08:28 AM
01-19-2005 08:28 AM
Re: GNUPG on HPUX 11.00
the libmpi.a archive. in the mpi directory there
are various directories such as:
hppa
hppa1.1
i386
pa7100
and others where the assembler program udiv_qrrnnd.S
resides. If I manually compile one of the source files,
modify the makefile to include the resulting udiv_qrrnnd.o
object, gnupg compiles. It runs but hangs on encryption, though I can generate keys.
So I'm probably including the wrong object.
Any ideas?
Syl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2005 10:50 PM
01-19-2005 10:50 PM
SolutionEdit mpi/config.links (you might want to keep a safe copy)
Around line 117 you will see an entry
hppa1.0*-*-*)
echo '/* configured for HPPA 1.0 */' >>./mpi/asm-syntax.h
path="hppa"
mpi_extra_modules="udiv-qrnnd"
;;
You need to add a similar entry under it ...
hppa1.1*-*-*)
echo '/* configured for HPPA 1.1 */' >>./mpi/asm-syntax.h
path="hppa1.1 hppa"
mpi_extra_modules="udiv-qrnnd"
;;
Save your changes.
# gmake clean
# configure -build=hppa1.1-hp-hpux11.00 \
-host=hppa1.1-hp-hpux11.00 \
-target=hppa1.1-hp-hpux11.00
Then gmake it again? It should build, but I don't know whether it will run OK.
You might also want to replace the default entropy source as suggested by the configure script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2005 07:04 AM
01-21-2005 07:04 AM
Re: GNUPG on HPUX 11.00
and seem to work.
Syl