diff options
author | arved <arved@FreeBSD.org> | 2004-07-25 20:19:41 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2004-07-25 20:19:41 +0800 |
commit | f3c93737b900e2f74bb323bad8985b80edc0ae34 (patch) | |
tree | 6c0eb9fa5ae003e59df94fe96b7d83f9cceafd39 /finance/kmymoney2/files | |
parent | de74e9dd27d1c362f44401d54c32b08e21d57a6d (diff) | |
download | freebsd-ports-gnome-f3c93737b900e2f74bb323bad8985b80edc0ae34.tar.gz freebsd-ports-gnome-f3c93737b900e2f74bb323bad8985b80edc0ae34.tar.zst freebsd-ports-gnome-f3c93737b900e2f74bb323bad8985b80edc0ae34.zip |
Add kmymoney2 a KDE personal finance assistant
PR: 68193
Submitted by: Alexander Novitsky <alecn2002@yandex.ru>
Diffstat (limited to 'finance/kmymoney2/files')
-rw-r--r-- | finance/kmymoney2/files/patch-mymoneymoney.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/finance/kmymoney2/files/patch-mymoneymoney.cpp b/finance/kmymoney2/files/patch-mymoneymoney.cpp new file mode 100644 index 000000000000..fb539d4f3175 --- /dev/null +++ b/finance/kmymoney2/files/patch-mymoneymoney.cpp @@ -0,0 +1,17 @@ +--- kmymoney2/mymoney/mymoneymoney.cpp.orig Sun Jul 25 13:53:54 2004 ++++ kmymoney2/mymoney/mymoneymoney.cpp Sun Jul 25 14:06:09 2004 +@@ -21,8 +21,13 @@ + ***************************************************************************/ + + #define __STDC_LIMIT_MACROS // force definition of min and max values ++#ifdef HAVE_STDINT_H + #include <stdint.h> +- ++#else ++#include <limits.h> ++#define INT64_MAX LLONG_MAX ++#define INT64_MIN LLONG_MIN ++#endif + // ---------------------------------------------------------------------------- + // QT Includes + |