You defintely want .x%lx and not .x%x. .x%lx is needed for working 64-bit support.
.hc On 02/28/2013 05:25 PM, András Murányi wrote: > Hi list, > > I've recently built miXed/toxy for pd-l2ork successfully but now I've run > into errors with pd-extended. The errors concern tot. > I've noticed that they are not the same version (see the diff below), > however copying the l2ork one over the extended one doesn't solve the > problem but triggers different errors. > Could there be an easy way out? > > 160c160 > < sprintf(buf, ".x%lx.c", (int)cv); > --- >> sprintf(buf, ".x%x.c", (int)cv); > 402c402 > < sprintf(buf, ".x%lx", (int)cv); > --- >> sprintf(buf, ".x%x", (int)cv); > 429c429 > < sprintf(buf, ".x%lx", (int)cv); > --- >> sprintf(buf, ".x%x", (int)cv); > 464c464 > < sprintf(buf, ".x%lx", (int)cv); > --- >> sprintf(buf, ".x%x", (int)cv); > 595c595 > < sprintf(buf, ".x%lx.c", (int)glist); > --- >> sprintf(buf, ".x%x.c", (int)glist); > > Thanks for any tips! > > PS I'm on amd64 > > András > > > > _______________________________________________ > Pd-dev mailing list > [email protected] > http://lists.puredata.info/listinfo/pd-dev > _______________________________________________ Pd-dev mailing list [email protected] http://lists.puredata.info/listinfo/pd-dev
