Programa Para Grabar Iso

When you are use macros supplied by the autotools like GEANY_PREFIX,GEANY_LIBDIR, GEANY_DATADIR and GEANY_LOCALEDIR be aware that thesemight not be static strings when Geany is configured with--enable-binreloc. Then these macros will be replaced by function calls(in src/prefix.h). So, don't use anything likeprintf("Prefix: " GEANY_PREFIX); but instead useprintf("Prefix: %s", GEANY_PREFIX);