summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2001-06-16 01:13:34 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2001-06-16 01:13:34 +0000
commit82556fd58f7271529ce90e8b321cc2efa3780a67 (patch)
tree84fe5ea6591be895591f628e768cdf05c8292f02
parentbbfd360a529f94e5a92d8891a1bef3e4adb69866 (diff)
downloadlibapr-82556fd58f7271529ce90e8b321cc2efa3780a67.tar.gz
OS/2: correct APR_SIZE_T_FMT
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61773 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 994435f8f..aa3ccffa0 100644
--- a/configure.in
+++ b/configure.in
@@ -770,9 +770,13 @@ fi
# it right. If you find that we don't get it right for your platform,
# you can override our decision below.
case "$OS" in
- *linux* | *os2_emx)
+ *linux*)
off_t_fmt='#define APR_OFF_T_FMT "ld"'
;;
+ *os2_emx)
+ off_t_fmt='#define APR_OFF_T_FMT "ld"'
+ size_t_fmt='#define APR_SIZE_T_FMT "lu"'
+ ;;
*-solaris*)
off_t_fmt='#define APR_OFF_T_FMT "ld"'
os_proc_t_fmt='#define APR_OS_PROC_T_FMT "ld"'