Changeset 5150


Ignore:
Timestamp:
Aug 6, 2015 9:15:11 AM (9 years ago)
Author:
ming
Message:

Re #1870: Modified the last identifier of the build triplet from darwin to darwin_ios to distinguish between iOS and MacOS platforms.

Location:
pjproject/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r5145 r5150  
    57095709        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" 
    57105710        case $target in 
    5711           *-apple-darwin*) 
     5711          *-apple-darwin_ios*) 
    57125712                ac_os_objs="$ac_os_objs os_info_iphone.o" 
    57135713                ;; 
     
    60666066$as_echo "Checking sound device backend... OpenSL ES" >&6; } 
    60676067        ;; 
    6068   *-apple-darwin*) 
     6068  *-apple-darwin_ios*) 
    60696069        LIBS="$LIBS -framework CoreAudio -framework CoreFoundation -framework AudioToolbox -framework CFNetwork -framework UIKit" 
    60706070        ac_pjmedia_audiodev_objs="coreaudio_dev.o" 
     
    61526152        LIBS="$LIBS -llog" 
    61536153        ;; 
    6154  *-apple-darwin*) 
     6154 *-apple-darwin_ios*) 
    61556155        LIBS="$LIBS -framework UIKit" 
    61566156        ;; 
     
    62006200        ac_android_cflags="$ac_android_cflags -DPJMEDIA_VIDEO_DEV_HAS_ANDROID=1" 
    62016201        ;; 
    6202   *-apple-darwin*) 
     6202  *-apple-darwin_ios*) 
    62036203        ac_pjmedia_video=iphone_os 
    62046204 
     
    72347234 
    72357235                        case $target in 
    7236                             *-apple-darwin*) 
     7236                            *-apple-darwin_ios*) 
    72377237                                LIBYUV_LDFLAGS="-L$LIBYUV_PREFIX/out_ios/Release-iphoneos" 
    72387238                                case $ARCH in 
  • pjproject/trunk/aconfigure.ac

    r5145 r5150  
    447447        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" 
    448448        case $target in 
    449           *-apple-darwin*) 
     449          *-apple-darwin_ios*) 
    450450                ac_os_objs="$ac_os_objs os_info_iphone.o" 
    451451                ;; 
     
    624624        AC_MSG_RESULT([Checking sound device backend... OpenSL ES]) 
    625625        ;; 
    626   *-apple-darwin*) 
     626  *-apple-darwin_ios*) 
    627627        LIBS="$LIBS -framework CoreAudio -framework CoreFoundation -framework AudioToolbox -framework CFNetwork -framework UIKit" 
    628628        ac_pjmedia_audiodev_objs="coreaudio_dev.o" 
     
    696696        LIBS="$LIBS -llog" 
    697697        ;; 
    698  *-apple-darwin*) 
     698 *-apple-darwin_ios*) 
    699699        LIBS="$LIBS -framework UIKit" 
    700700        ;; 
     
    725725        ac_android_cflags="$ac_android_cflags -DPJMEDIA_VIDEO_DEV_HAS_ANDROID=1" 
    726726        ;; 
    727   *-apple-darwin*) 
     727  *-apple-darwin_ios*) 
    728728        ac_pjmedia_video=iphone_os 
    729729        AC_SUBST(ac_pjmedia_video_has_ios) 
     
    12081208                         
    12091209                        case $target in 
    1210                             *-apple-darwin*) 
     1210                            *-apple-darwin_ios*) 
    12111211                                LIBYUV_LDFLAGS="-L$LIBYUV_PREFIX/out_ios/Release-iphoneos" 
    12121212                                case $ARCH in 
  • pjproject/trunk/configure-iphone

    r5137 r5150  
    147147 
    148148# And finally invoke the configure script itself 
    149 ./aconfigure --host=${ARCH_VAL}-apple-darwin --disable-sdl $* 
     149./aconfigure --host=${ARCH_VAL}-apple-darwin_ios --disable-sdl $* 
    150150 
    151151if test "$?" = "0"; then 
  • pjproject/trunk/pjsip-apps/build/Makefile

    r5137 r5150  
    6868$(PJSUA_EXE): 
    6969        $(MAKE) -f $(RULES_MAK) APP=PJSUA app=pjsua $(subst /,$(HOST_PSEP),$(BINDIR)/$@) 
    70         @if echo "$(TARGET_NAME)" | grep -q "apple-darwin$$"; then \ 
     70        @if echo "$(TARGET_NAME)" | grep -q "apple-darwin_ios$$"; then \ 
    7171          for F in $(filter %$(TARGET_NAME).a,$(PJ_LIBXX_FILES)); do \ 
    7272            if test -f $$F; then \ 
     
    9696          echo '$(BINDIR)/$(PJSYSTEST_EXE): $(APP_LIB_FILES)' >> .pjsystest-$(TARGET_NAME).depend; \ 
    9797        fi 
    98         @if echo "$(TARGET_NAME)" | grep -q "apple-darwin$$"; then \ 
     98        @if echo "$(TARGET_NAME)" | grep -q "apple-darwin_ios$$"; then \ 
    9999          for F in $(filter %$(TARGET_NAME).a,$(PJ_LIBXX_FILES)); do \ 
    100100            tmp=`echo $${F##*/} | sed -e "s/\-$(TARGET_NAME)\.a/.a/"`; \ 
Note: See TracChangeset for help on using the changeset viewer.