The Lazarus team is glad to announce the release of Lazarus 1.2.
This release was built with fpc 2.6.2.
Here is the list of changes for Lazarus and Free Pascal:
http://wiki.lazarus.freepascal.org/Lazarus_1.2.0_release_notes
On Windows the installer now allows 2 independent installations.
http:/
It works! Thank you very much. The reason was the lacking library.
This code plays a mp3 file.
program test;
uses
sounds;
begin
PlaySound('guitar.wav');
end.
unit sounds;
interface
uses
sdl, sdl_mixer, strings;
procedure PlaySound(filename: string);
implementation
procedure PlaySound(filenam
Probably your missing the libsmpeg library. On debian it's provided by the
libsmpeg0 package.
https://packages.debian.org/wheezy/libsmpeg0
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fp
Hi all,
As I said last week in the "Announces & License question" discussion, I
have released new versions of UPasConf, GContnrs, CmdLine and data2pas. No
new functionality, just a change of license to be more compatible with Free
Pascal licence.
Again, thanks for your advices.
http://yann.merig