You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by Mu...@GDM.DE on 2000/07/19 13:01:44 UTC

runConfigure bug: -P is ignored.


runConfigure ignores the -P argument (which is like a normal configure
--prefix=). Therefore 'make install' always tries to install in /usr/local.

Is 'make install' really supposed to be used?

Again, why doesn't Xerces-C use automake/autoconf?

Murray Cumming
murrayc@usa.net
www.murrayc.com


Re: runConfigure bug: -P is ignored.

Posted by Arundhati Bhowmick <ar...@hyperreal.org>.
"make install" is not tested throughly in xerces-c due to time and resource
constraints. Will it be possible for you to make the changes and send us?
Normally 'runConfigure' and 'gmake' are used.
Xerces-c does use autoconf and the make files are generated by configure script
that's run by runConfigure. I understand that its not fully compliant to
configure requirements and is in our to-do list. We'd appreciate if you'd
volunteer for it.
Arundhati

Murray.Cumming@GDM.DE wrote:

> runConfigure ignores the -P argument (which is like a normal configure
> --prefix=). Therefore 'make install' always tries to install in /usr/local.
>
> Is 'make install' really supposed to be used?
>
> Again, why doesn't Xerces-C use automake/autoconf?
>
> Murray Cumming
> murrayc@usa.net
> www.murrayc.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: xerces-c-dev-unsubscribe@xml.apache.org
> For additional commands, e-mail: xerces-c-dev-help@xml.apache.org


Re: runConfigure bug: -P is ignored.

Posted by Arundhati Bhowmick <ar...@hyperreal.org>.
This change is in cvs now.
Thank you
Arundhati

Todd Collins wrote:

> Murry,
>
> I ran into this problem using runConfigure as well and I made the following
> correction to the script.  Make the change at line 439.
>
> *** runConfigure~       Mon Jul 10 03:51:12 2000
> --- runConfigure        Tue Jul 11 12:29:58 2000
> ***************
> *** 436,442 ****
>   elif test $platform = "ptx"; then
>   ./configure --prefix=$XMLINSTALL
>   else
> ! ./configure
>   fi
>   echo
>   echo In future, you may also directly type the following commands to create
> the Makefiles.
> --- 436,442 ----
>   elif test $platform = "ptx"; then
>   ./configure --prefix=$XMLINSTALL
>   else
> ! ./configure $configureoptions
>   fi
>   echo
>   echo In future, you may also directly type the following commands to create
> the Makefiles.
>
> I had intended to post the correction for the script and had not done so yet.
> Vacations can be fun.
>
> As to the other question regarding the use of automake/autoconf I do not have
> the answer.  That will have to come from elsewhere.
>
> Todd.
>
> Murray.Cumming@GDM.DE wrote:
>
> > runConfigure ignores the -P argument (which is like a normal configure
> > --prefix=). Therefore 'make install' always tries to install in /usr/local.
> >
> > Is 'make install' really supposed to be used?
> >
> > Again, why doesn't Xerces-C use automake/autoconf?
> >
> > Murray Cumming
> > murrayc@usa.net
> > www.murrayc.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: xerces-c-dev-unsubscribe@xml.apache.org
> > For additional commands, e-mail: xerces-c-dev-help@xml.apache.org
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: xerces-c-dev-unsubscribe@xml.apache.org
> For additional commands, e-mail: xerces-c-dev-help@xml.apache.org


Re: runConfigure bug: -P is ignored.

Posted by Todd Collins <To...@sdrc.com>.
Murry,

I ran into this problem using runConfigure as well and I made the following
correction to the script.  Make the change at line 439.

*** runConfigure~       Mon Jul 10 03:51:12 2000
--- runConfigure        Tue Jul 11 12:29:58 2000
***************
*** 436,442 ****
  elif test $platform = "ptx"; then
  ./configure --prefix=$XMLINSTALL
  else
! ./configure
  fi
  echo
  echo In future, you may also directly type the following commands to create
the Makefiles.
--- 436,442 ----
  elif test $platform = "ptx"; then
  ./configure --prefix=$XMLINSTALL
  else
! ./configure $configureoptions
  fi
  echo
  echo In future, you may also directly type the following commands to create
the Makefiles.


I had intended to post the correction for the script and had not done so yet.
Vacations can be fun.

As to the other question regarding the use of automake/autoconf I do not have
the answer.  That will have to come from elsewhere.

Todd.

Murray.Cumming@GDM.DE wrote:

> runConfigure ignores the -P argument (which is like a normal configure
> --prefix=). Therefore 'make install' always tries to install in /usr/local.
>
> Is 'make install' really supposed to be used?
>
> Again, why doesn't Xerces-C use automake/autoconf?
>
> Murray Cumming
> murrayc@usa.net
> www.murrayc.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: xerces-c-dev-unsubscribe@xml.apache.org
> For additional commands, e-mail: xerces-c-dev-help@xml.apache.org


Problems with special charecters in SAXParser.

Posted by Javier Garcia Bertrand <jg...@uf-isf.es>.
	When you parser with SAX, if the CDATA contains a character ', the
method "characters" of DefaultHandler break the CDATA. Instead obtain one
string, give you 3!!. One until ', other with only the ' and the last
with the rest.

	What?s the problem? I?m doing anything wrong or it's a bug.

	I'm sorry for my bad english.

	Thank you.