summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorMickael Savinaud <savmickael@users.noreply.github.com>2013-03-13 15:17:35 +0000
committerMickael Savinaud <savmickael@users.noreply.github.com>2013-03-13 15:17:35 +0000
commit021e25528220d25a1d933bcc0eea1bf5abac87e9 (patch)
tree37eb43d4ed4dadb735c4b0dca71ffb1df0d1a42b /src/lib
parent92b1e038c16be50d9b67d2bb72bb473ab8d2d753 (diff)
[trunk] use the opj_ prefix for the HAVE_FSEEKO variable
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/openjp2/opj_includes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/openjp2/opj_includes.h b/src/lib/openjp2/opj_includes.h
index 4397149a..82cc9c19 100644
--- a/src/lib/openjp2/opj_includes.h
+++ b/src/lib/openjp2/opj_includes.h
@@ -56,7 +56,7 @@
ftello() only on systems with special LFS support since some systems
(e.g. FreeBSD) support a 64-bit off_t by default.
*/
-#if defined(HAVE_FSEEKO)
+#if defined(OPJ_HAVE_FSEEKO)
# define fseek fseeko
# define ftell ftello
#endif