Changeset 15:4eba224d58f9 in vscpl
- Timestamp:
- 04/06/13 08:15:50 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/vscpl.m4.in
r1 r15 7 7 8 8 AM_CONDITIONAL([TARGET_API_WIN32], test $_target_win32 -eq 0) 9 AM_CONDITIONAL([TARGET_API_WIN64], test $_target_win32 -eq 0 -a "$host_cpu" = "x86_64") 9 10 _target_win64="no" 11 if test $_target_win32 -eq 0; then 12 echo "host_alias: $host_alias" 13 case "$host_alias" in 14 x86_64*) 15 _target_win64="yes" 16 ;; 17 esac 18 fi 19 AM_CONDITIONAL([TARGET_API_WIN64], test "$_target_win64" = "yes") 20 10 21 AM_CONDITIONAL([TARGET_API_POSIX], test $_target_win32 -ne 0) 11 22 TARGET_API_POSIX=0 … … 13 24 TARGET_API_WIN64=0 14 25 if test $_target_win32 -eq 0; then 15 if test "$ host_cpu" = "x86_64"; then26 if test "$_target_win64" = "yes"; then 16 27 TARGET_API_WIN64=1 17 28 fi
Note:
See TracChangeset
for help on using the changeset viewer.