Changeset 42:84574c08b090 in xplcommon
- Timestamp:
- 01/20/13 09:05:33 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrap.sh
r40 r42 1 1 #!/bin/sh 2 3 set -e -u 2 4 3 5 scriptdir=`dirname $0` … … 6 8 7 9 libtoolize 8 aclocal -I m4 10 aclocal -I m4 -I $1 9 11 automake -a 10 12 autoconf -
configure.ac
r41 r42 9 9 AC_CONFIG_MACRO_DIR([m4]) 10 10 11 AC_CHECK_HEADERS([windows.h winsock2.h]) 12 13 test "$ac_cv_header_windows_h" = "yes" -a "$ac_cv_header_winsock2_h" = "yes" 14 _target_win32=$? 15 16 AM_CONDITIONAL([TARGET_API_WIN32], test $_target_win32 -eq 0) 17 AM_CONDITIONAL([TARGET_API_WIN64], test $_target_win32 -eq 0 -a "$host_cpu" = "x86_64") 18 AM_CONDITIONAL([TARGET_API_POSIX], test $_target_win32 -ne 0) 19 if test $_target_win32 -eq 0; then 20 if test "$host_cpu" = "x86_64"; then 21 AC_DEFINE([TARGET_API_WIN64], [1], [Define if the target is the 64-bit Win32 API.]) 22 fi 23 AC_DEFINE([TARGET_API_WIN32], [1], [Define if the target is the Win32 API.]) 24 else 25 AC_DEFINE([TARGET_API_POSIX], [1], [Define if the target is the POSIX API.]) 26 fi 11 AM_VSCPL_TARGET_API 27 12 28 13 AC_MSG_CHECKING([where to find the X-Plane Plugin SDK])
Note:
See TracChangeset
for help on using the changeset viewer.