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

Lorensen, William E (CRD) lorensen at crd.ge.com
Thu Jun 14 15:05:17 EDT 2001


I have made the changes on our local HP machine.

-----Original Message-----
From: Prabhu Ramachandran [mailto:prabhu at aero.iitm.ernet.in]
Sent: Thursday, June 14, 2001 11:26 AM
To: Lorensen, William E (CRD)
Cc: vtk-developers at public.kitware.com
Subject: RE: [vtk-developers] vtkParse.y seems to work okay.


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