Changeset 1563
- Timestamp:
- Jul 2, 2012, 12:58:30 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r1559 r1563 44 44 AC_EGREP_CPP(yes, foo) 45 45 PKG_PROG_PKG_CONFIG() 46 47 dnl Available platforms: some of these are not public48 AM_CONDITIONAL(HAVE_PS3, test -f src/platform/ps3/ps3app.cpp)49 AM_CONDITIONAL(HAVE_XBOX, false)50 46 51 47 AM_CONDITIONAL(USE_GLEW, test "${ac_cv_my_have_glew}" != "no") … … 95 91 96 92 dnl Are we on the PS3? 93 ac_cv_my_have_ps3="no" 97 94 AC_CHECK_LIB(sysmodule_stub, cellSysmoduleLoadModule, 98 [LOL_LIBS="${LOL_LIBS} -lsysmodule_stub -lsysutil_stub -lresc_stub" 95 [ac_cv_my_have_ps3="yes" 96 LOL_LIBS="${LOL_LIBS} -lsysmodule_stub -lsysutil_stub -lresc_stub" 99 97 dnl For PSGL 100 98 AC_DEFINE(HAVE_GLES_2X, 1, Define to 1 if GLES 2.x is available) # FIXME: hack … … 122 120 [MAKE_FSELF=no]) 123 121 AM_CONDITIONAL(USE_MAKE_FSELF, test "${MAKE_FSELF}" != "no") 122 AM_CONDITIONAL(USE_PS3, test "${ac_cv_my_have_ps3}" != "no") 123 124 125 dnl Are we on the Xbox 360? 126 dnl Answer: NO! we don't know how to build for it anyway 127 AM_CONDITIONAL(USE_X360, false) 124 128 125 129 -
trunk/src/Makefile.am
r1540 r1563 96 96 endif 97 97 98 if HAVE_PS398 if USE_PS3 99 99 ps3_sources = \ 100 100 image/codec/ps3-image.cpp \ … … 104 104 endif 105 105 106 if HAVE_XBOX106 if USE_X360 107 107 xbox_sources = \ 108 108 platform/xbox/xboxapp.cpp platform/xbox/xboxapp.h \
Note: See TracChangeset
for help on using the changeset viewer.