niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » Apps » Apache
Possible bug? Httpd Make error on Solaris 10
Post new topic   Reply to topic Page 1 of 1 [3 Posts] View previous topic :: View next topic
Author Message
Dan Richardson
*nix forums beginner


Joined: 19 Jul 2006
Posts: 2

PostPosted: Wed Jul 19, 2006 1:58 pm    Post subject: RE: Possible bug? Httpd Make error on Solaris 10 Reply with quote

Thanks for the quick reply Owen, but I found the cause of this problem not long after I posted to the list (isn't that always the way?)

Turned out GCC was using /usr/ccs/bin/ld which was a symlink to GNU ld. Removing the symlink and copying the Sun ld binary (which I have previously backed up) back into /usr/ccs/bin seems to have fixed this compile problem.

Thanks again,

Dan


Quote:
----- Original Message -----
From: "Boyle Owen" <Owen.Boyle@swx.com
To: users@httpd.apache.org
Subject: RE: [users@httpd] Possible bug? Httpd Make error on Solaris 10
Date: Wed, 19 Jul 2006 15:47:39 +0200


-----Original Message-----
From: Dan Richardson [mailto:mundek23@linuxmail.org] Sent:
Wednesday, July 19, 2006 3:37 PM
To: users@httpd.apache.org
Subject: [users@httpd] Possible bug? Httpd Make error on Solaris 10

Hello,

I am compiling httpd-2.2.2 on Solaris 10 (Sparc), using gcc 3.3.2
and GNU make 3.80 and I'm hitting some problems.

./configure --prefix=/www/httpd/test-vr --enable-so
--enable-rewrite --enable-headers --enable-shared=max seems to
run fine, then I run Make and it bails out with this error:

Making all in support
make[1]: Entering directory `/usr/local/src/httpd-2.2.2/support'
make[2]: Entering directory `/usr/local/src/httpd-2.2.2/support'
/usr/local/src/httpd-2.2.2/srclib/apr/libtool --silent
--mode=link gcc -g -O2
-L/usr/local/src/httpd-2.2.2/srclib/apr-util/xml/expat/lib -o
htpasswd htpasswd.lo -lm
/usr/local/src/httpd-2.2.2/srclib/pcre/libpcre.la
/usr/local/src/httpd-2.2.2/srclib/apr-util/libaprutil-1.la
/usr/local/src/httpd-2.2.2/srclib/apr-util/xml/expat/lib/libex
pat.la -liconv /usr/local/src/httpd-2.2.2/srclib/apr/libapr-1.la
-luuid -lsendfile -lrt -lsocket -lnsl -lpthread

Could be you need to install the apr package that comes with the apache
distro. This is what I did the last time I compiled 2.2.2 on solaris:


# Build and install apr 1.2
cd srclib/apr
./configure --prefix=${INSTALL_PREFIX}/apr-httpd
make || exit;
make install || exit;

# Build and install apr-util 1.2
cd ../apr-util
./configure --prefix=${INSTALL_PREFIX}/apr-util-httpd
--with-apr=${INSTALL_PREFIX}/apr-httpd
make || exit;
make install || exit;

# continue with configuration (ie, your line above)

./configure --prefix=/www/httpd/test-vr --enable-so
--enable-rewrite --enable-headers --enable-shared=max

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored.

c> /usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_tryrdlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_exit@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_setguardsize@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_setstacksize@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_key_create@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlerror@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `write@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `modf@SYSVABI_1.3'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_key_delete@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_create@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_setspecific@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `gethostname@SUNWprivate_1.1'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `open@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `writev@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_trywrlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `waitpid@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `fcntl@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_init@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_join@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `select@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_destroy@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_sigmask@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_equal@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_destroy@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `isnan@SYSVABI_1.3'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_init@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlopen@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_mutexattr_settype@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_getdetachstate@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_detach@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `read@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_getspecific@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `poll@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_setdetachstate@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlsym@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_rdlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_wrlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_self@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlclose@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_unlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_once@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `sigaction@SUNW_0.9'
collect2: ld returned 1 exit status
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory `/usr/local/src/httpd-2.2.2/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/httpd-2.2.2/support'
make: *** [all-recursive] Error 1

Anyone run into this before? It's driving me nuts and Google
isn't throwing up anything too helpful.

Any help greatly appreciated.

Cheers,

Dan -- _______________________________________________
Check out the latest SMS services @ http://www.linuxmail.org
This allows you to send and receive SMS through your mailbox.

Powered by Outblaze

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org



This message is for the named person's use only. It may contain
confidential, proprietary or legally privileged information. No
confidentiality or privilege is waived or lost by any
mistransmission. If you receive this message in error, please
notify the sender urgently and then immediately delete the message
and any copies of it from your system. Please also immediately
destroy any hardcopies of the message. You must not, directly or
indirectly, use, disclose, distribute, print, or copy any part of
this message if you are not the intended recipient. The sender's
company reserves the right to monitor all e-mail communications
through their networks. Any views expressed in this message are
those of the individual sender, except where the message states
otherwise and the sender is authorised to state them to be the
views of the sender's company.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org




--
_______________________________________________
Check out the latest SMS services @ http://www.linuxmail.org
This allows you to send and receive SMS through your mailbox.

Powered by Outblaze

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Back to top
Boyle Owen
*nix forums Guru


Joined: 07 Feb 2005
Posts: 618

PostPosted: Wed Jul 19, 2006 1:47 pm    Post subject: RE: Possible bug? Httpd Make error on Solaris 10 Reply with quote

Quote:
-----Original Message-----
From: Dan Richardson [mailto:mundek23@linuxmail.org]
Sent: Wednesday, July 19, 2006 3:37 PM
To: users@httpd.apache.org
Subject: [users@httpd] Possible bug? Httpd Make error on Solaris 10

Hello,

I am compiling httpd-2.2.2 on Solaris 10 (Sparc), using gcc
3.3.2 and GNU make 3.80 and I'm hitting some problems.

./configure --prefix=/www/httpd/test-vr --enable-so
--enable-rewrite --enable-headers --enable-shared=max

seems to run fine, then I run Make and it bails out with this error:

Making all in support
make[1]: Entering directory `/usr/local/src/httpd-2.2.2/support'
make[2]: Entering directory `/usr/local/src/httpd-2.2.2/support'
/usr/local/src/httpd-2.2.2/srclib/apr/libtool --silent
--mode=link gcc -g -O2
-L/usr/local/src/httpd-2.2.2/srclib/apr-util/xml/expat/lib
-o htpasswd htpasswd.lo -lm
/usr/local/src/httpd-2.2.2/srclib/pcre/libpcre.la
/usr/local/src/httpd-2.2.2/srclib/apr-util/libaprutil-1.la
/usr/local/src/httpd-2.2.2/srclib/apr-util/xml/expat/lib/libex
pat.la -liconv /usr/local/src/httpd-2.2.2/srclib/apr/libapr-1.la

-luuid -lsendfile -lrt -lsocket -lnsl -lpthread

Could be you need to install the apr package that comes with the apache
distro. This is what I did the last time I compiled 2.2.2 on solaris:


# Build and install apr 1.2
cd srclib/apr
../configure --prefix=${INSTALL_PREFIX}/apr-httpd
make || exit;
make install || exit;

# Build and install apr-util 1.2
cd ../apr-util
../configure --prefix=${INSTALL_PREFIX}/apr-util-httpd
--with-apr=${INSTALL_PREFIX}/apr-httpd
make || exit;
make install || exit;

# continue with configuration (ie, your line above)

Quote:
./configure --prefix=/www/httpd/test-vr --enable-so
--enable-rewrite --enable-headers --enable-shared=max

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored.

c> /usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
Quote:
undefined reference to `pthread_rwlock_tryrdlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_exit@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_setguardsize@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_setstacksize@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_key_create@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlerror@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `write@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `modf@SYSVABI_1.3'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_key_delete@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_create@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_setspecific@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `gethostname@SUNWprivate_1.1'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `open@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `writev@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_trywrlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `waitpid@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `fcntl@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_init@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_join@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `select@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_destroy@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_sigmask@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_equal@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_destroy@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `isnan@SYSVABI_1.3'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_init@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlopen@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_mutexattr_settype@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_getdetachstate@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_detach@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `read@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_getspecific@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `poll@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_attr_setdetachstate@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlsym@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_rdlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_wrlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_self@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `dlclose@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_rwlock_unlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `pthread_once@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so:
undefined reference to `sigaction@SUNW_0.9'
collect2: ld returned 1 exit status
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory `/usr/local/src/httpd-2.2.2/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/httpd-2.2.2/support'
make: *** [all-recursive] Error 1

Anyone run into this before? It's driving me nuts and Google
isn't throwing up anything too helpful.

Any help greatly appreciated.

Cheers,

Dan



--
_______________________________________________
Check out the latest SMS services @ http://www.linuxmail.org
This allows you to send and receive SMS through your mailbox.

Powered by Outblaze

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP
Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org



This message is for the named person's use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this message in error, please notify the sender urgently and then immediately delete the message and any copies of it from your system. Please also immediately destroy any hardcopies of the message. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The sender's company reserves the right to monitor all e-mail communications through their networks. Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorised to state them to be the views of the sender's company.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Back to top
Dan Richardson
*nix forums beginner


Joined: 19 Jul 2006
Posts: 2

PostPosted: Wed Jul 19, 2006 1:37 pm    Post subject: Possible bug? Httpd Make error on Solaris 10 Reply with quote

Hello,

I am compiling httpd-2.2.2 on Solaris 10 (Sparc), using gcc 3.3.2 and GNU make 3.80 and I'm hitting some problems.

../configure --prefix=/www/httpd/test-vr --enable-so --enable-rewrite --enable-headers --enable-shared=max

seems to run fine, then I run Make and it bails out with this error:

Making all in support
make[1]: Entering directory `/usr/local/src/httpd-2.2.2/support'
make[2]: Entering directory `/usr/local/src/httpd-2.2.2/support'
/usr/local/src/httpd-2.2.2/srclib/apr/libtool --silent --mode=link gcc -g -O2 -L/usr/local/src/httpd-2.2.2/srclib/apr-util/xml/expat/lib -o htpasswd htpasswd.lo -lm /usr/local/src/httpd-2.2.2/srclib/pcre/libpcre.la /usr/local/src/httpd-2.2.2/srclib/apr-util/libaprutil-1.la /usr/local/src/httpd-2.2.2/srclib/apr-util/xml/expat/lib/libexpat.la -liconv /usr/local/src/httpd-2.2.2/srclib/apr/libapr-1.la -luuid -lsendfile -lrt -lsocket -lnsl -lpthread
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_tryrdlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_exit@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_attr_setguardsize@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_attr_setstacksize@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_key_create@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `dlerror@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `write@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `modf@SYSVABI_1.3'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_key_delete@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_create@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_setspecific@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `gethostname@SUNWprivate_1.1'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `open@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `writev@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_trywrlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `waitpid@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `fcntl@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_init@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_join@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `select@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_attr_destroy@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_sigmask@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_equal@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_destroy@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `isnan@SYSVABI_1.3'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_attr_init@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `dlopen@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_mutexattr_settype@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_attr_getdetachstate@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_detach@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `read@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_getspecific@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `poll@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_attr_setdetachstate@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `dlsym@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_rdlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_wrlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_self@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `dlclose@SUNW_1.22'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_rwlock_unlock@SUNW_1.2'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `pthread_once@SUNW_0.9'
/usr/local/src/httpd-2.2.2/srclib/apr/.libs/libapr-1.so: undefined reference to `sigaction@SUNW_0.9'
collect2: ld returned 1 exit status
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory `/usr/local/src/httpd-2.2.2/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/httpd-2.2.2/support'
make: *** [all-recursive] Error 1

Anyone run into this before? It's driving me nuts and Google isn't throwing up anything too helpful.

Any help greatly appreciated.

Cheers,

Dan



--
_______________________________________________
Check out the latest SMS services @ http://www.linuxmail.org
This allows you to send and receive SMS through your mailbox.

Powered by Outblaze

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 1 of 1 [3 Posts] View previous topic :: View next topic
The time now is Wed Dec 03, 2008 8:24 pm | All times are GMT
navigation Forum index » Apps » Apache
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts Postfix + MySQL error: very strange variable %s iWarior Postfix 0 Mon Aug 25, 2008 2:01 pm
No new posts ** Postfix error on console every minute or so ** ?? drywash Postfix 0 Fri Jul 04, 2008 8:49 pm
No new posts Postfix error bounce diwash Postfix 0 Fri Mar 28, 2008 3:37 am
No new posts NFS server on Solaris 10 gurgle Solaris 0 Tue Sep 04, 2007 7:05 pm
No new posts I am getting following error in Aix 5.3 rockcharles1 AIX 0 Tue Aug 28, 2007 11:06 pm

e Harmony | Personal Loans | Mortgage | Currency Converter | Credit Check
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 0.3071s ][ Queries: 20 (0.1700s) ][ GZIP on - Debug on ]