Update Build file for upcoming Builder release
package "mspcore"
{
- version "1.0";
+ version "1.1";
description "Mikkosoft Productions core library";
- tar_file "License.txt";
-
require "sigc++-2.0";
if "arch!=win32"
{
feature "exception_backtrace" "Generate a backtrace when an exception is thrown.";
- headers "core"
+ headers "msp/core"
{
source "source/core";
- install_headers "msp/core";
+ install true;
};
- headers "time"
+ headers "msp/time"
{
source "source/time";
- install_headers "msp/time";
+ install true;
};
- headers "debug"
+ headers "msp/debug"
{
source "source/debug";
- install_headers "msp/debug";
+ install true;
};
library "mspcore"
source "source/time";
install true;
};
+
+ tarball "@src"
+ {
+ source "License.txt";
+ };
};
--- /dev/null
+1.1
+* Time zone support
+* Some more time operations
+* Bugfixes
+ - Compatibility fixes for FreeBSD and 64-bit systems
+ - Proper handling of string arguments with spaces in GetOpt
+ - DateTime addition fixes
+ - Timer no longer drops duplicate timeouts
+
+1.0
+* First released version
+
+($Id$)