I had the same problem in linux using g++.
I installed expat in my home directory and the configure
script coudn't find it.
I got around it by setting
CPATH
LIBRARY_PATH
LD_LIBRARY_PATH
and LD_RUN_PATH
to point in my (expat)install dir
(to test it create the simple program used by config and try
to compile it using only 'g++ test.cc -lexpat')
remember to export after set(ing) the variables (in bash)
then in that environment config and then make
papasv
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
Hi,
I am trying to install easysoap and when I ran configure I am
getting error ...couldn't find file expat.h
Any suggestion? would be greatly appreciated.
Thanks
Daxesh
Logged In: NO
I had the same problem in linux using g++.
I installed expat in my home directory and the configure
script coudn't find it.
I got around it by setting
CPATH
LIBRARY_PATH
LD_LIBRARY_PATH
and LD_RUN_PATH
to point in my (expat)install dir
(to test it create the simple program used by config and try
to compile it using only 'g++ test.cc -lexpat')
remember to export after set(ing) the variables (in bash)
then in that environment config and then make
papasv