[vtk-developers] vtkParse.y seems to work okay.

Prabhu Ramachandran prabhu at aero.iitm.ernet.in
Thu Jun 14 11:26:08 EDT 2001


hi,

>>>>> "LW" == "Lorensen, William E (CRD)" <lorensen at crd.ge.com> writes:

    LW> For now, I'll keep a local change to vtkParse.tab.c on the HP.

You want me to make the change?  I guess it should be easier for you
or someone there to do it since you have access to a HP machine.  But
do let me know in case you are busy and I will try to commit the
change.  I guess all that is needed is to change the following:

--- line 585 ---
#ifdef __hpux
#ifdef __cplusplus
extern "C" {
void *alloca (unsigned int);
};
#else /* not __cplusplus */
void *alloca ();
#endif /* not __cplusplus */
#endif /* __hpux */
----------

to something like:

#ifdef __hpux
#include <alloca.h>
#endif /* __hpux */

should do the job?


thanks,
prabhu




More information about the vtk-developers mailing list