summaryrefslogtreecommitdiff
path: root/aconfigure.ac
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2011-03-01 05:25:27 +0000
committerLiong Sauw Ming <ming@teluu.com>2011-03-01 05:25:27 +0000
commit3b8e444b9025860b62b0813481f567a159ee55ce (patch)
tree8798d4266706d0915bb10e8f1c2b2569800286b9 /aconfigure.ac
parent79659200a8f89acdc01bd892ee77efea70f2e194 (diff)
Implementation of re #1202 (PJLIB System Information API) on iPhone OS.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3428 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'aconfigure.ac')
-rw-r--r--aconfigure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/aconfigure.ac b/aconfigure.ac
index a8c74445..6cf9614b 100644
--- a/aconfigure.ac
+++ b/aconfigure.ac
@@ -410,6 +410,11 @@ case $target in
;;
*)
ac_os_objs="$ac_os_objs file_access_unistd.o file_io_ansi.o os_core_unix.o os_error_unix.o os_time_unix.o os_timestamp_posix.o"
+ case $target in
+ arm-apple-darwin*)
+ ac_os_objs="$ac_os_objs os_info_iphone.o"
+ ;;
+ esac
# UUID
if test "$ac_has_uuid_lib" = "1" -a "$ac_has_uuid_h" = "1"; then
ac_os_objs="$ac_os_objs guid_uuid.o"
@@ -535,7 +540,7 @@ if test "$enable_sound" = "no"; then
else
case $target in
arm-apple-darwin*)
- LIBS="$LIBS -framework CoreAudio -framework CoreFoundation -framework AudioToolbox -framework CFNetwork"
+ LIBS="$LIBS -framework CoreAudio -framework CoreFoundation -framework AudioToolbox -framework CFNetwork -framework UIKit"
AC_MSG_RESULT([Checking sound device backend... AudioUnit])
;;
*darwin*)