From: Alan W. I. <ai...@us...> - 2003-12-28 20:25:19
|
Update of /cvsroot/plplot/plplot/bindings/f77 In directory sc8-pr-cvs1:/tmp/cvs-serv30843 Modified Files: plstubs.h Log Message: Embedded underscore fix. For g77 all names by default that originally have an underscore in them have two underscores appended rather than the usual one. hello ==> hello_ while hello_world ==> hello_world__ . Therefore, I have appended an additional underscore to the three plplot function names (pl_setcontlabelformat, pl_setcontlabelparam, and plcalc_world) that have an underscore embedded, and this seems to build and execute fine with g77, while the build fails on g77 without this fix. We may have to do something additional for some platforms/compilers to get them to work with this g77 default naming convention as well, but apparently, the reason this is the default for g77 is this is the behaviour of many Unix fortran compilers (according to info g77). |