Ok. Still working on the problem with expat in configure command when installing apache subversion 1.7.x
I did this to lookup the expat locations:
Wich gave this result:
So I tried to use that to change the expat option used by the FreeBSD user here http://subversion.tigris.org/issues/show_bug.cgi?id=3997
So I changed this:
To be like this:
Then I tried installing Apache Subversion 1.7.7 again using this configure command:
And then doing the command "make" there is no errors! However there now is a warning after doing "make", wich say this:
I feel I am soo close now ... But need help.
I did this to lookup the expat locations:
Code:
rpm -ql expat
rpm -ql expat-devel
Wich gave this result:
Code:
[root@server ~]# rpm -ql expat
/lib64/libexpat.so.1
/lib64/libexpat.so.1.5.2
/usr/bin/xmlwf
/usr/share/doc/expat-2.0.1
/usr/share/doc/expat-2.0.1/COPYING
/usr/share/doc/expat-2.0.1/README
/usr/share/man/man1/xmlwf.1.gz
[root@server ~]# rpm -ql expat-devel
/usr/include/expat.h
/usr/include/expat_external.h
/usr/lib64/libexpat.a
/usr/lib64/libexpat.so
/usr/share/doc/expat-devel-2.0.1
/usr/share/doc/expat-devel-2.0.1/Changes
/usr/share/doc/expat-devel-2.0.1/doc
/usr/share/doc/expat-devel-2.0.1/doc/expat.png
/usr/share/doc/expat-devel-2.0.1/doc/reference.html
/usr/share/doc/expat-devel-2.0.1/doc/style.css
/usr/share/doc/expat-devel-2.0.1/doc/valid-xhtml10.png
/usr/share/doc/expat-devel-2.0.1/doc/xmlwf.1
/usr/share/doc/expat-devel-2.0.1/doc/xmlwf.sgml
/usr/share/doc/expat-devel-2.0.1/examples
/usr/share/doc/expat-devel-2.0.1/examples/elements.c
/usr/share/doc/expat-devel-2.0.1/examples/outline.c
[root@server ~]#
So I tried to use that to change the expat option used by the FreeBSD user here http://subversion.tigris.org/issues/show_bug.cgi?id=3997
So I changed this:
Code:
--with-expat=/usr/local/include:/usr/local/lib:expat
To be like this:
Code:
--with-expat=/usr/include:/usr/lib64:expat
Then I tried installing Apache Subversion 1.7.7 again using this configure command:
Code:
./configure --prefix=/usr --with-ssl --with-expat=/usr/include:/usr/lib64:expat --with-apxs=/usr/sbin/apxs --with-apr=/usr/bin/apr-config
And then doing the command "make" there is no errors! However there now is a warning after doing "make", wich say this:
Code:
/usr/bin/ld: warning: libexpat.so.0, needed by /etc/httpd/lib/libaprutil-1.so, may conflict with libexpat.so.1
I feel I am soo close now ... But need help.