- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- compiling bind 9.2.1 on HP-UX 11.0 problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
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
09-23-2002 12:43 PM
09-23-2002 12:43 PM
compiling bind 9.2.1 on HP-UX 11.0 problem
At this time I thought maybe it was GCC that didnt compile it correctly so Im trying to compile it with HP's ANSI C compiler but am getting the same error. I was wondering would anyone be able to help?
[/opt/bind-9.2.1] # make
making all in /opt/bind-9.2.1/make
making all in /opt/bind-9.2.1/lib
making all in /opt/bind-9.2.1/lib/isc
making all in /opt/bind-9.2.1/lib/isc/include
making all in /opt/bind-9.2.1/lib/isc/include/isc
making all in /opt/bind-9.2.1/lib/isc/unix
making all in /opt/bind-9.2.1/lib/isc/unix/include
making all in /opt/bind-9.2.1/lib/isc/unix/include/isc
cc -Ae -z -g -I/opt/bind-9.2.1 -I./include -I./../pthreads/include -I../include -I./../include -I./.. -D_REENTRANT +w1 +W 474,530 -c ipv6.c
cc -Ae -z -g -I/opt/bind-9.2.1 -I./include -I./../pthreads/include -I../include -I./../include -I./.. -D_REENTRANT +w1 +W 474,530 -c app.c
cc -Ae -z -g -I/opt/bind-9.2.1 -I./include -I./../pthreads/include -I../include -I./../include -I./.. -D_REENTRANT +w1 +W 474,530 -c dir.c
cc: "dir.c", line 167: warning 732: Different types treated as unsigned for >.
cc -Ae -z -g -I/opt/bind-9.2.1 -I./include -I./../pthreads/include -I../include -I./../include -I./.. -D_REENTRANT +w1 +W 474,530 -c entropy.c
cc: "../entropy.c", line 306: warning 732: Different types treated as unsigned for !=.
cc: "../entropy.c", line 746: error 1000: Unexpected symbol: "destroy_check".
cc: panic 2017: Cannot recover from earlier errors, terminating.
*** Error exit code 1
Stop.
*** Error exit code 1
Stop.
*** Error exit code 1
Stop.
*** Error exit code 1
Stop.
Why is it taking HP so long to come out with BIND 9.x on HP-UX 11.0 when they already have it for 11.i?
Thanks for any help in advance.
Todd Bowden
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 12:37 PM
09-24-2002 12:37 PM
Re: compiling bind 9.2.1 on HP-UX 11.0 problem
Thanks
Todd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 10:07 PM
09-24-2002 10:07 PM
Re: compiling bind 9.2.1 on HP-UX 11.0 problem
This is a definite programming problem. I saw a lot of these when I first started using the 64bit kernel arch.
As for multi-processor aware, my understanding is that the program becomes "thread aware" I.E. If one CPU does some work, then switches to another job, the next "least busy" CPU could pick-up the thread, and carry-on (seamlessly) processesing the requests. Thus the load is effectiveley balanced. If you have four slave processes (one per CPU) I would expect that you would soon get a situation where one had locked a file (or resource), then the others would have to wait until the lock was released, therefore performance would actually degrade.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 11:33 AM
09-27-2002 11:33 AM
Re: compiling bind 9.2.1 on HP-UX 11.0 problem
I've never had that compile problem on 11. To compile on 11i requires the very latest release candidate of BIND9.
You might go looking into the .c file in question to see if there is something obvious there, or perhaps try a more recent download of the source bits.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 11:40 AM
09-27-2002 11:40 AM
Re: compiling bind 9.2.1 on HP-UX 11.0 problem
I found I was lacking a couple patches for my ANSI/C compiler (Thank you HP). I then ran into a problem with the linker. That turned out to be a problem with the openssl version I had which was compiled by GCC and not the ANSI/C compiler. I got openssl 0.9.6g and compiled it with the ANSI/C compiler and did a remake on BIND and all is well.
Thanks to Mark Andrews, Internet Software Consortium, without his help I might still be lost today.