Changeset 39:f9c840ac038d in xplcommon
- Timestamp:
- 01/03/13 09:07:56 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r38 r39 14 14 15 15 AM_CONDITIONAL([TARGET_API_WIN32], test $_target_win32 -eq 0) 16 AM_CONDITIONAL([TARGET_API_WIN64], test $_target_win32 -eq 0 -a "$host_cpu" = "x86_64") 16 17 AM_CONDITIONAL([TARGET_API_POSIX], test $_target_win32 -ne 0) 17 18 if test $_target_win32 -eq 0; then 19 if test "$host_cpu" = "x86_64"; then 20 AC_DEFINE([TARGET_API_WIN64], [1], [Define if the target is the 64-bit Win32 API.]) 21 fi 18 22 AC_DEFINE([TARGET_API_WIN32], [1], [Define if the target is the Win32 API.]) 19 23 else -
src/xplcommon/Makefile.am
r38 r39 2 2 3 3 SUBDIRS= 4 4 5 if TARGET_API_POSIX 5 6 SUBDIRS+=posix … … 11 12 SUBDIRS+=win32 12 13 AM_CPPFLAGS=-DIBM 13 AM_LDFLAGS=@XPSDK_LDFLAGS@ -lXPLM -no-undefined 14 AM_LDFLAGS=@XPSDK_LDFLAGS@ -no-undefined 15 if TARGET_API_WIN64 16 AM_LDFLAGS+=-lXPLM_64 17 else 18 AM_LDFLAGS+=-lXPLM 19 endif 14 20 endif 15 21 -
src/xplcommon/config.h.in
r37 r39 50 50 #undef TARGET_API_WIN32 51 51 52 /* Define if the target is the 64-bit Win32 API. */ 53 #undef TARGET_API_WIN64 54 52 55 /* Version number of package */ 53 56 #undef VERSION
Note:
See TracChangeset
for help on using the changeset viewer.