My commercial software is using some code source licensed under LGPL or MIT.
How and where should I mention this?
Is it mandatory?
Follow the license of use.
I don't know the terms of the MIT license by heart, so you'll have to read it.
With regard to the LGPL: is the LGPL work you are using (hereafter referred to as "foo") a library or something else? Is the work based on foo (hereafter referred to as "bar") a derivative of foo, a work that uses foo, or are you unsure (in which case provide more info on bar)?
Generally, if foo is a library, and bar uses foo as an external dependency rather than compiling whole chunks of foo into bar, bar is a work that uses foo, and you have no particular responsibilities under the LGPL.
If you foo is a library, and bar is a modification or derivative of foo, or foo (or significant portions of foo) are compiled into bar to make it count as a derivative, the LGPL applies and you must provide the proper notices, access to the source code, etc. In this case you may at your option relicense bar under the GPL instead of the LGPL if doing so makes more sense to you.
There are a bunch of other cases, but those are the two most common.
IANAL*, but I run an open-source based development shop, so I deal with this stuff daily.
--Susan
*I Am Not A Lawyer: in other words, don't take my word for it, that's what lawyers are for.
EDIT
Based on your link to the project it is the MIT license, not LGPL. Here is a wiki page on the MIT license.
So I think you need to have this notice in your software somewhere:
Copyright (c) 2009 Davide Icardi
Permission is hereby granted, free of
charge, to any person obtaining a copy
of this software and associated
documentation files (the "Software"),
to deal in the Software without
restriction, including without
limitation the rights to use, copy,
modify, merge, publish, distribute,
sublicense, and/or sell copies of the
Software, and to permit persons to
whom the Software is furnished to do
so, subject to the following
conditions:
The above copyright notice and this
permission notice shall be included in
all copies or substantial portions of
the Software.
THE SOFTWARE IS PROVIDED "AS IS",
WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.