summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xaconfigure2
-rw-r--r--aconfigure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/aconfigure b/aconfigure
index 17ed93d7..c22d5721 100755
--- a/aconfigure
+++ b/aconfigure
@@ -3832,7 +3832,7 @@ _ACEOF
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking memory alignment" >&5
$as_echo_n "checking memory alignment... " >&6; }
case $target in
- ia64-* | x86_64-* )
+ sparc64-* | ia64-* | x86_64-* )
$as_echo "#define PJ_POOL_ALIGNMENT 8" >>confdefs.h
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: 8 bytes" >&5
diff --git a/aconfigure.ac b/aconfigure.ac
index a416d95a..e61c534d 100644
--- a/aconfigure.ac
+++ b/aconfigure.ac
@@ -98,7 +98,7 @@ dnl Memory alignment detection
dnl
AC_MSG_CHECKING([memory alignment])
case $target in
- ia64-* | x86_64-* )
+ sparc64-* | ia64-* | x86_64-* )
AC_DEFINE(PJ_POOL_ALIGNMENT, 8)
AC_MSG_RESULT([8 bytes])
;;