Thorsten Ehm wrote: > > Hi all, > > Some times ago I noticed that choosing the octave in grace notes has a > bug but noone answered my question. This is only if the grace comes > right after a new input block, which is necessary, because i have to > change the signature right before the grace! I use pmx-2.30 (linux tgz). > Is this fixed in one of the latest versions or is there a workaround? I > also tried to convert the Fortran code to c using f2c but this failed. > Can someone provide a linux version of pmx-2.341 or tell me how to > achieve this (Probably Bernhard)? I'm able to compile version 2331 on my > SuSE Linux 7.2 but there is no script pmx in the tarball (I used an old > one from 2.20) and invoking pmxab returns:
I don't know if the grace note problem has been solved in pmx-2341 - Don's notes un bug fixes don't mention it - but I can tell you how to compile the fortran source in 2 steps with f2c and gcc: f2c pmxab.f -Nx400 -Nn802 gcc pmxab.c -lf2c -lm -o pmxab Before doing so remember to edit the 2 pairs of lines within pmxab.f containing references of getarg (in the source of pmxab-230 line 330-331 and 343-344 resp.). The 'c' (a comment token) in front of the line containing the statement 'call getarg(1,jobname)' must be moved to the front of the preceding line containing the statement 'call getarg(1,jobname,idum) ! May need to replace this w/ next line'. According to reports I've received the above described 2-step compilation shouldn't be necessary on SuSe linux'es. With these linux'es using g77 should be sufficient, i.e. gcc pmxab.f -o pmxab Bye -- Christian Mondrup, Computer Programmer Scandiatransplant, Skejby Hospital, University Hospital of Aarhus Brendstrupgaardsvej, DK 8200 Aarhus N, Denmark Phone: +45 89 49 53 01 - http://www.scandiatransplant.org _______________________________________________ TeX-music mailing list [EMAIL PROTECTED] http://sunsite.dk/mailman/listinfo/tex-music
