diff options
author | erwin <erwin@FreeBSD.org> | 2003-06-24 19:13:37 +0000 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2003-06-24 19:13:37 +0000 |
commit | d7c0143292a7554682edd2a0f7f0774a6891ae66 (patch) | |
tree | 273260b2f5a02713ec8e101bf9a98b6189fc48fb /devel/mico/files | |
parent | e2120cf40d14f5169fd0b64dbaf7c6a0c9f14cac (diff) | |
download | FreeBSD-ports-d7c0143292a7554682edd2a0f7f0774a6891ae66.zip FreeBSD-ports-d7c0143292a7554682edd2a0f7f0774a6891ae66.tar.gz |
* Add detailed description about Mico features.
* Remove broken URL
* I'v broke mico on -STABLE accidentally. This patch fix it.
* remove dependency on gcc 3.2. it's uselessly;
* add multithread, SSL and full CORBA support;
* pass maintainership to submitter
PR: 53623
Submitted by: Sergey Matveychuk <sem@ciam.ru>
Diffstat (limited to 'devel/mico/files')
-rw-r--r-- | devel/mico/files/patch-as | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/devel/mico/files/patch-as b/devel/mico/files/patch-as index 57af08b..26c13c1 100644 --- a/devel/mico/files/patch-as +++ b/devel/mico/files/patch-as @@ -1,9 +1,11 @@ ---- include/mico/os-math.h.orig Mon May 26 14:55:46 2003 -+++ include/mico/os-math.h Sun Jun 22 13:16:51 2003 -@@ -275,6 +275,18 @@ +--- os-math.h.orig Mon May 26 14:55:46 2003 ++++ include/mico/os-math.h Tue Jun 24 02:20:33 2003 +@@ -275,6 +275,21 @@ }; #else // neither _WIN32 nor _POCKET_PC ++#include <sys/param.h> ++#if (defined(__FreeBSD__) && __FreeBSD_version >= 500035) +#ifndef fpclassify +#define fpclassify(x) \ + ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \ @@ -16,6 +18,7 @@ +#ifndef isnan +#define isnan(x) (fpclassify(x) == FP_NAN) +#endif ++#endif #include <unistd.h> #include <signal.h> |