Ignore:
Timestamp:
Mar 17, 2016 2:56:27 AM (9 years ago)
Author:
ming
Message:

Fixed #1909: GUID implementation for Android.

Thanks to Johan Lantz for the contribution.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/aconfigure

    r5247 r5264  
    57345734        esac 
    57355735        # UUID 
    5736         if test "$ac_has_uuid_lib" = "1" -a "$ac_has_uuid_h" = "1"; then 
    5737                 ac_os_objs="$ac_os_objs guid_uuid.o" 
    5738         else 
    5739                 ac_os_objs="$ac_os_objs guid_simple.o" 
    5740         fi 
     5736        case $target in 
     5737          *android*) 
     5738                ac_os_objs="$ac_os_objs guid_android.o" 
     5739                ;; 
     5740          *) 
     5741                if test "$ac_has_uuid_lib" = "1" -a "$ac_has_uuid_h" = "1"; then 
     5742                        ac_os_objs="$ac_os_objs guid_uuid.o" 
     5743                else 
     5744                        ac_os_objs="$ac_os_objs guid_simple.o" 
     5745                fi 
     5746                ;; 
     5747        esac 
    57415748        ;; 
    57425749esac 
Note: See TracChangeset for help on using the changeset viewer.