diff options
author | lioux <lioux@FreeBSD.org> | 2002-11-28 14:59:22 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-11-28 14:59:22 +0000 |
commit | 165f56ae9278d236bba259647d25c368ac033098 (patch) | |
tree | 94ca57e2edc276c02951d586be12b28d8256d643 /graphics | |
parent | 1603c7a0e079fdfaeea2baac3d31035c604116b1 (diff) | |
download | FreeBSD-ports-165f56ae9278d236bba259647d25c368ac033098.zip FreeBSD-ports-165f56ae9278d236bba259647d25c368ac033098.tar.gz |
Fix build. FreeBSD has <inttypes.h> not <sys/inttypes.h>
PR: 45823
Submitted by: Volker Stolz <vs@foldr.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/osg-devel/files/patch-ac | 2 | ||||
-rw-r--r-- | graphics/osg/files/patch-ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/graphics/osg-devel/files/patch-ac b/graphics/osg-devel/files/patch-ac index f8676ea..973f8bb 100644 --- a/graphics/osg-devel/files/patch-ac +++ b/graphics/osg-devel/files/patch-ac @@ -5,7 +5,7 @@ #define TRPGDELETEFILE(file) remove((file)) +# if defined(__FreeBSD__) -+# include <sys/inttypes.h> ++# include <inttypes.h> +typedef int64_t int64; +# else + diff --git a/graphics/osg/files/patch-ac b/graphics/osg/files/patch-ac index f8676ea..973f8bb 100644 --- a/graphics/osg/files/patch-ac +++ b/graphics/osg/files/patch-ac @@ -5,7 +5,7 @@ #define TRPGDELETEFILE(file) remove((file)) +# if defined(__FreeBSD__) -+# include <sys/inttypes.h> ++# include <inttypes.h> +typedef int64_t int64; +# else + |