freebsd-ports/graphics/osg/files/patch-src+osgPlugins+txp+trpage_sys.h
Maho Nakata 8c30d10666 a) Update to 0.9.4.2
b) take over maintainer ship to
   Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw>
   (from ports@)

PR:             54793
Submitted by:   Ying-Chieh Chen <yinjieh@csie.nctu.edu.tw>
2003-07-29 15:53:05 +00:00

19 lines
375 B
C

--- src/osgPlugins/txp/ORIG/trpage_sys.h Thu Apr 25 17:31:16 2002
+++ src/osgPlugins/txp/trpage_sys.h Fri May 24 19:24:39 2002
@@ -58,9 +58,16 @@
// Delete a file
#define TRPGDELETEFILE(file) remove((file))
+# if defined(__FreeBSD__)
+# include <inttypes.h>
+typedef int64_t int64;
+# else
+
#ifndef int64
typedef long long int64;
#endif
+
+# endif
#endif