- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unsatisfied symbol error upon compilation of apach...
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
08-30-2012 06:47 PM
08-30-2012 06:47 PM
Unsatisfied symbol error upon compilation of apache for HPUX
I am installing apache 2.2.22 on HP UX B.11.23 U ia64 but encountered the below errors during the make command:
Errors encountered:
Making all in support
/home/vdirecto/bkup/httpd-2.2.22/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -o htdigest htdigest.lo -lm /home/vdirecto/bkup/httpd-2.2.22/srclib/pcre/libpcre.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr-util/libaprutil-1.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr-util/xml/expat/libexpat.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr/libapr-1.la -lrt -lm -lpthread
/home/vdirecto/bkup/httpd-2.2.22/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -o logresolve logresolve.lo -lm /home/vdirecto/bkup/httpd-2.2.22/srclib/pcre/libpcre.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr-util/libaprutil-1.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr-util/xml/expat/libexpat.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr/libapr-1.la -lrt -lm -lpthread
/home/vdirecto/bkup/httpd-2.2.22/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -o ab ab.lo -lm /home/vdirecto/bkup/httpd-2.2.22/srclib/pcre/libpcre.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr-util/libaprutil-1.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr-util/xml/expat/libexpat.la /home/vdirecto/bkup/httpd-2.2.22/srclib/apr/libapr-1.la -lrt -lm -lpthread -lssl -lcrypto -lrt -lm -lpthread
ld: Unsatisfied symbol "BIO_get_callback_arg" in file .libs/ab.o
ld: Unsatisfied symbol "SSL_CTX_set_info_callback" in file .libs/ab.o
ld: Unsatisfied symbol "BIO_set_callback" in file .libs/ab.o
ld: Unsatisfied symbol "BIO_set_callback_arg" in file .libs/ab.o
4 errors.
collect2: ld returned 1 exit status
*** Error exit code 1
Stop.
*** Error exit code 1
Stop.
*** Error exit code 1
Stop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2012 08:01 PM - edited 08-30-2012 08:05 PM
08-30-2012 08:01 PM - edited 08-30-2012 08:05 PM
Re: Unsatisfied symbol error upon linking of Apache for HP-UX
The error messages tell you where the call sites are.
Can you scan the sources to see where the definition is?
You can look at objects and libs with:
nm -pxAN *.o *.a *.so
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 12:47 AM
08-31-2012 12:47 AM
Re: Unsatisfied symbol error upon linking of Apache for HP-UX
Sorry for the late response. Output of the nm did not yield anything but I was able to find the libraries in the below locations:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 12:53 AM
08-31-2012 12:53 AM
Re: Unsatisfied symbol error upon linking of Apache for HP-UX
>I was able to find the libraries in the below locations:
ab.o is an object file, the ones with the unsats. You need to find the definitions, either in other objects, archives or shlibs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 01:33 AM
08-31-2012 01:33 AM
Re: Unsatisfied symbol error upon linking of Apache for HP-UX
Sorry about that. Unfortunately, we could not find any objects/files referencing the definitions.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2012 01:48 AM
08-31-2012 01:48 AM
Re: Unsatisfied symbol error upon linking of Apache for HP-UX
>Unfortunately, we could not find any objects/files referencing the definitions.
How about scanning your source files?
You may want to ask mr google for help:
http://www.linuxquestions.org/questions/linux-software-2/apache-2-2-8-ssl-issues-after-make-652738/