summaryrefslogtreecommitdiff
path: root/aconfigure
diff options
context:
space:
mode:
Diffstat (limited to 'aconfigure')
-rwxr-xr-xaconfigure17
1 files changed, 12 insertions, 5 deletions
diff --git a/aconfigure b/aconfigure
index 33a08f51..82592e76 100755
--- a/aconfigure
+++ b/aconfigure
@@ -5733,11 +5733,18 @@ case $target in
;;
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"
- else
- ac_os_objs="$ac_os_objs guid_simple.o"
- fi
+ case $target in
+ *android*)
+ ac_os_objs="$ac_os_objs guid_android.o"
+ ;;
+ *)
+ if test "$ac_has_uuid_lib" = "1" -a "$ac_has_uuid_h" = "1"; then
+ ac_os_objs="$ac_os_objs guid_uuid.o"
+ else
+ ac_os_objs="$ac_os_objs guid_simple.o"
+ fi
+ ;;
+ esac
;;
esac