summaryrefslogtreecommitdiff
path: root/aconfigure
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-01-09 15:43:02 +0000
committerBenny Prijono <bennylp@teluu.com>2008-01-09 15:43:02 +0000
commit1208d06ccd3171c70eb2dbc9b90b71cee9bd8f27 (patch)
treeb664b1b8e270599d6831aba989bcdbaa151a2228 /aconfigure
parent84d08a74f364b6c7db5cf6c63287153e3c14f660 (diff)
Ticket #441: Fix endianess detection for PortAudio
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1673 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'aconfigure')
-rwxr-xr-xaconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/aconfigure b/aconfigure
index dbf9c5cf..3224544c 100755
--- a/aconfigure
+++ b/aconfigure
@@ -9561,6 +9561,12 @@ fi
+if test "x$ac_cv_c_bigendian" = "xyes"; then
+ ac_pa_cflags="$ac_pa_cflags -DPA_BIG_ENDIAN"
+else
+ ac_pa_cflags="$ac_pa_cflags -DPA_LITTLE_ENDIAN"
+fi
+
if test "$enable_sound" = "no"; then
true;
else