Rapache, libtool, and Make on Solaris 10


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Rapache, libtool, and Make on Solaris 10
# 1  
Old 06-04-2010
Rapache, libtool, and Make on Solaris 10

I'd like to first off state that this is my second day using Solaris, so go easy on me.

I am trying to install rapache on a Solaris 10 server, and I am running into some frustrating roadblocks. When running configure, I see that it creates its own libtool and sets the tag (according to the configure output). That libtool is stored in a subdirectory of my pwd. When I run make, you can see below that it tries to grab the libtool from /opt/csw/apache2/share/build and I cannot for the life of me figure out why it is doing that. I copied my libtool to that directory to see if it would work, but its just telling me that I need to add the --tag option.

Here is my output
Quote:
bash-3.00# make

Compiling mod_R

/opt/csw/apache2/sbin/apxs -I/usr/local/lib/R/include -I/home/jesse/rapache-1.1.9/libapreq2/include -I/opt/csw/apache2/include -I/opt/csw/bdb44/include -I/opt/csw/include -c mod_R.c -L/usr/local/lib/R/lib -lR -L/home/jesse/rapache-1.1.9/libapreq2/library/.libs -lapreq2
/opt/csw/apache2/share/build/libtool --silent --mode=compile cc -prefer-pic -DSSL_EXPERIMENTAL -DSSL_ENGINE -xO3 -xarch=386 -xspace -xildoff -I/opt/csw/bdb44/include -I/opt/csw/include -I/opt/csw/bdb44/include -I/opt/csw/include -DSOLARIS2=8 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -mt -I/opt/csw/apache2/include -I/opt/csw/apache2/include -I/opt/csw/apache2/include -I/opt/csw/bdb44/include -I/opt/csw/include -I/usr/local/lib/R/include -I/home/jesse/rapache-1.1.9/libapreq2/include -I/opt/csw/apache2/include -I/opt/csw/bdb44/include -I/opt/csw/include -c -o mod_R.lo mod_R.c && touch mod_R.slo
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'

apxs:Error: Command failed with rc=65536
.
*** Error code 1
make: Fatal error: Command failed for target `mod_R.so'

I ran find ./ | xargs grep /opt/csw/apache2/share/build and multiple variants, trying to find where the hell in the rapache files does it reference that directory, but nothing comes up. In fact, I can't find where a ton of those extra switches are being defined either... WHERE IS THIS ALL COMING FROM?

Can someone please point me in the right direction to figuring out how to get this installed? I've been at it for 2 days now and I can feel my hair getting grayer.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Aclocal and libtool error -- macro `AM_PROG_LIBTOOL' not found in library

The software I'm trying to install uses macros with autoconf, aclocal, libtool, autoheader, and automake. What seems to be going on is an error between libtool and aclocal. From what I understand when I run aclocal, which is in /usr/bin, it searches a different directory for the libtool.m4 which is... (0 Replies)
Discussion started by: bphqk3
0 Replies

2. UNIX for Dummies Questions & Answers

Trying to install libtool from source - newbie

Hey all, I am trying to configure software (Open Cascade) and I am receiving the following error: configure.ac:24: warning: macro `AM_PROG_LIBTOOL' not found in library I know I must be missing libtool, however, when I try and grab libtool (a lot of sites have the proper tarball and... (2 Replies)
Discussion started by: bphqk3
2 Replies

3. UNIX for Dummies Questions & Answers

Creating fat files: Lipo vs libtool

I wonder what would be the difference when using: lipo -create i386/libAwesome.a armv7/libAwesome.a -o fat/libAwesome.a and libtool -static i386/libAwesome.a armv7/libAwesome.a -o fat/libAwesome.a I have the impression that lipo is more general, and it will simply stick two files from... (0 Replies)
Discussion started by: nacho4d
0 Replies

4. Programming

Execution problem with Libtool Versioning control

Hi, Is anybody familiar with libtool could explain me the following issue.? I've created a small factorial program(fact_impl.c, fact_appln.c & fact.h) in order to know about this libtool. >>> fact.h #include<stdio.h> #include<math.h> extern unsigned int fact_num(unsigned int num);... (0 Replies)
Discussion started by: Parameswaran
0 Replies

5. Programming

Question re: remember to run `libtool --finish ...`

Hi. I port/package software for AIX and often get this message during "make install" libtool: install: warning: remember to run `libtool --finish /some/directory` I have run the command manually, and not run it. I am unable to see what difference it is making. Questions: What is the... (1 Reply)
Discussion started by: MichaelFelt
1 Replies

6. Solaris

I need make backup of OS solaris 10

Hello I need to do some backup of operation system Solaris 10, but I donīt know how can I do, I would like to do this backup in tape, but I need to do this backup in both to disk and to tape. How can I do backup of solaris 10 Operation System to disk? How can I do backup of solaris 10... (1 Reply)
Discussion started by: cata
1 Replies

7. Linux

libtool compile mode,how to set include path?

Hi all I want to compile a source gt_util.c into a lo file, I use libtool gcc -g -O -c gt_util.c -I./include but it prompts me : cannot determin name of library object from 'include' how should I use the tool to compile a source to .lo file? Thanks. (0 Replies)
Discussion started by: steven_TTG
0 Replies

8. UNIX for Advanced & Expert Users

solaris 9 php-4.3.4 make issue

compiling 4.3.4 i'm running into the following error: quote: -------------------------------------------------------------------------------- Undefined first referenced symbol in file uncompress /usr/local/mysql/lib/libmysqlclient.a(my_compress.o) compress... (2 Replies)
Discussion started by: xyyz
2 Replies

9. UNIX for Advanced & Expert Users

solaris 9 openssl make problem with ld

i've seen a few posts regarding this issue, and i've tried the resolutions, but i keep running into the same problem. i'm trying to compile OpenSSL with the use of rsaref-2.0 (i'm running through this tutorial... (1 Reply)
Discussion started by: xyyz
1 Replies
Login or Register to Ask a Question