configure.in 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(README.txt)
  3. AC_CONFIG_HEADER(include/SDL_config.h)
  4. AC_CONFIG_AUX_DIR(build-scripts)
  5. AC_CONFIG_MACRO_DIR([acinclude])
  6. dnl Save the CFLAGS to see whether they were passed in or generated
  7. orig_CFLAGS="$CFLAGS"
  8. dnl Set various version strings - taken gratefully from the GTk sources
  9. #
  10. # Making releases:
  11. # Edit include/SDL_version.h and change the version, then:
  12. # SDL_MICRO_VERSION += 1;
  13. # SDL_INTERFACE_AGE += 1;
  14. # SDL_BINARY_AGE += 1;
  15. # if any functions have been added, set SDL_INTERFACE_AGE to 0.
  16. # if backwards compatibility has been broken,
  17. # set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0.
  18. #
  19. SDL_MAJOR_VERSION=2
  20. SDL_MINOR_VERSION=0
  21. SDL_MICRO_VERSION=5
  22. SDL_INTERFACE_AGE=0
  23. SDL_BINARY_AGE=5
  24. SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
  25. AC_SUBST(SDL_MAJOR_VERSION)
  26. AC_SUBST(SDL_MINOR_VERSION)
  27. AC_SUBST(SDL_MICRO_VERSION)
  28. AC_SUBST(SDL_INTERFACE_AGE)
  29. AC_SUBST(SDL_BINARY_AGE)
  30. AC_SUBST(SDL_VERSION)
  31. # libtool versioning
  32. LT_INIT([win32-dll])
  33. LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION
  34. LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE`
  35. LT_REVISION=$SDL_INTERFACE_AGE
  36. LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE`
  37. m4_pattern_allow([^LT_])
  38. AC_SUBST(LT_RELEASE)
  39. AC_SUBST(LT_CURRENT)
  40. AC_SUBST(LT_REVISION)
  41. AC_SUBST(LT_AGE)
  42. dnl Detect the canonical build and host environments
  43. dnl AC_CANONICAL_HOST
  44. dnl Check for tools
  45. AC_PROG_LIBTOOL
  46. AC_PROG_CC
  47. AC_PROG_CXX
  48. AC_PROG_INSTALL
  49. AC_PROG_MAKE_SET
  50. AC_CHECK_TOOL(WINDRES, [windres], [:])
  51. dnl Make sure that srcdir is a full pathname
  52. case "$host" in
  53. *-*-mingw32*)
  54. # Except on msys, where make can't handle full pathnames (bug 1972)
  55. ;;
  56. *)
  57. srcdir=`cd $srcdir && pwd`
  58. ;;
  59. esac
  60. dnl Set up the compiler and linker flags
  61. INCLUDE="-I$srcdir/include"
  62. if test x$srcdir != x.; then
  63. INCLUDE="-Iinclude $INCLUDE"
  64. elif test -d .hg; then
  65. AC_MSG_ERROR([
  66. *** When building from Mercurial you should configure and build in a
  67. separate directory so you don't clobber SDL_config.h, SDL_revision.h
  68. ])
  69. fi
  70. BASE_CFLAGS=""
  71. BASE_LDFLAGS=""
  72. case "$host" in
  73. *-*-cygwin*)
  74. # We build SDL on cygwin without the UNIX emulation layer
  75. save_CFLAGS="$CFLAGS"
  76. have_no_cygwin=no
  77. AC_MSG_CHECKING(for GCC -mno-cygwin option)
  78. CFLAGS="$save_CFLAGS -mno-cygwin"
  79. AC_TRY_COMPILE([
  80. ],[
  81. ],[
  82. have_no_cygwin=yes
  83. ])
  84. AC_MSG_RESULT($have_no_cygwin)
  85. CFLAGS="$save_CFLAGS"
  86. if test x$have_no_cygwin = xyes; then
  87. BASE_CFLAGS="-mno-cygwin"
  88. BASE_LDFLAGS="-mno-cygwin"
  89. fi
  90. BASE_CFLAGS="$BASE_CFLAGS -I/usr/include/mingw"
  91. ;;
  92. esac
  93. # Uncomment the following line if you want to force SDL and applications
  94. # built with it to be compiled for a particular architecture.
  95. #AX_GCC_ARCHFLAG([no], [BASE_CFLAGS="$BASE_CFLAGS $ax_cv_gcc_archflag]")
  96. BUILD_CFLAGS="$CFLAGS $CPPFLAGS -DUSING_GENERATED_CONFIG_H"
  97. # The default optimization for SDL is -O3 (Bug #31)
  98. if test "x$orig_CFLAGS" = x; then
  99. BUILD_CFLAGS=`echo $BUILD_CFLAGS | sed 's/-O2/-O3/'`
  100. fi
  101. EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
  102. BUILD_LDFLAGS="$LDFLAGS"
  103. EXTRA_LDFLAGS="$BASE_LDFLAGS"
  104. ## These are common directories to find software packages
  105. #for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
  106. # if test -d $path/include; then
  107. # EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include"
  108. # fi
  109. # if test -d $path/lib; then
  110. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib"
  111. # fi
  112. #done
  113. SDL_CFLAGS="$BASE_CFLAGS"
  114. SDL_LIBS="-lSDL2 $BASE_LDFLAGS"
  115. CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
  116. CFLAGS="$CFLAGS $EXTRA_CFLAGS"
  117. LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
  118. dnl set this to use on systems that use lib64 instead of lib
  119. base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'`
  120. dnl Function to find a library in the compiler search path
  121. find_lib()
  122. {
  123. gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | fgrep programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
  124. gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | fgrep libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
  125. env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`]
  126. if test "$cross_compiling" = yes; then
  127. host_lib_path=""
  128. else
  129. host_lib_path="/usr/$base_libdir /usr/local/$base_libdir"
  130. fi
  131. for path in $env_lib_path $gcc_bin_path $gcc_lib_path $host_lib_path; do
  132. lib=[`ls -- $path/$1 2>/dev/null | sed -e '/\.so\..*\./d' -e 's,.*/,,' | sort | tail -1`]
  133. if test x$lib != x; then
  134. echo $lib
  135. return
  136. fi
  137. done
  138. }
  139. dnl Check for compiler characteristics
  140. AC_C_CONST
  141. AC_C_INLINE
  142. AC_C_VOLATILE
  143. dnl See whether we want assertions for debugging/sanity checking SDL itself.
  144. AC_ARG_ENABLE(assertions,
  145. AC_HELP_STRING([--enable-assertions],
  146. [Enable internal sanity checks (auto/disabled/release/enabled/paranoid) [[default=auto]]]),
  147. , enable_assertions=auto)
  148. case "$enable_assertions" in
  149. auto) # Use optimization settings to determine assertion level
  150. ;;
  151. disabled)
  152. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0, [ ])
  153. ;;
  154. release)
  155. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1, [ ])
  156. ;;
  157. enabled)
  158. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2, [ ])
  159. ;;
  160. paranoid)
  161. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3, [ ])
  162. ;;
  163. *)
  164. AC_MSG_ERROR([*** unknown assertion level. stop.])
  165. ;;
  166. esac
  167. dnl See whether we can use gcc style dependency tracking
  168. AC_ARG_ENABLE(dependency-tracking,
  169. AC_HELP_STRING([--enable-dependency-tracking],
  170. [Use gcc -MMD -MT dependency tracking [[default=yes]]]),
  171. , enable_dependency_tracking=yes)
  172. if test x$enable_dependency_tracking = xyes; then
  173. have_gcc_mmd_mt=no
  174. AC_MSG_CHECKING(for GCC -MMD -MT option)
  175. AC_TRY_COMPILE([
  176. #if !defined(__GNUC__) || __GNUC__ < 3
  177. #error Dependency tracking requires GCC 3.0 or newer
  178. #endif
  179. ],[
  180. ],[
  181. have_gcc_mmd_mt=yes
  182. ])
  183. AC_MSG_RESULT($have_gcc_mmd_mt)
  184. if test x$have_gcc_mmd_mt = xyes; then
  185. DEPENDENCY_TRACKING_OPTIONS="-MMD -MT \$@"
  186. fi
  187. fi
  188. AC_MSG_CHECKING(for linker option --no-undefined)
  189. have_no_undefined=no
  190. case "$host" in
  191. dnl Skip this on platforms where it is just simply busted.
  192. *-*-openbsd*)
  193. ;;
  194. *)
  195. save_LDFLAGS="$LDFLAGS"
  196. LDFLAGS="$LDFLAGS -Wl,--no-undefined"
  197. AC_TRY_LINK([
  198. ],[
  199. ],[
  200. have_no_undefined=yes
  201. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--no-undefined"
  202. ])
  203. LDFLAGS="$save_LDFLAGS"
  204. ;;
  205. esac
  206. AC_MSG_RESULT($have_no_undefined)
  207. dnl See whether we are allowed to use the system C library
  208. AC_ARG_ENABLE(libc,
  209. AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
  210. , enable_libc=yes)
  211. if test x$enable_libc = xyes; then
  212. AC_DEFINE(HAVE_LIBC, 1, [ ])
  213. dnl Check for C library headers
  214. AC_HEADER_STDC
  215. AC_CHECK_HEADERS(sys/types.h stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h strings.h inttypes.h stdint.h ctype.h math.h iconv.h signal.h)
  216. dnl Check for typedefs, structures, etc.
  217. AC_TYPE_SIZE_T
  218. dnl Check for defines
  219. AC_CHECK_DEFINE(M_PI, math.h)
  220. dnl Checks for library functions.
  221. case "$host" in
  222. *-*-cygwin* | *-*-mingw32*)
  223. ;;
  224. *)
  225. AC_FUNC_ALLOCA
  226. ;;
  227. esac
  228. AC_FUNC_MEMCMP
  229. if test x$ac_cv_func_memcmp_working = xyes; then
  230. AC_DEFINE(HAVE_MEMCMP, 1, [ ])
  231. fi
  232. AC_FUNC_STRTOD
  233. if test x$ac_cv_func_strtod = xyes; then
  234. AC_DEFINE(HAVE_STRTOD, 1, [ ])
  235. fi
  236. AC_CHECK_FUNC(mprotect,
  237. AC_TRY_COMPILE([
  238. #include <sys/types.h>
  239. #include <sys/mman.h>
  240. ],[
  241. ],[
  242. AC_DEFINE(HAVE_MPROTECT, 1, [ ])
  243. ]),
  244. )
  245. AC_CHECK_FUNCS(malloc calloc realloc free getenv setenv putenv unsetenv qsort abs bcopy memset memcpy memmove strlen strlcpy strlcat strdup _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp vsscanf vsnprintf fseeko fseeko64 sigaction setjmp nanosleep sysconf sysctlbyname getauxval)
  246. AC_CHECK_LIB(m, pow, [LIBS="$LIBS -lm"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
  247. AC_CHECK_FUNCS(atan atan2 acos asin ceil copysign cos cosf fabs floor log pow scalbn sin sinf sqrt sqrtf tan tanf)
  248. AC_CHECK_LIB(iconv, iconv_open, [LIBS="$LIBS -liconv"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
  249. AC_CHECK_FUNCS(iconv)
  250. AC_CHECK_MEMBER(struct sigaction.sa_sigaction,[AC_DEFINE([HAVE_SA_SIGACTION], 1, [Description])], ,[#include <signal.h>])
  251. fi
  252. dnl AC_CHECK_SIZEOF(void*)
  253. dnl See whether we can use gcc atomic operations on this architecture
  254. AC_ARG_ENABLE(gcc-atomics,
  255. AC_HELP_STRING([--enable-gcc-atomics],
  256. [Use gcc builtin atomics [[default=yes]]]),
  257. , enable_gcc_atomics=yes)
  258. if test x$enable_gcc_atomics = xyes; then
  259. have_gcc_atomics=no
  260. AC_MSG_CHECKING(for GCC builtin atomic operations)
  261. AC_TRY_LINK([
  262. ],[
  263. int a;
  264. void *x, *y, *z;
  265. __sync_lock_test_and_set(&a, 4);
  266. __sync_lock_test_and_set(&x, y);
  267. __sync_fetch_and_add(&a, 1);
  268. __sync_bool_compare_and_swap(&a, 5, 10);
  269. __sync_bool_compare_and_swap(&x, y, z);
  270. ],[
  271. have_gcc_atomics=yes
  272. ])
  273. AC_MSG_RESULT($have_gcc_atomics)
  274. if test x$have_gcc_atomics = xyes; then
  275. AC_DEFINE(HAVE_GCC_ATOMICS, 1, [ ])
  276. else
  277. # See if we have the minimum operation needed for GCC atomics
  278. AC_TRY_LINK([
  279. ],[
  280. int a;
  281. __sync_lock_test_and_set(&a, 1);
  282. __sync_lock_release(&a);
  283. ],[
  284. have_gcc_sync_lock_test_and_set=yes
  285. ])
  286. if test x$have_gcc_sync_lock_test_and_set = xyes; then
  287. AC_DEFINE(HAVE_GCC_SYNC_LOCK_TEST_AND_SET, 1, [ ])
  288. fi
  289. fi
  290. fi
  291. # Standard C sources
  292. SOURCES="$SOURCES $srcdir/src/*.c"
  293. SOURCES="$SOURCES $srcdir/src/atomic/*.c"
  294. SOURCES="$SOURCES $srcdir/src/audio/*.c"
  295. SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
  296. SOURCES="$SOURCES $srcdir/src/dynapi/*.c"
  297. SOURCES="$SOURCES $srcdir/src/events/*.c"
  298. SOURCES="$SOURCES $srcdir/src/file/*.c"
  299. SOURCES="$SOURCES $srcdir/src/haptic/*.c"
  300. SOURCES="$SOURCES $srcdir/src/joystick/*.c"
  301. SOURCES="$SOURCES $srcdir/src/libm/*.c"
  302. SOURCES="$SOURCES $srcdir/src/power/*.c"
  303. #SOURCES="$SOURCES $srcdir/src/filesystem/*.c"
  304. SOURCES="$SOURCES $srcdir/src/render/*.c"
  305. SOURCES="$SOURCES $srcdir/src/render/*/*.c"
  306. SOURCES="$SOURCES $srcdir/src/stdlib/*.c"
  307. SOURCES="$SOURCES $srcdir/src/thread/*.c"
  308. SOURCES="$SOURCES $srcdir/src/timer/*.c"
  309. SOURCES="$SOURCES $srcdir/src/video/*.c"
  310. dnl Enable/disable various subsystems of the SDL library
  311. AC_ARG_ENABLE(atomic,
  312. AC_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [[default=yes]]]),
  313. , enable_atomic=yes)
  314. if test x$enable_atomic != xyes; then
  315. AC_DEFINE(SDL_ATOMIC_DISABLED, 1, [ ])
  316. else
  317. SUMMARY_modules="${SUMMARY_modules} atomic"
  318. fi
  319. AC_ARG_ENABLE(audio,
  320. AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
  321. , enable_audio=yes)
  322. if test x$enable_audio != xyes; then
  323. AC_DEFINE(SDL_AUDIO_DISABLED, 1, [ ])
  324. else
  325. SUMMARY_modules="${SUMMARY_modules} audio"
  326. fi
  327. AC_ARG_ENABLE(video,
  328. AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
  329. , enable_video=yes)
  330. if test x$enable_video != xyes; then
  331. AC_DEFINE(SDL_VIDEO_DISABLED, 1, [ ])
  332. else
  333. SUMMARY_modules="${SUMMARY_modules} video"
  334. fi
  335. AC_ARG_ENABLE(render,
  336. AC_HELP_STRING([--enable-render], [Enable the render subsystem [[default=yes]]]),
  337. , enable_render=yes)
  338. if test x$enable_render != xyes; then
  339. AC_DEFINE(SDL_RENDER_DISABLED, 1, [ ])
  340. else
  341. SUMMARY_modules="${SUMMARY_modules} render"
  342. fi
  343. AC_ARG_ENABLE(events,
  344. AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
  345. , enable_events=yes)
  346. if test x$enable_events != xyes; then
  347. AC_DEFINE(SDL_EVENTS_DISABLED, 1, [ ])
  348. else
  349. SUMMARY_modules="${SUMMARY_modules} events"
  350. fi
  351. AC_ARG_ENABLE(joystick,
  352. AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
  353. , enable_joystick=yes)
  354. if test x$enable_joystick != xyes; then
  355. AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ])
  356. else
  357. SUMMARY_modules="${SUMMARY_modules} joystick"
  358. fi
  359. AC_ARG_ENABLE(haptic,
  360. AC_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]),
  361. , enable_haptic=yes)
  362. if test x$enable_haptic != xyes; then
  363. AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ])
  364. else
  365. SUMMARY_modules="${SUMMARY_modules} haptic"
  366. fi
  367. AC_ARG_ENABLE(power,
  368. AC_HELP_STRING([--enable-power], [Enable the power subsystem [[default=yes]]]),
  369. , enable_power=yes)
  370. if test x$enable_power != xyes; then
  371. AC_DEFINE(SDL_POWER_DISABLED, 1, [ ])
  372. else
  373. SUMMARY_modules="${SUMMARY_modules} power"
  374. fi
  375. AC_ARG_ENABLE(filesystem,
  376. AC_HELP_STRING([--enable-filesystem], [Enable the filesystem subsystem [[default=yes]]]),
  377. , enable_filesystem=yes)
  378. if test x$enable_filesystem != xyes; then
  379. AC_DEFINE(SDL_FILESYSTEM_DISABLED, 1, [ ])
  380. else
  381. SUMMARY_modules="${SUMMARY_modules} filesystem"
  382. fi
  383. AC_ARG_ENABLE(threads,
  384. AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
  385. , enable_threads=yes)
  386. if test x$enable_threads != xyes; then
  387. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  388. else
  389. SUMMARY_modules="${SUMMARY_modules} threads"
  390. fi
  391. AC_ARG_ENABLE(timers,
  392. AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
  393. , enable_timers=yes)
  394. if test x$enable_timers != xyes; then
  395. AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ])
  396. else
  397. SUMMARY_modules="${SUMMARY_modules} timers"
  398. fi
  399. AC_ARG_ENABLE(file,
  400. AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
  401. , enable_file=yes)
  402. if test x$enable_file != xyes; then
  403. AC_DEFINE(SDL_FILE_DISABLED, 1, [ ])
  404. else
  405. SUMMARY_modules="${SUMMARY_modules} file"
  406. fi
  407. AC_ARG_ENABLE(loadso,
  408. AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
  409. , enable_loadso=yes)
  410. if test x$enable_loadso != xyes; then
  411. AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ])
  412. else
  413. SUMMARY_modules="${SUMMARY_modules} loadso"
  414. fi
  415. AC_ARG_ENABLE(cpuinfo,
  416. AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
  417. , enable_cpuinfo=yes)
  418. if test x$enable_cpuinfo != xyes; then
  419. AC_DEFINE(SDL_CPUINFO_DISABLED, 1, [ ])
  420. else
  421. SUMMARY_modules="${SUMMARY_modules} cpuinfo"
  422. fi
  423. AC_ARG_ENABLE(assembly,
  424. AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
  425. , enable_assembly=yes)
  426. if test x$enable_assembly = xyes; then
  427. SUMMARY_modules="${SUMMARY_modules} assembly"
  428. AC_DEFINE(SDL_ASSEMBLY_ROUTINES, 1, [ ])
  429. # Make sure that we don't generate floating point code that would
  430. # cause illegal instruction exceptions on older processors
  431. case "$host" in
  432. *-*-darwin*)
  433. # Don't need to worry about Apple hardware, it's all SSE capable
  434. default_ssemath=yes
  435. ;;
  436. *64-*-*)
  437. # x86 64-bit architectures all have SSE instructions
  438. default_ssemath=yes
  439. ;;
  440. *)
  441. default_ssemath=no
  442. ;;
  443. esac
  444. AC_ARG_ENABLE(ssemath,
  445. AC_HELP_STRING([--enable-ssemath], [Allow GCC to use SSE floating point math [[default=maybe]]]),
  446. , enable_ssemath=$default_ssemath)
  447. if test x$enable_ssemath = xno; then
  448. if test x$have_gcc_sse = xyes -o x$have_gcc_sse2 = xyes -o x$have_gcc_sse3 = xyes; then
  449. EXTRA_CFLAGS="$EXTRA_CFLAGS -mfpmath=387"
  450. fi
  451. fi
  452. dnl Check for various instruction support
  453. AC_ARG_ENABLE(mmx,
  454. AC_HELP_STRING([--enable-mmx], [use MMX assembly routines [[default=yes]]]),
  455. , enable_mmx=yes)
  456. if test x$enable_mmx = xyes; then
  457. save_CFLAGS="$CFLAGS"
  458. have_gcc_mmx=no
  459. AC_MSG_CHECKING(for GCC -mmmx option)
  460. mmx_CFLAGS="-mmmx"
  461. CFLAGS="$save_CFLAGS $mmx_CFLAGS"
  462. AC_TRY_COMPILE([
  463. #ifdef __MINGW32__
  464. #include <_mingw.h>
  465. #ifdef __MINGW64_VERSION_MAJOR
  466. #include <intrin.h>
  467. #else
  468. #include <mmintrin.h>
  469. #endif
  470. #else
  471. #include <mmintrin.h>
  472. #endif
  473. #ifndef __MMX__
  474. #error Assembler CPP flag not enabled
  475. #endif
  476. ],[
  477. ],[
  478. have_gcc_mmx=yes
  479. ])
  480. AC_MSG_RESULT($have_gcc_mmx)
  481. CFLAGS="$save_CFLAGS"
  482. if test x$have_gcc_mmx = xyes; then
  483. EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
  484. SUMMARY_math="${SUMMARY_math} mmx"
  485. fi
  486. fi
  487. AC_ARG_ENABLE(3dnow,
  488. AC_HELP_STRING([--enable-3dnow], [use 3DNow! assembly routines [[default=yes]]]),
  489. , enable_3dnow=yes)
  490. if test x$enable_3dnow = xyes; then
  491. save_CFLAGS="$CFLAGS"
  492. have_gcc_3dnow=no
  493. AC_MSG_CHECKING(for GCC -m3dnow option)
  494. amd3dnow_CFLAGS="-m3dnow"
  495. CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS"
  496. AC_TRY_LINK([
  497. #include <mm3dnow.h>
  498. #ifndef __3dNOW__
  499. #error Assembler CPP flag not enabled
  500. #endif
  501. ],[
  502. void *p = 0;
  503. _m_prefetch(p);
  504. ],[
  505. have_gcc_3dnow=yes
  506. ])
  507. AC_MSG_RESULT($have_gcc_3dnow)
  508. CFLAGS="$save_CFLAGS"
  509. if test x$have_gcc_3dnow = xyes; then
  510. EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
  511. SUMMARY_math="${SUMMARY_math} 3dnow"
  512. fi
  513. fi
  514. AC_ARG_ENABLE(sse,
  515. AC_HELP_STRING([--enable-sse], [use SSE assembly routines [[default=yes]]]),
  516. , enable_sse=yes)
  517. if test x$enable_sse = xyes; then
  518. save_CFLAGS="$CFLAGS"
  519. have_gcc_sse=no
  520. AC_MSG_CHECKING(for GCC -msse option)
  521. sse_CFLAGS="-msse"
  522. CFLAGS="$save_CFLAGS $sse_CFLAGS"
  523. AC_TRY_COMPILE([
  524. #ifdef __MINGW32__
  525. #include <_mingw.h>
  526. #ifdef __MINGW64_VERSION_MAJOR
  527. #include <intrin.h>
  528. #else
  529. #include <xmmintrin.h>
  530. #endif
  531. #else
  532. #include <xmmintrin.h>
  533. #endif
  534. #ifndef __SSE__
  535. #error Assembler CPP flag not enabled
  536. #endif
  537. ],[
  538. ],[
  539. have_gcc_sse=yes
  540. ])
  541. AC_MSG_RESULT($have_gcc_sse)
  542. CFLAGS="$save_CFLAGS"
  543. if test x$have_gcc_sse = xyes; then
  544. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
  545. SUMMARY_math="${SUMMARY_math} sse"
  546. fi
  547. fi
  548. AC_ARG_ENABLE(sse2,
  549. AC_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=maybe]]]),
  550. , enable_sse2=$default_ssemath)
  551. if test x$enable_sse2 = xyes; then
  552. save_CFLAGS="$CFLAGS"
  553. have_gcc_sse2=no
  554. AC_MSG_CHECKING(for GCC -msse2 option)
  555. sse2_CFLAGS="-msse2"
  556. CFLAGS="$save_CFLAGS $sse2_CFLAGS"
  557. AC_TRY_COMPILE([
  558. #ifdef __MINGW32__
  559. #include <_mingw.h>
  560. #ifdef __MINGW64_VERSION_MAJOR
  561. #include <intrin.h>
  562. #else
  563. #include <emmintrin.h>
  564. #endif
  565. #else
  566. #include <emmintrin.h>
  567. #endif
  568. #ifndef __SSE2__
  569. #error Assembler CPP flag not enabled
  570. #endif
  571. ],[
  572. ],[
  573. have_gcc_sse2=yes
  574. ])
  575. AC_MSG_RESULT($have_gcc_sse2)
  576. CFLAGS="$save_CFLAGS"
  577. if test x$have_gcc_sse2 = xyes; then
  578. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
  579. SUMMARY_math="${SUMMARY_math} sse2"
  580. fi
  581. fi
  582. AC_ARG_ENABLE(sse3,
  583. AC_HELP_STRING([--enable-sse3], [use SSE3 assembly routines [[default=maybe]]]),
  584. , enable_sse3=$default_ssemath)
  585. if test x$enable_sse3 = xyes; then
  586. save_CFLAGS="$CFLAGS"
  587. have_gcc_sse3=no
  588. AC_MSG_CHECKING(for GCC -msse3 option)
  589. sse3_CFLAGS="-msse3"
  590. CFLAGS="$save_CFLAGS $sse3_CFLAGS"
  591. AC_TRY_COMPILE([
  592. #ifdef __MINGW32__
  593. #include <_mingw.h>
  594. #ifdef __MINGW64_VERSION_MAJOR
  595. #include <intrin.h>
  596. #else
  597. #include <pmmintrin.h>
  598. #endif
  599. #else
  600. #include <pmmintrin.h>
  601. #endif
  602. #ifndef __SSE2__
  603. #error Assembler CPP flag not enabled
  604. #endif
  605. ],[
  606. ],[
  607. have_gcc_sse3=yes
  608. ])
  609. AC_MSG_RESULT($have_gcc_sse3)
  610. CFLAGS="$save_CFLAGS"
  611. if test x$have_gcc_sse3 = xyes; then
  612. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse3_CFLAGS"
  613. SUMMARY_math="${SUMMARY_math} sse3"
  614. fi
  615. fi
  616. AC_ARG_ENABLE(altivec,
  617. AC_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes]]]),
  618. , enable_altivec=yes)
  619. if test x$enable_altivec = xyes; then
  620. save_CFLAGS="$CFLAGS"
  621. have_gcc_altivec=no
  622. have_altivec_h_hdr=no
  623. altivec_CFLAGS="-maltivec"
  624. CFLAGS="$save_CFLAGS $altivec_CFLAGS"
  625. AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option)
  626. AC_TRY_COMPILE([
  627. #include <altivec.h>
  628. vector unsigned int vzero() {
  629. return vec_splat_u32(0);
  630. }
  631. ],[
  632. ],[
  633. have_gcc_altivec=yes
  634. have_altivec_h_hdr=yes
  635. ])
  636. AC_MSG_RESULT($have_gcc_altivec)
  637. if test x$have_gcc_altivec = xno; then
  638. AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
  639. AC_TRY_COMPILE([
  640. vector unsigned int vzero() {
  641. return vec_splat_u32(0);
  642. }
  643. ],[
  644. ],[
  645. have_gcc_altivec=yes
  646. ])
  647. AC_MSG_RESULT($have_gcc_altivec)
  648. fi
  649. if test x$have_gcc_altivec = xno; then
  650. AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
  651. altivec_CFLAGS="-faltivec"
  652. CFLAGS="$save_CFLAGS $altivec_CFLAGS"
  653. AC_TRY_COMPILE([
  654. #include <altivec.h>
  655. vector unsigned int vzero() {
  656. return vec_splat_u32(0);
  657. }
  658. ],[
  659. ],[
  660. have_gcc_altivec=yes
  661. have_altivec_h_hdr=yes
  662. ])
  663. AC_MSG_RESULT($have_gcc_altivec)
  664. fi
  665. if test x$have_gcc_altivec = xno; then
  666. AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
  667. AC_TRY_COMPILE([
  668. vector unsigned int vzero() {
  669. return vec_splat_u32(0);
  670. }
  671. ],[
  672. ],[
  673. have_gcc_altivec=yes
  674. ])
  675. AC_MSG_RESULT($have_gcc_altivec)
  676. fi
  677. CFLAGS="$save_CFLAGS"
  678. if test x$have_gcc_altivec = xyes; then
  679. AC_DEFINE(SDL_ALTIVEC_BLITTERS, 1, [ ])
  680. if test x$have_altivec_h_hdr = xyes; then
  681. AC_DEFINE(HAVE_ALTIVEC_H, 1, [ ])
  682. fi
  683. EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
  684. SUMMARY_math="${SUMMARY_math} altivec"
  685. fi
  686. fi
  687. fi
  688. dnl See if the OSS audio interface is supported
  689. CheckOSS()
  690. {
  691. AC_ARG_ENABLE(oss,
  692. AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=maybe]]]),
  693. , enable_oss=maybe)
  694. # OpenBSD "has" OSS, but it's not really for app use. They want you to
  695. # use sndio instead. So on there, we default to disabled. You can force
  696. # it on if you really want, though.
  697. if test x$enable_oss = xmaybe; then
  698. enable_oss=yes
  699. case "$host" in
  700. *-*-openbsd*)
  701. enable_oss=no;;
  702. esac
  703. fi
  704. if test x$enable_audio = xyes -a x$enable_oss = xyes; then
  705. AC_MSG_CHECKING(for OSS audio support)
  706. have_oss=no
  707. if test x$have_oss != xyes; then
  708. AC_TRY_COMPILE([
  709. #include <sys/soundcard.h>
  710. ],[
  711. int arg = SNDCTL_DSP_SETFRAGMENT;
  712. ],[
  713. have_oss=yes
  714. ])
  715. fi
  716. if test x$have_oss != xyes; then
  717. AC_TRY_COMPILE([
  718. #include <soundcard.h>
  719. ],[
  720. int arg = SNDCTL_DSP_SETFRAGMENT;
  721. ],[
  722. have_oss=yes
  723. AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H, 1, [ ])
  724. ])
  725. fi
  726. AC_MSG_RESULT($have_oss)
  727. if test x$have_oss = xyes; then
  728. SUMMARY_audio="${SUMMARY_audio} oss"
  729. AC_DEFINE(SDL_AUDIO_DRIVER_OSS, 1, [ ])
  730. SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
  731. have_audio=yes
  732. # We may need to link with ossaudio emulation library
  733. case "$host" in
  734. *-*-openbsd*|*-*-netbsd*)
  735. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
  736. esac
  737. fi
  738. fi
  739. }
  740. dnl See if the ALSA audio interface is supported
  741. CheckALSA()
  742. {
  743. AC_ARG_ENABLE(alsa,
  744. AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
  745. , enable_alsa=yes)
  746. if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
  747. AM_PATH_ALSA(1.0.11, have_alsa=yes, have_alsa=no)
  748. # Restore all flags from before the ALSA detection runs
  749. CFLAGS="$alsa_save_CFLAGS"
  750. LDFLAGS="$alsa_save_LDFLAGS"
  751. LIBS="$alsa_save_LIBS"
  752. if test x$have_alsa = xyes; then
  753. AC_ARG_ENABLE(alsa-shared,
  754. AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
  755. , enable_alsa_shared=yes)
  756. alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  757. AC_DEFINE(SDL_AUDIO_DRIVER_ALSA, 1, [ ])
  758. SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
  759. EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
  760. if test x$have_loadso != xyes && \
  761. test x$enable_alsa_shared = xyes; then
  762. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
  763. fi
  764. if test x$have_loadso = xyes && \
  765. test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
  766. echo "-- dynamic libasound -> $alsa_lib"
  767. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib", [ ])
  768. SUMMARY_audio="${SUMMARY_audio} alsa(dynamic)"
  769. else
  770. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
  771. SUMMARY_audio="${SUMMARY_audio} alsa"
  772. fi
  773. have_audio=yes
  774. fi
  775. fi
  776. }
  777. dnl Find JACK Audio
  778. CheckJACK()
  779. {
  780. AC_ARG_ENABLE(jack,
  781. AC_HELP_STRING([--enable-jack], [use JACK audio [[default=yes]]]),
  782. , enable_jack=yes)
  783. if test x$enable_audio = xyes -a x$enable_jack = xyes; then
  784. audio_jack=no
  785. JACK_REQUIRED_VERSION=0.125
  786. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  787. AC_MSG_CHECKING(for JACK $JACK_REQUIRED_VERSION support)
  788. if test x$PKG_CONFIG != xno; then
  789. if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $JACK_REQUIRED_VERSION jack; then
  790. JACK_CFLAGS=`$PKG_CONFIG --cflags jack`
  791. JACK_LIBS=`$PKG_CONFIG --libs jack`
  792. audio_jack=yes
  793. fi
  794. fi
  795. AC_MSG_RESULT($audio_jack)
  796. if test x$audio_jack = xyes; then
  797. AC_ARG_ENABLE(jack-shared,
  798. AC_HELP_STRING([--enable-jack-shared], [dynamically load JACK audio support [[default=yes]]]),
  799. , enable_jack_shared=yes)
  800. jack_lib=[`find_lib "libjack.so.*" "$JACK_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  801. AC_DEFINE(SDL_AUDIO_DRIVER_JACK, 1, [ ])
  802. SOURCES="$SOURCES $srcdir/src/audio/jack/*.c"
  803. EXTRA_CFLAGS="$EXTRA_CFLAGS $JACK_CFLAGS"
  804. if test x$have_loadso != xyes && \
  805. test x$enable_jack_shared = xyes; then
  806. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic JACK audio loading])
  807. fi
  808. if test x$have_loadso = xyes && \
  809. test x$enable_jack_shared = xyes && test x$jack_lib != x; then
  810. echo "-- dynamic libjack -> $jack_lib"
  811. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_JACK_DYNAMIC, "$jack_lib", [ ])
  812. SUMMARY_audio="${SUMMARY_audio} jack(dynamic)"
  813. case "$host" in
  814. # On Solaris, jack must be linked deferred explicitly
  815. # to prevent undefined symbol failures.
  816. *-*-solaris*)
  817. JACK_LIBS=`echo $JACK_LIBS | sed 's/\-l/-Wl,-l/g'`
  818. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-zdeferred $JACK_LIBS -Wl,-znodeferred"
  819. esac
  820. else
  821. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $JACK_LIBS"
  822. SUMMARY_audio="${SUMMARY_audio} jack"
  823. fi
  824. have_audio=yes
  825. fi
  826. fi
  827. }
  828. dnl Find the ESD includes and libraries
  829. CheckESD()
  830. {
  831. AC_ARG_ENABLE(esd,
  832. AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
  833. , enable_esd=yes)
  834. if test x$enable_audio = xyes -a x$enable_esd = xyes; then
  835. AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
  836. if test x$have_esd = xyes; then
  837. AC_ARG_ENABLE(esd-shared,
  838. AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
  839. , enable_esd_shared=yes)
  840. esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  841. AC_DEFINE(SDL_AUDIO_DRIVER_ESD, 1, [ ])
  842. SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
  843. EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
  844. if test x$have_loadso != xyes && \
  845. test x$enable_esd_shared = xyes; then
  846. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
  847. fi
  848. if test x$have_loadso = xyes && \
  849. test x$enable_esd_shared = xyes && test x$esd_lib != x; then
  850. echo "-- dynamic libesd -> $esd_lib"
  851. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib", [ ])
  852. SUMMARY_audio="${SUMMARY_audio} esd(dynamic)"
  853. else
  854. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
  855. SUMMARY_audio="${SUMMARY_audio} esd"
  856. fi
  857. have_audio=yes
  858. fi
  859. fi
  860. }
  861. dnl Find PulseAudio
  862. CheckPulseAudio()
  863. {
  864. AC_ARG_ENABLE(pulseaudio,
  865. AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]),
  866. , enable_pulseaudio=yes)
  867. if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
  868. audio_pulseaudio=no
  869. PULSEAUDIO_REQUIRED_VERSION=0.9
  870. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  871. AC_MSG_CHECKING(for PulseAudio $PULSEAUDIO_REQUIRED_VERSION support)
  872. if test x$PKG_CONFIG != xno; then
  873. if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSEAUDIO_REQUIRED_VERSION libpulse-simple; then
  874. PULSEAUDIO_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple`
  875. PULSEAUDIO_LIBS=`$PKG_CONFIG --libs libpulse-simple`
  876. audio_pulseaudio=yes
  877. fi
  878. fi
  879. AC_MSG_RESULT($audio_pulseaudio)
  880. if test x$audio_pulseaudio = xyes; then
  881. AC_ARG_ENABLE(pulseaudio-shared,
  882. AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]),
  883. , enable_pulseaudio_shared=yes)
  884. pulseaudio_lib=[`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  885. AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO, 1, [ ])
  886. SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c"
  887. EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS"
  888. if test x$have_loadso != xyes && \
  889. test x$enable_pulseaudio_shared = xyes; then
  890. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
  891. fi
  892. if test x$have_loadso = xyes && \
  893. test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then
  894. echo "-- dynamic libpulse-simple -> $pulseaudio_lib"
  895. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib", [ ])
  896. SUMMARY_audio="${SUMMARY_audio} pulse(dynamic)"
  897. case "$host" in
  898. # On Solaris, pulseaudio must be linked deferred explicitly
  899. # to prevent undefined symbol failures.
  900. *-*-solaris*)
  901. PULSEAUDIO_LIBS=`echo $PULSEAUDIO_LIBS | sed 's/\-l/-Wl,-l/g'`
  902. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-zdeferred $PULSEAUDIO_LIBS -Wl,-znodeferred"
  903. esac
  904. else
  905. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS"
  906. SUMMARY_audio="${SUMMARY_audio} pulse"
  907. fi
  908. have_audio=yes
  909. fi
  910. fi
  911. }
  912. CheckARTSC()
  913. {
  914. AC_ARG_ENABLE(arts,
  915. AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
  916. , enable_arts=yes)
  917. if test x$enable_audio = xyes -a x$enable_arts = xyes; then
  918. AC_PATH_PROG(ARTSCONFIG, artsc-config)
  919. if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
  920. : # arts isn't installed
  921. else
  922. ARTS_CFLAGS=`$ARTSCONFIG --cflags`
  923. ARTS_LIBS=`$ARTSCONFIG --libs`
  924. AC_MSG_CHECKING(for aRts development environment)
  925. audio_arts=no
  926. save_CFLAGS="$CFLAGS"
  927. CFLAGS="$CFLAGS $ARTS_CFLAGS"
  928. AC_TRY_COMPILE([
  929. #include <artsc.h>
  930. ],[
  931. arts_stream_t stream;
  932. ],[
  933. audio_arts=yes
  934. ])
  935. CFLAGS="$save_CFLAGS"
  936. AC_MSG_RESULT($audio_arts)
  937. if test x$audio_arts = xyes; then
  938. AC_ARG_ENABLE(arts-shared,
  939. AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
  940. , enable_arts_shared=yes)
  941. arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  942. AC_DEFINE(SDL_AUDIO_DRIVER_ARTS, 1, [ ])
  943. SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
  944. EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
  945. if test x$have_loadso != xyes && \
  946. test x$enable_arts_shared = xyes; then
  947. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
  948. fi
  949. if test x$have_loadso = xyes && \
  950. test x$enable_arts_shared = xyes && test x$arts_lib != x; then
  951. echo "-- dynamic libartsc -> $arts_lib"
  952. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib", [ ])
  953. SUMMARY_audio="${SUMMARY_audio} arts(dynamic)"
  954. else
  955. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
  956. SUMMARY_audio="${SUMMARY_audio} arts"
  957. fi
  958. have_audio=yes
  959. fi
  960. fi
  961. fi
  962. }
  963. dnl See if the NAS audio interface is supported
  964. CheckNAS()
  965. {
  966. AC_ARG_ENABLE(nas,
  967. AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
  968. , enable_nas=yes)
  969. if test x$enable_audio = xyes -a x$enable_nas = xyes; then
  970. AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
  971. AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
  972. AC_MSG_CHECKING(for NAS audio support)
  973. have_nas=no
  974. if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
  975. have_nas=yes
  976. NAS_LIBS="-laudio"
  977. elif test -r /usr/X11R6/include/audio/audiolib.h; then
  978. have_nas=yes
  979. NAS_CFLAGS="-I/usr/X11R6/include/"
  980. NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
  981. fi
  982. AC_MSG_RESULT($have_nas)
  983. if test x$have_nas = xyes; then
  984. AC_ARG_ENABLE(nas-shared,
  985. AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
  986. , enable_nas_shared=yes)
  987. nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  988. if test x$have_loadso != xyes && \
  989. test x$enable_nas_shared = xyes; then
  990. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
  991. fi
  992. if test x$have_loadso = xyes && \
  993. test x$enable_nas_shared = xyes && test x$nas_lib != x; then
  994. echo "-- dynamic libaudio -> $nas_lib"
  995. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib", [ ])
  996. SUMMARY_audio="${SUMMARY_audio} nas(dynamic)"
  997. else
  998. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
  999. SUMMARY_audio="${SUMMARY_audio} nas"
  1000. fi
  1001. AC_DEFINE(SDL_AUDIO_DRIVER_NAS, 1, [ ])
  1002. SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
  1003. EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
  1004. have_audio=yes
  1005. fi
  1006. fi
  1007. }
  1008. dnl See if the sndio audio interface is supported
  1009. CheckSNDIO()
  1010. {
  1011. AC_ARG_ENABLE(sndio,
  1012. AC_HELP_STRING([--enable-sndio], [support the sndio audio API [[default=yes]]]),
  1013. , enable_sndio=yes)
  1014. if test x$enable_audio = xyes -a x$enable_sndio = xyes; then
  1015. AC_CHECK_HEADER(sndio.h, have_sndio_hdr=yes)
  1016. AC_CHECK_LIB(sndio, sio_open, have_sndio_lib=yes)
  1017. AC_MSG_CHECKING(for sndio audio support)
  1018. have_sndio=no
  1019. if test x$have_sndio_hdr = xyes -a x$have_sndio_lib = xyes; then
  1020. have_sndio=yes
  1021. SNDIO_LIBS="-lsndio"
  1022. fi
  1023. AC_MSG_RESULT($have_sndio)
  1024. if test x$have_sndio = xyes; then
  1025. AC_ARG_ENABLE(sndio-shared,
  1026. AC_HELP_STRING([--enable-sndio-shared], [dynamically load sndio audio support [[default=yes]]]),
  1027. , enable_sndio_shared=yes)
  1028. sndio_lib=[`find_lib "libsndio.so.*" "$SNDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1029. if test x$have_loadso != xyes && \
  1030. test x$enable_sndio_shared = xyes; then
  1031. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic sndio loading])
  1032. fi
  1033. if test x$have_loadso = xyes && \
  1034. test x$enable_sndio_shared = xyes && test x$sndio_lib != x; then
  1035. echo "-- dynamic libsndio -> $sndio_lib"
  1036. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_SNDIO_DYNAMIC, "$sndio_lib", [ ])
  1037. SUMMARY_audio="${SUMMARY_audio} sndio(dynamic)"
  1038. else
  1039. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SNDIO_LIBS"
  1040. SUMMARY_audio="${SUMMARY_audio} sndio"
  1041. fi
  1042. AC_DEFINE(SDL_AUDIO_DRIVER_SNDIO, 1, [ ])
  1043. SOURCES="$SOURCES $srcdir/src/audio/sndio/*.c"
  1044. EXTRA_CFLAGS="$EXTRA_CFLAGS $SNDIO_CFLAGS"
  1045. have_audio=yes
  1046. fi
  1047. fi
  1048. }
  1049. dnl Find FusionSound
  1050. CheckFusionSound()
  1051. {
  1052. AC_ARG_ENABLE(fusionsound,
  1053. AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]),
  1054. , enable_fusionsound=no)
  1055. if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
  1056. fusionsound=no
  1057. FUSIONSOUND_REQUIRED_VERSION=1.1.1
  1058. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1059. AC_MSG_CHECKING(for FusionSound $FUSIONSOUND_REQUIRED_VERSION support)
  1060. if test x$PKG_CONFIG != xno; then
  1061. if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $FUSIONSOUND_REQUIRED_VERSION fusionsound; then
  1062. FUSIONSOUND_CFLAGS=`$PKG_CONFIG --cflags fusionsound`
  1063. FUSIONSOUND_LIBS=`$PKG_CONFIG --libs fusionsound`
  1064. fusionsound=yes
  1065. fi
  1066. fi
  1067. AC_MSG_RESULT($fusionsound)
  1068. if test x$fusionsound = xyes; then
  1069. AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND, 1, [ ])
  1070. SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
  1071. EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
  1072. AC_ARG_ENABLE(fusionsound-shared,
  1073. AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]),
  1074. , enable_fusionsound_shared=yes)
  1075. fusionsound_shared=no
  1076. AC_MSG_CHECKING(for FusionSound dynamic loading support)
  1077. if test x$have_loadso != xyes && \
  1078. test x$enable_fusionsound_shared = xyes; then
  1079. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
  1080. fi
  1081. if test x$have_loadso = xyes && \
  1082. test x$enable_fusionsound_shared = xyes; then
  1083. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so", [ ])
  1084. fusionsound_shared=yes
  1085. SUMMARY_audio="${SUMMARY_audio} fusionsound(dynamic)"
  1086. else
  1087. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
  1088. SUMMARY_audio="${SUMMARY_audio} fusionsound"
  1089. fi
  1090. AC_MSG_RESULT($fusionsound_shared)
  1091. have_audio=yes
  1092. fi
  1093. fi
  1094. }
  1095. dnl rcg07142001 See if the user wants the disk writer audio driver...
  1096. CheckDiskAudio()
  1097. {
  1098. AC_ARG_ENABLE(diskaudio,
  1099. AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
  1100. , enable_diskaudio=yes)
  1101. if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
  1102. AC_DEFINE(SDL_AUDIO_DRIVER_DISK, 1, [ ])
  1103. SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
  1104. SUMMARY_audio="${SUMMARY_audio} disk"
  1105. fi
  1106. }
  1107. dnl rcg03142006 See if the user wants the dummy audio driver...
  1108. CheckDummyAudio()
  1109. {
  1110. AC_ARG_ENABLE(dummyaudio,
  1111. AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
  1112. , enable_dummyaudio=yes)
  1113. if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
  1114. AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY, 1, [ ])
  1115. SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
  1116. SUMMARY_audio="${SUMMARY_audio} dummy"
  1117. fi
  1118. }
  1119. dnl See if libsamplerate is available
  1120. CheckLibSampleRate()
  1121. {
  1122. AC_ARG_ENABLE(libsamplerate,
  1123. AC_HELP_STRING([--enable-libsamplerate], [use libsamplerate for audio rate conversion [[default=yes]]]),
  1124. , enable_libsamplerate=yes)
  1125. if test x$enable_libsamplerate = xyes; then
  1126. AC_CHECK_HEADER(samplerate.h,
  1127. have_samplerate_h_hdr=yes,
  1128. have_samplerate_h_hdr=no)
  1129. if test x$have_samplerate_h_hdr = xyes; then
  1130. AC_DEFINE(HAVE_LIBSAMPLERATE_H, 1, [ ])
  1131. AC_ARG_ENABLE(libsamplerate-shared,
  1132. AC_HELP_STRING([--enable-libsamplerate-shared], [dynamically load libsamplerate [[default=yes]]]),
  1133. , enable_libsamplerate_shared=yes)
  1134. samplerate_lib=[`find_lib "libsamplerate.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  1135. if test x$have_loadso != xyes && \
  1136. test x$enable_libsamplerate_shared = xyes; then
  1137. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libsamplerate loading])
  1138. fi
  1139. if test x$have_loadso = xyes && \
  1140. test x$enable_libsamplerate_shared = xyes && test x$samplerate_lib != x; then
  1141. echo "-- dynamic libsamplerate -> $samplerate_lib"
  1142. AC_DEFINE_UNQUOTED(SDL_LIBSAMPLERATE_DYNAMIC, "$samplerate_lib", [ ])
  1143. else
  1144. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lsamplerate"
  1145. fi
  1146. fi
  1147. fi
  1148. }
  1149. dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
  1150. dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
  1151. CheckVisibilityHidden()
  1152. {
  1153. AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
  1154. have_gcc_fvisibility=no
  1155. visibility_CFLAGS="-fvisibility=hidden"
  1156. save_CFLAGS="$CFLAGS"
  1157. CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
  1158. AC_TRY_COMPILE([
  1159. #if !defined(__GNUC__) || __GNUC__ < 4
  1160. #error SDL only uses visibility attributes in GCC 4 or newer
  1161. #endif
  1162. ],[
  1163. ],[
  1164. have_gcc_fvisibility=yes
  1165. ])
  1166. AC_MSG_RESULT($have_gcc_fvisibility)
  1167. CFLAGS="$save_CFLAGS"
  1168. if test x$have_gcc_fvisibility = xyes; then
  1169. EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
  1170. fi
  1171. }
  1172. dnl See if GCC's -mpreferred-stack-boundary is supported.
  1173. dnl Reference: http://bugzilla.libsdl.org/show_bug.cgi?id=1296
  1174. CheckStackBoundary()
  1175. {
  1176. AC_MSG_CHECKING(for GCC -mpreferred-stack-boundary option)
  1177. have_gcc_preferred_stack_boundary=no
  1178. save_CFLAGS="$CFLAGS"
  1179. CFLAGS="$save_CFLAGS -mpreferred-stack-boundary=2"
  1180. AC_TRY_COMPILE([
  1181. int x = 0;
  1182. ],[
  1183. ],[
  1184. have_gcc_preferred_stack_boundary=yes
  1185. ])
  1186. AC_MSG_RESULT($have_gcc_preferred_stack_boundary)
  1187. CFLAGS="$save_CFLAGS"
  1188. if test x$have_gcc_preferred_stack_boundary = xyes; then
  1189. EXTRA_CFLAGS="$EXTRA_CFLAGS -mpreferred-stack-boundary=2"
  1190. fi
  1191. }
  1192. dnl See if GCC's -Wdeclaration-after-statement is supported.
  1193. dnl This lets us catch things that would fail on a C89 compiler when using
  1194. dnl a modern GCC.
  1195. CheckDeclarationAfterStatement()
  1196. {
  1197. AC_MSG_CHECKING(for GCC -Wdeclaration-after-statement option)
  1198. have_gcc_declaration_after_statement=no
  1199. save_CFLAGS="$CFLAGS"
  1200. CFLAGS="$save_CFLAGS -Wdeclaration-after-statement -Werror=declaration-after-statement"
  1201. AC_TRY_COMPILE([
  1202. int x = 0;
  1203. ],[
  1204. ],[
  1205. have_gcc_declaration_after_statement=yes
  1206. ])
  1207. AC_MSG_RESULT($have_gcc_declaration_after_statement)
  1208. CFLAGS="$save_CFLAGS"
  1209. if test x$have_gcc_declaration_after_statement = xyes; then
  1210. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wdeclaration-after-statement -Werror=declaration-after-statement"
  1211. fi
  1212. }
  1213. dnl See if GCC's -Wall is supported.
  1214. CheckWarnAll()
  1215. {
  1216. AC_MSG_CHECKING(for GCC -Wall option)
  1217. have_gcc_Wall=no
  1218. save_CFLAGS="$CFLAGS"
  1219. CFLAGS="$save_CFLAGS -Wall"
  1220. AC_TRY_COMPILE([
  1221. int x = 0;
  1222. ],[
  1223. ],[
  1224. have_gcc_Wall=yes
  1225. ])
  1226. AC_MSG_RESULT($have_gcc_Wall)
  1227. CFLAGS="$save_CFLAGS"
  1228. if test x$have_gcc_Wall = xyes; then
  1229. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
  1230. dnl Haiku headers use multicharacter constants all over the place. Ignore these warnings when using -Wall.
  1231. AC_MSG_CHECKING(for necessary GCC -Wno-multichar option)
  1232. need_gcc_Wno_multichar=no
  1233. case "$host" in
  1234. *-*-haiku*)
  1235. need_gcc_Wno_multichar=yes
  1236. ;;
  1237. esac
  1238. AC_MSG_RESULT($need_gcc_Wno_multichar)
  1239. if test x$need_gcc_Wno_multichar = xyes; then
  1240. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-multichar"
  1241. fi
  1242. fi
  1243. }
  1244. dnl Check for Wayland
  1245. CheckWayland()
  1246. {
  1247. AC_ARG_ENABLE(video-wayland,
  1248. AC_HELP_STRING([--enable-video-wayland], [use Wayland video driver [[default=yes]]]),
  1249. ,enable_video_wayland=yes)
  1250. AC_ARG_ENABLE(video-wayland-qt-touch,
  1251. AC_HELP_STRING([--enable-video-wayland-qt-touch], [QtWayland server support for Wayland video driver [[default=yes]]]),
  1252. ,enable_video_wayland_qt_touch=yes)
  1253. if test x$enable_video = xyes -a x$enable_video_wayland = xyes; then
  1254. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1255. AC_MSG_CHECKING(for Wayland support)
  1256. video_wayland=no
  1257. if test x$PKG_CONFIG != xno && \
  1258. test x$video_opengl_egl = xyes && \
  1259. test x$video_opengles_v2 = xyes; then
  1260. if $PKG_CONFIG --exists wayland-client wayland-scanner wayland-protocols wayland-egl wayland-cursor egl xkbcommon ; then
  1261. WAYLAND_CFLAGS=`$PKG_CONFIG --cflags wayland-client wayland-egl wayland-cursor xkbcommon`
  1262. WAYLAND_LIBS=`$PKG_CONFIG --libs wayland-client wayland-egl wayland-cursor xkbcommon`
  1263. WAYLAND_SCANNER=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`
  1264. WAYLAND_CORE_PROTOCOL_DIR=`$PKG_CONFIG --variable=pkgdatadir wayland-client`
  1265. WAYLAND_PROTOCOLS_DIR=`$PKG_CONFIG --variable=pkgdatadir wayland-protocols`
  1266. video_wayland=yes
  1267. fi
  1268. fi
  1269. AC_MSG_RESULT($video_wayland)
  1270. if test x$video_wayland = xyes; then
  1271. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND, 1, [ ])
  1272. if test x$enable_video_wayland_qt_touch = xyes; then
  1273. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH, 1, [ ])
  1274. fi
  1275. WAYLAND_PROTOCOLS_UNSTABLE="relative-pointer-unstable-v1 pointer-constraints-unstable-v1"
  1276. SOURCES="$SOURCES $srcdir/src/video/wayland/*.c"
  1277. EXTRA_CFLAGS="$EXTRA_CFLAGS $WAYLAND_CFLAGS -I\$(gen)"
  1278. AC_ARG_ENABLE(wayland-shared,
  1279. AC_HELP_STRING([--enable-wayland-shared], [dynamically load Wayland support [[default=maybe]]]),
  1280. , enable_wayland_shared=maybe)
  1281. dnl FIXME: Do BSD and OS X need special cases?
  1282. case "$host" in
  1283. *)
  1284. wayland_client_lib=[`find_lib "libwayland-client.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1285. wayland_egl_lib=[`find_lib "libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1286. if test x$wayland_egl_lib = x; then
  1287. dnl This works in Ubuntu 13.10, maybe others
  1288. wayland_egl_lib=[`find_lib "mesa-egl/libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1289. fi
  1290. wayland_cursor_lib=[`find_lib "libwayland-cursor.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1291. xkbcommon_lib=[`find_lib "libxkbcommon.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1292. ;;
  1293. esac
  1294. if test x$enable_wayland_shared = xmaybe; then
  1295. enable_wayland_shared=yes
  1296. fi
  1297. if test x$have_loadso != xyes && \
  1298. test x$enable_wayland_shared = xyes; then
  1299. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Wayland loading])
  1300. enable_wayland_shared=no
  1301. fi
  1302. if test x$have_loadso = xyes && \
  1303. test x$enable_wayland_shared = xyes && \
  1304. test x$wayland_client_lib != x && \
  1305. test x$wayland_egl_lib != x && \
  1306. test x$wayland_cursor_lib != x && \
  1307. test x$xkbcommon_lib != x; then
  1308. echo "-- dynamic libwayland-client -> $wayland_client_lib"
  1309. echo "-- dynamic libwayland-egl -> $wayland_egl_lib"
  1310. echo "-- dynamic libwayland-cursor -> $wayland_cursor_lib"
  1311. echo "-- dynamic libxkbcommon -> $xkbcommon_lib"
  1312. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC, "$wayland_client_lib", [ ])
  1313. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_EGL, "$wayland_egl_lib", [ ])
  1314. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_CURSOR, "$wayland_cursor_lib", [ ])
  1315. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_XKBCOMMON, "$xkbcommon_lib", [ ])
  1316. SUMMARY_video="${SUMMARY_video} wayland(dynamic)"
  1317. else
  1318. enable_wayland_shared=no
  1319. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $WAYLAND_LIBS"
  1320. SUMMARY_video="${SUMMARY_video} wayland"
  1321. fi
  1322. have_video=yes
  1323. fi
  1324. fi
  1325. }
  1326. dnl Check for Mir
  1327. CheckMir()
  1328. {
  1329. AC_ARG_ENABLE(video-mir,
  1330. AC_HELP_STRING([--enable-video-mir], [use Mir video driver [[default=yes]]]),
  1331. ,enable_video_mir=yes)
  1332. if test x$enable_video = xyes -a x$enable_video_mir = xyes; then
  1333. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1334. AC_MSG_CHECKING(for Mir support)
  1335. video_mir=no
  1336. if test x$PKG_CONFIG != xno; then
  1337. if $PKG_CONFIG --exists mirclient egl xkbcommon ; then
  1338. MIR_CFLAGS=`$PKG_CONFIG --cflags mirclient egl xkbcommon`
  1339. MIR_LIBS=`$PKG_CONFIG --libs mirclient egl xkbcommon`
  1340. save_CFLAGS="$CFLAGS"
  1341. CFLAGS="$save_CFLAGS $MIR_CFLAGS"
  1342. dnl This will disable Mir if >= v0.26 is not available
  1343. AC_TRY_COMPILE([
  1344. #include <mir_toolkit/mir_client_library.h>
  1345. ],[
  1346. MirWindowAttrib attrib = mir_window_attrib_state
  1347. ],[
  1348. video_mir=yes
  1349. ])
  1350. CFLAGS="$save_CFLAGS"
  1351. fi
  1352. fi
  1353. AC_MSG_RESULT($video_mir)
  1354. if test x$video_mir = xyes; then
  1355. AC_DEFINE(SDL_VIDEO_DRIVER_MIR, 1, [ ])
  1356. SOURCES="$SOURCES $srcdir/src/video/mir/*.c"
  1357. EXTRA_CFLAGS="$EXTRA_CFLAGS $MIR_CFLAGS"
  1358. AC_ARG_ENABLE(mir-shared,
  1359. AC_HELP_STRING([--enable-mir-shared], [dynamically load Mir support [[default=maybe]]]),
  1360. , enable_mir_shared=maybe)
  1361. dnl FIXME: Do BSD and OS X need special cases?
  1362. case "$host" in
  1363. *)
  1364. mirclient_lib=[`find_lib "libmirclient.so.*" "$MIR_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1365. xkbcommon_lib=[`find_lib "libxkbcommon.so.*" "$MIR_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1366. ;;
  1367. esac
  1368. if test x$enable_mir_shared = xmaybe; then
  1369. enable_mir_shared=yes
  1370. fi
  1371. if test x$have_loadso != xyes && \
  1372. test x$enable_mir_shared = xyes; then
  1373. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Mir loading])
  1374. enable_mir_shared=no
  1375. fi
  1376. if test x$have_loadso = xyes && \
  1377. test x$enable_mir_shared = xyes && \
  1378. test x$mirclient_lib != x && \
  1379. test x$xkbcommon_lib != x; then
  1380. echo "-- dynamic libmirclient -> $mirclient_lib"
  1381. echo "-- dynamic libxkbcommon -> $xkbcommon_lib"
  1382. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_MIR_DYNAMIC, "$mirclient_lib", [ ])
  1383. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_MIR_DYNAMIC_XKBCOMMON, "$xkbcommon_lib", [ ])
  1384. SUMMARY_video="${SUMMARY_video} mir(dynamic)"
  1385. else
  1386. enable_mir_shared=no
  1387. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MIR_LIBS"
  1388. SUMMARY_video="${SUMMARY_video} mir"
  1389. fi
  1390. have_video=yes
  1391. fi
  1392. fi
  1393. }
  1394. dnl Check for Native Client stuff
  1395. CheckNativeClient()
  1396. {
  1397. AC_TRY_COMPILE([
  1398. #if !defined(__native_client__)
  1399. #error "NO NACL"
  1400. #endif
  1401. ],[
  1402. ],[
  1403. AC_DEFINE(SDL_VIDEO_DRIVER_NACL, 1, [ ])
  1404. AC_DEFINE(SDL_AUDIO_DRIVER_NACL, 1, [ ])
  1405. AC_DEFINE(HAVE_POW, 1, [ ])
  1406. AC_DEFINE(HAVE_OPENGLES2, 1, [ ])
  1407. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1408. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1409. SDL_LIBS="-lppapi_simple -lppapi_gles2 $SDL_LIBS"
  1410. SDLMAIN_SOURCES="$srcdir/src/main/nacl/*.c"
  1411. SOURCES="$SOURCES $srcdir/src/audio/nacl/*.c"
  1412. SUMMARY_audio="${SUMMARY_audio} nacl"
  1413. SOURCES="$SOURCES $srcdir/src/video/nacl/*.c"
  1414. SUMMARY_video="${SUMMARY_video} nacl opengles2"
  1415. ])
  1416. }
  1417. dnl Find the X11 include and library directories
  1418. CheckX11()
  1419. {
  1420. AC_ARG_ENABLE(video-x11,
  1421. AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
  1422. , enable_video_x11=yes)
  1423. if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
  1424. case "$host" in
  1425. *-*-darwin*)
  1426. # This isn't necessary for X11, but fixes GLX detection
  1427. if test "x$x_includes" = xNONE && \
  1428. test "x$x_libraries" = xNONE && \
  1429. test -d /usr/X11R6/include && \
  1430. test -d /usr/X11R6/lib; then
  1431. x_includes="/usr/X11R6/include"
  1432. x_libraries="/usr/X11R6/lib"
  1433. fi
  1434. ;;
  1435. esac
  1436. AC_PATH_X
  1437. AC_PATH_XTRA
  1438. if test x$have_x = xyes; then
  1439. AC_ARG_ENABLE(x11-shared,
  1440. AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
  1441. , enable_x11_shared=maybe)
  1442. case "$host" in
  1443. *-*-darwin*)
  1444. x11_lib='/usr/X11R6/lib/libX11.6.dylib'
  1445. x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
  1446. xcursor_lib='/usr/X11R6/lib/libXcursor.1.dylib'
  1447. xinerama_lib='/usr/X11R6/lib/libXinerama.1.dylib'
  1448. xinput_lib='/usr/X11R6/lib/libXi.6.dylib'
  1449. xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
  1450. xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
  1451. xss_lib='/usr/X11R6/lib/libXss.1.dylib'
  1452. xvidmode_lib='/usr/X11R6/lib/libXxf86vm.1.dylib'
  1453. ;;
  1454. *-*-openbsd*)
  1455. x11_lib='libX11.so'
  1456. x11ext_lib='libXext.so'
  1457. xcursor_lib='libXcursor.so'
  1458. xinerama_lib='libXinerama.so'
  1459. xinput_lib='libXi.so'
  1460. xrandr_lib='libXrandr.so'
  1461. xrender_lib='libXrender.so'
  1462. xss_lib='libXss.so'
  1463. xvidmode_lib='libXxf86vm.so'
  1464. ;;
  1465. *)
  1466. x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1467. x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1468. xcursor_lib=[`find_lib "libXcursor.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1469. xinerama_lib=[`find_lib "libXinerama.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1470. xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1471. xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1472. xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1473. xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1474. xvidmode_lib=[`find_lib "libXxf86vm.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1475. ;;
  1476. esac
  1477. if test x$ac_cv_func_shmat != xyes; then
  1478. X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
  1479. fi
  1480. CFLAGS="$CFLAGS $X_CFLAGS"
  1481. LDFLAGS="$LDFLAGS $X_LIBS"
  1482. AC_CHECK_HEADER(X11/extensions/Xext.h,
  1483. have_xext_h_hdr=yes,
  1484. have_xext_h_hdr=no,
  1485. [#include <X11/Xlib.h>
  1486. #include <X11/Xproto.h>
  1487. ])
  1488. if test x$have_xext_h_hdr != xyes; then
  1489. AC_MSG_ERROR([
  1490. *** Missing Xext.h, maybe you need to install the libxext-dev package?
  1491. ])
  1492. fi
  1493. AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ])
  1494. SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
  1495. EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
  1496. # Needed so SDL applications can include SDL_syswm.h
  1497. SDL_CFLAGS="$SDL_CFLAGS $X_CFLAGS"
  1498. if test x$enable_x11_shared = xmaybe; then
  1499. enable_x11_shared=yes
  1500. fi
  1501. if test x$have_loadso != xyes && \
  1502. test x$enable_x11_shared = xyes; then
  1503. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
  1504. enable_x11_shared=no
  1505. fi
  1506. if test x$have_loadso = xyes && \
  1507. test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
  1508. echo "-- dynamic libX11 -> $x11_lib"
  1509. echo "-- dynamic libX11ext -> $x11ext_lib"
  1510. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib", [ ])
  1511. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib", [ ])
  1512. SUMMARY_video="${SUMMARY_video} x11(dynamic)"
  1513. else
  1514. enable_x11_shared=no
  1515. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
  1516. SUMMARY_video="${SUMMARY_video} x11"
  1517. fi
  1518. have_video=yes
  1519. AC_MSG_CHECKING(for const parameter to XextAddDisplay)
  1520. have_const_param_XextAddDisplay=no
  1521. AC_TRY_COMPILE([
  1522. #include <X11/Xlib.h>
  1523. #include <X11/Xproto.h>
  1524. #include <X11/extensions/Xext.h>
  1525. #include <X11/extensions/extutil.h>
  1526. extern XExtDisplayInfo* XextAddDisplay(XExtensionInfo* a,Display* b,_Xconst char* c,XExtensionHooks* d,int e,XPointer f);
  1527. ],[
  1528. ],[
  1529. have_const_param_XextAddDisplay=yes
  1530. AC_DEFINE([SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY], 1, [ ])
  1531. ])
  1532. AC_MSG_RESULT($have_const_param_XextAddDisplay)
  1533. dnl AC_CHECK_LIB(X11, XGetEventData, AC_DEFINE(SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS, 1, [Have XGenericEvent]))
  1534. AC_MSG_CHECKING([for XGenericEvent])
  1535. have_XGenericEvent=no
  1536. AC_TRY_COMPILE([
  1537. #include <X11/Xlib.h>
  1538. ],[
  1539. Display *display;
  1540. XEvent event;
  1541. XGenericEventCookie *cookie = &event.xcookie;
  1542. XNextEvent(display, &event);
  1543. XGetEventData(display, cookie);
  1544. XFreeEventData(display, cookie);
  1545. ],[
  1546. have_XGenericEvent=yes
  1547. AC_DEFINE([SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS], 1, [ ])
  1548. ])
  1549. AC_MSG_RESULT($have_XGenericEvent)
  1550. AC_CHECK_LIB(X11, XkbKeycodeToKeysym, AC_DEFINE(SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM, 1, [Have XkbKeycodeToKeysym]))
  1551. AC_ARG_ENABLE(video-x11-xcursor,
  1552. AC_HELP_STRING([--enable-video-x11-xcursor], [enable X11 Xcursor support [[default=yes]]]),
  1553. , enable_video_x11_xcursor=yes)
  1554. if test x$enable_video_x11_xcursor = xyes; then
  1555. definitely_enable_video_x11_xcursor=no
  1556. AC_CHECK_HEADER(X11/Xcursor/Xcursor.h,
  1557. have_xcursor_h_hdr=yes,
  1558. have_xcursor_h_hdr=no,
  1559. [#include <X11/Xlib.h>
  1560. ])
  1561. if test x$have_xcursor_h_hdr = xyes; then
  1562. if test x$enable_x11_shared = xyes && test x$xcursor_lib != x ; then
  1563. echo "-- dynamic libXcursor -> $xcursor_lib"
  1564. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR, "$xcursor_lib", [ ])
  1565. definitely_enable_video_x11_xcursor=yes
  1566. else
  1567. AC_CHECK_LIB(Xcursor, XcursorImageCreate, have_xcursor_lib=yes)
  1568. if test x$have_xcursor_lib = xyes ; then
  1569. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXcursor"
  1570. definitely_enable_video_x11_xcursor=yes
  1571. fi
  1572. fi
  1573. fi
  1574. fi
  1575. if test x$definitely_enable_video_x11_xcursor = xyes; then
  1576. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XCURSOR, 1, [ ])
  1577. SUMMARY_video_x11="${SUMMARY_video_x11} xcursor"
  1578. fi
  1579. AC_ARG_ENABLE(video-x11-xdbe,
  1580. AC_HELP_STRING([--enable-video-x11-xdbe], [enable X11 Xdbe support [[default=yes]]]),
  1581. , enable_video_x11_xdbe=yes)
  1582. if test x$enable_video_x11_xdbe = xyes; then
  1583. AC_CHECK_HEADER(X11/extensions/Xdbe.h,
  1584. have_dbe_h_hdr=yes,
  1585. have_dbe_h_hdr=no,
  1586. [#include <X11/Xlib.h>
  1587. ])
  1588. if test x$have_dbe_h_hdr = xyes; then
  1589. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XDBE, 1, [ ])
  1590. SUMMARY_video_x11="${SUMMARY_video_x11} xdbe"
  1591. fi
  1592. fi
  1593. AC_ARG_ENABLE(video-x11-xinerama,
  1594. AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
  1595. , enable_video_x11_xinerama=yes)
  1596. if test x$enable_video_x11_xinerama = xyes; then
  1597. definitely_enable_video_x11_xinerama=no
  1598. AC_CHECK_HEADER(X11/extensions/Xinerama.h,
  1599. have_xinerama_h_hdr=yes,
  1600. have_xinerama_h_hdr=no,
  1601. [#include <X11/Xlib.h>
  1602. ])
  1603. if test x$have_xinerama_h_hdr = xyes; then
  1604. if test x$enable_x11_shared = xyes && test x$xinerama_lib != x ; then
  1605. echo "-- dynamic libXinerama -> $xinerama_lib"
  1606. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA, "$xinerama_lib", [ ])
  1607. definitely_enable_video_x11_xinerama=yes
  1608. else
  1609. AC_CHECK_LIB(Xinerama, XineramaQueryExtension, have_xinerama_lib=yes)
  1610. if test x$have_xinerama_lib = xyes ; then
  1611. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXinerama"
  1612. definitely_enable_video_x11_xinerama=yes
  1613. fi
  1614. fi
  1615. fi
  1616. fi
  1617. if test x$definitely_enable_video_x11_xinerama = xyes; then
  1618. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA, 1, [ ])
  1619. SUMMARY_video_x11="${SUMMARY_video_x11} xinerama"
  1620. fi
  1621. AC_ARG_ENABLE(video-x11-xinput,
  1622. AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]),
  1623. , enable_video_x11_xinput=yes)
  1624. if test x$enable_video_x11_xinput = xyes; then
  1625. definitely_enable_video_x11_xinput=no
  1626. AC_CHECK_HEADER(X11/extensions/XInput2.h,
  1627. have_xinput_h_hdr=yes,
  1628. have_xinput_h_hdr=no,
  1629. [#include <X11/Xlib.h>
  1630. ])
  1631. if test x$have_xinput_h_hdr = xyes; then
  1632. if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
  1633. echo "-- dynamic libXi -> $xinput_lib"
  1634. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2, "$xinput_lib", [ ])
  1635. definitely_enable_video_x11_xinput=yes
  1636. else
  1637. AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
  1638. if test x$have_xinput_lib = xyes ; then
  1639. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
  1640. definitely_enable_video_x11_xinput=yes
  1641. fi
  1642. fi
  1643. fi
  1644. fi
  1645. if test x$definitely_enable_video_x11_xinput = xyes; then
  1646. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2"
  1647. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT2, 1, [ ])
  1648. AC_MSG_CHECKING(for xinput2 multitouch)
  1649. have_xinput2_multitouch=no
  1650. AC_TRY_COMPILE([
  1651. #include <X11/Xlib.h>
  1652. #include <X11/Xproto.h>
  1653. #include <X11/extensions/XInput2.h>
  1654. ],[
  1655. int event_type = XI_TouchBegin;
  1656. XITouchClassInfo *t;
  1657. ],[
  1658. have_xinput2_multitouch=yes
  1659. AC_DEFINE([SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH], 1, [])
  1660. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2_multitouch"
  1661. ])
  1662. AC_MSG_RESULT($have_xinput2_multitouch)
  1663. fi
  1664. AC_ARG_ENABLE(video-x11-xrandr,
  1665. AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
  1666. , enable_video_x11_xrandr=yes)
  1667. if test x$enable_video_x11_xrandr = xyes; then
  1668. dnl XRRScreenResources is only present in Xrandr >= 1.2, we use that as a test.
  1669. definitely_enable_video_x11_xrandr=no
  1670. have_xrandr_h_hdr=no
  1671. AC_TRY_COMPILE([
  1672. #include <X11/Xlib.h>
  1673. #include <X11/extensions/Xrandr.h>
  1674. ],[
  1675. XRRScreenResources *res = NULL;
  1676. ],[
  1677. have_xrandr_h_hdr=yes
  1678. ])
  1679. if test x$have_xrandr_h_hdr = xyes; then
  1680. if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
  1681. echo "-- dynamic libXrandr -> $xrandr_lib"
  1682. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib", [ ])
  1683. definitely_enable_video_x11_xrandr=yes
  1684. else
  1685. AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
  1686. if test x$have_xrandr_lib = xyes ; then
  1687. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr"
  1688. definitely_enable_video_x11_xrandr=yes
  1689. fi
  1690. fi
  1691. fi
  1692. fi
  1693. if test x$definitely_enable_video_x11_xrandr = xyes; then
  1694. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR, 1, [ ])
  1695. SUMMARY_video_x11="${SUMMARY_video_x11} xrandr"
  1696. fi
  1697. AC_ARG_ENABLE(video-x11-scrnsaver,
  1698. AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]),
  1699. , enable_video_x11_scrnsaver=yes)
  1700. if test x$enable_video_x11_scrnsaver = xyes; then
  1701. AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
  1702. have_scrnsaver_h_hdr=yes,
  1703. have_scrnsaver_h_hdr=no,
  1704. [#include <X11/Xlib.h>
  1705. ])
  1706. if test x$have_scrnsaver_h_hdr = xyes; then
  1707. if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
  1708. echo "-- dynamic libXss -> $xss_lib"
  1709. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib", [ ])
  1710. definitely_enable_video_x11_scrnsaver=yes
  1711. else
  1712. AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
  1713. if test x$have_xss_lib = xyes ; then
  1714. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
  1715. definitely_enable_video_x11_scrnsaver=yes
  1716. fi
  1717. fi
  1718. fi
  1719. fi
  1720. if test x$definitely_enable_video_x11_scrnsaver = xyes; then
  1721. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSCRNSAVER, 1, [ ])
  1722. SUMMARY_video_x11="${SUMMARY_video_x11} xscrnsaver"
  1723. fi
  1724. AC_ARG_ENABLE(video-x11-xshape,
  1725. AC_HELP_STRING([--enable-video-x11-xshape], [enable X11 XShape support [[default=yes]]]),
  1726. , enable_video_x11_xshape=yes)
  1727. if test x$enable_video_x11_xshape = xyes; then
  1728. AC_CHECK_HEADER(X11/extensions/shape.h,
  1729. have_shape_h_hdr=yes,
  1730. have_shape_h_hdr=no,
  1731. [#include <X11/Xlib.h>
  1732. ])
  1733. if test x$have_shape_h_hdr = xyes; then
  1734. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSHAPE, 1, [ ])
  1735. SUMMARY_video_x11="${SUMMARY_video_x11} xshape"
  1736. fi
  1737. fi
  1738. AC_ARG_ENABLE(video-x11-vm,
  1739. AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
  1740. , enable_video_x11_vm=yes)
  1741. if test x$enable_video_x11_vm = xyes; then
  1742. definitely_enable_video_x11_vm=no
  1743. AC_CHECK_HEADER(X11/extensions/xf86vmode.h,
  1744. have_vm_h_hdr=yes,
  1745. have_vm_h_hdr=no,
  1746. [#include <X11/Xlib.h>
  1747. ])
  1748. if test x$have_vm_h_hdr = xyes; then
  1749. if test x$enable_x11_shared = xyes && test x$xvidmode_lib != x ; then
  1750. echo "-- dynamic libXxf86vm -> $xvidmode_lib"
  1751. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE, "$xvidmode_lib", [ ])
  1752. definitely_enable_video_x11_vm=yes
  1753. else
  1754. AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryVersion, have_vm_lib=yes)
  1755. if test x$have_vm_lib = xyes ; then
  1756. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXxf86vm"
  1757. definitely_enable_video_x11_vm=yes
  1758. fi
  1759. fi
  1760. fi
  1761. fi
  1762. if test x$definitely_enable_video_x11_vm = xyes; then
  1763. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XVIDMODE, 1, [ ])
  1764. SUMMARY_video_x11="${SUMMARY_video_x11} xvidmode"
  1765. fi
  1766. fi
  1767. fi
  1768. }
  1769. dnl Set up the Vivante video driver if enabled
  1770. CheckVivanteVideo()
  1771. {
  1772. AC_ARG_ENABLE(video-vivante,
  1773. AC_HELP_STRING([--enable-video-vivante], [use Vivante EGL video driver [[default=yes]]]),
  1774. , enable_video_vivante=yes)
  1775. if test x$enable_video = xyes -a x$enable_video_vivante = xyes; then
  1776. AC_MSG_CHECKING(for Vivante VDK API)
  1777. have_vivante_vdk=no
  1778. AC_TRY_COMPILE([
  1779. #define LINUX
  1780. #define EGL_API_FB
  1781. #include <gc_vdk.h>
  1782. ],[
  1783. ],[
  1784. have_vivante_vdk=yes
  1785. ])
  1786. AC_MSG_RESULT($have_vivante_vdk)
  1787. AC_MSG_CHECKING(for Vivante FB API)
  1788. have_vivante_egl=no
  1789. AC_TRY_COMPILE([
  1790. #define LINUX
  1791. #define EGL_API_FB
  1792. #include <EGL/eglvivante.h>
  1793. ],[
  1794. ],[
  1795. have_vivante_egl=yes
  1796. ])
  1797. AC_MSG_RESULT($have_vivante_egl)
  1798. if test x$have_vivante_vdk = xyes -o x$have_vivante_egl = xyes; then
  1799. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE, 1, [ ])
  1800. EXTRA_CFLAGS="$EXTRA_CFLAGS -DLINUX -DEGL_API_FB"
  1801. if test x$have_vivante_vdk = xyes; then
  1802. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE_VDK, 1, [ ])
  1803. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lVDK"
  1804. fi
  1805. SOURCES="$SOURCES $srcdir/src/video/vivante/*.c"
  1806. SUMMARY_video="${SUMMARY_video} vivante"
  1807. have_video=yes
  1808. fi
  1809. fi
  1810. }
  1811. dnl Set up the Haiku video driver if enabled
  1812. CheckHaikuVideo()
  1813. {
  1814. if test x$enable_video = xyes; then
  1815. AC_DEFINE(SDL_VIDEO_DRIVER_HAIKU, 1, [ ])
  1816. SOURCES="$SOURCES $srcdir/src/video/haiku/*.cc"
  1817. have_video=yes
  1818. SUMMARY_video="${SUMMARY_video} haiku"
  1819. fi
  1820. }
  1821. dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
  1822. CheckCOCOA()
  1823. {
  1824. AC_ARG_ENABLE(video-cocoa,
  1825. AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
  1826. , enable_video_cocoa=yes)
  1827. if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
  1828. save_CFLAGS="$CFLAGS"
  1829. dnl work around that we don't have Objective-C support in autoconf
  1830. CFLAGS="$CFLAGS -x objective-c"
  1831. AC_MSG_CHECKING(for Cocoa framework)
  1832. have_cocoa=no
  1833. AC_TRY_COMPILE([
  1834. #import <Cocoa/Cocoa.h>
  1835. ],[
  1836. ],[
  1837. have_cocoa=yes
  1838. ])
  1839. AC_MSG_RESULT($have_cocoa)
  1840. CFLAGS="$save_CFLAGS"
  1841. if test x$have_cocoa = xyes; then
  1842. AC_DEFINE(SDL_VIDEO_DRIVER_COCOA, 1, [ ])
  1843. SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
  1844. SUMMARY_video="${SUMMARY_video} cocoa"
  1845. have_video=yes
  1846. fi
  1847. fi
  1848. }
  1849. dnl Find DirectFB
  1850. CheckDirectFB()
  1851. {
  1852. AC_ARG_ENABLE(video-directfb,
  1853. AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]),
  1854. , enable_video_directfb=no)
  1855. if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
  1856. video_directfb=no
  1857. DIRECTFB_REQUIRED_VERSION=1.0.0
  1858. AC_PATH_PROGS(DIRECTFBCONFIG, directfb-config, no, [$prefix/bin:$PATH])
  1859. if test x$DIRECTFBCONFIG = xno; then
  1860. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1861. if test x$PKG_CONFIG != xno; then
  1862. if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then
  1863. DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
  1864. DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
  1865. DIRECTFB_PREFIX=`$PKG_CONFIG --variable=prefix directfb`
  1866. video_directfb=yes
  1867. fi
  1868. fi
  1869. else
  1870. set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'`
  1871. NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
  1872. set -- `$DIRECTFBCONFIG --version | sed 's/\./ /g'`
  1873. HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
  1874. if test $HAVE_VERSION -ge $NEED_VERSION; then
  1875. DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags`
  1876. DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs`
  1877. DIRECTFB_PREFIX=`$DIRECTFBCONFIG --prefix`
  1878. video_directfb=yes
  1879. fi
  1880. fi
  1881. if test x$video_directfb = xyes; then
  1882. # SuSE 11.1 installs directfb-config without directfb-devel
  1883. save_CPPFLAGS="$CPPFLAGS"
  1884. CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
  1885. AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
  1886. CPPFLAGS="$save_CPPFLAGS"
  1887. video_directfb=$have_directfb_hdr
  1888. fi
  1889. AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
  1890. AC_MSG_RESULT($video_directfb)
  1891. if test x$video_directfb = xyes; then
  1892. AC_ARG_ENABLE(directfb-shared,
  1893. AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]),
  1894. , enable_directfb_shared=yes)
  1895. AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB, 1, [ ])
  1896. AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB, 1, [ ])
  1897. SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
  1898. EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
  1899. AC_MSG_CHECKING(for directfb dynamic loading support)
  1900. directfb_shared=no
  1901. directfb_lib=[`find_lib "libdirectfb*.so.*" "$DIRECTFB_LIBS"`]
  1902. # | sed 's/.*\/\(.*\)/\1/; q'`]
  1903. AC_MSG_WARN("directfb $directfb_lib")
  1904. if test x$have_loadso != xyes && \
  1905. test x$enable_directfb_shared = xyes; then
  1906. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
  1907. fi
  1908. if test x$have_loadso = xyes && \
  1909. test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
  1910. directfb_shared=yes
  1911. echo "-- $directfb_lib_spec -> $directfb_lib"
  1912. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib", [ ])
  1913. SUMMARY_video="${SUMMARY_video} directfb(dynamic)"
  1914. else
  1915. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
  1916. SUMMARY_video="${SUMMARY_video} directfb"
  1917. fi
  1918. AC_MSG_RESULT($directfb_shared)
  1919. SDL_CFLAGS="$SDL_CFLAGS $DIRECTFB_CFLAGS"
  1920. have_video=yes
  1921. fi
  1922. fi
  1923. }
  1924. dnl rcg04172001 Set up the Null video driver.
  1925. CheckDummyVideo()
  1926. {
  1927. AC_ARG_ENABLE(video-dummy,
  1928. AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
  1929. , enable_video_dummy=yes)
  1930. if test x$enable_video_dummy = xyes; then
  1931. AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ])
  1932. SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
  1933. have_video=yes
  1934. SUMMARY_video="${SUMMARY_video} dummy"
  1935. fi
  1936. }
  1937. dnl Set up the QNX video driver if enabled
  1938. CheckQNXVideo()
  1939. {
  1940. if test x$enable_video = xyes; then
  1941. AC_DEFINE(SDL_VIDEO_DRIVER_QNX, 1, [ ])
  1942. SOURCES="$SOURCES $srcdir/src/video/qnx/*.c"
  1943. have_video=yes
  1944. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lscreen -lEGL -lGLESv2"
  1945. SUMMARY_video="${SUMMARY_video} qnx"
  1946. fi
  1947. }
  1948. dnl Set up the QNX audio driver if enabled
  1949. CheckQNXAudio()
  1950. {
  1951. if test x$enable_audio = xyes; then
  1952. AC_DEFINE(SDL_AUDIO_DRIVER_QSA, 1, [ ])
  1953. SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c"
  1954. have_audio=yes
  1955. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
  1956. SUMMARY_audio="${SUMMARY_audio} qsa"
  1957. fi
  1958. }
  1959. dnl Check to see if OpenGL support is desired
  1960. AC_ARG_ENABLE(video-opengl,
  1961. AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
  1962. , enable_video_opengl=yes)
  1963. dnl Find OpenGL
  1964. CheckOpenGLX11()
  1965. {
  1966. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  1967. AC_MSG_CHECKING(for OpenGL (GLX) support)
  1968. video_opengl=no
  1969. AC_TRY_COMPILE([
  1970. #include <GL/gl.h>
  1971. #include <GL/glx.h>
  1972. ],[
  1973. ],[
  1974. video_opengl=yes
  1975. ])
  1976. AC_MSG_RESULT($video_opengl)
  1977. if test x$video_opengl = xyes; then
  1978. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1979. AC_DEFINE(SDL_VIDEO_OPENGL_GLX, 1, [ ])
  1980. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  1981. SUMMARY_video="${SUMMARY_video} opengl"
  1982. fi
  1983. fi
  1984. }
  1985. dnl Check to see if OpenGL ES support is desired
  1986. AC_ARG_ENABLE(video-opengles,
  1987. AC_HELP_STRING([--enable-video-opengles], [include OpenGL ES support [[default=yes]]]),
  1988. , enable_video_opengles=yes)
  1989. AC_ARG_ENABLE(video-opengles1,
  1990. AC_HELP_STRING([--enable-video-opengles1], [include OpenGL ES 1.1 support [[default=yes]]]),
  1991. , enable_video_opengles1=yes)
  1992. AC_ARG_ENABLE(video-opengles2,
  1993. AC_HELP_STRING([--enable-video-opengles2], [include OpenGL ES 2.0 support [[default=yes]]]),
  1994. , enable_video_opengles2=yes)
  1995. dnl Find OpenGL ES
  1996. CheckOpenGLESX11()
  1997. {
  1998. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  1999. AC_MSG_CHECKING(for EGL support)
  2000. video_opengl_egl=no
  2001. AC_TRY_COMPILE([
  2002. #define LINUX
  2003. #define EGL_API_FB
  2004. #include <EGL/egl.h>
  2005. #include <EGL/eglext.h>
  2006. ],[
  2007. ],[
  2008. video_opengl_egl=yes
  2009. ])
  2010. AC_MSG_RESULT($video_opengl_egl)
  2011. if test x$video_opengl_egl = xyes; then
  2012. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2013. fi
  2014. if test x$enable_video_opengles1 = xyes; then
  2015. AC_MSG_CHECKING(for OpenGL ES v1 headers)
  2016. video_opengles_v1=no
  2017. AC_TRY_COMPILE([
  2018. #include <GLES/gl.h>
  2019. #include <GLES/glext.h>
  2020. ],[
  2021. ],[
  2022. video_opengles_v1=yes
  2023. ])
  2024. AC_MSG_RESULT($video_opengles_v1)
  2025. if test x$video_opengles_v1 = xyes; then
  2026. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  2027. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  2028. SUMMARY_video="${SUMMARY_video} opengl_es1"
  2029. fi
  2030. fi
  2031. if test x$enable_video_opengles2 = xyes; then
  2032. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2033. video_opengles_v2=no
  2034. AC_TRY_COMPILE([
  2035. #include <GLES2/gl2.h>
  2036. #include <GLES2/gl2ext.h>
  2037. ],[
  2038. ],[
  2039. video_opengles_v2=yes
  2040. ])
  2041. AC_MSG_RESULT($video_opengles_v2)
  2042. if test x$video_opengles_v2 = xyes; then
  2043. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2044. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2045. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2046. fi
  2047. fi
  2048. fi
  2049. }
  2050. dnl Check for Windows OpenGL
  2051. CheckWINDOWSGL()
  2052. {
  2053. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2054. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2055. AC_DEFINE(SDL_VIDEO_OPENGL_WGL, 1, [ ])
  2056. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2057. SUMMARY_video="${SUMMARY_video} opengl"
  2058. fi
  2059. }
  2060. dnl Check for Windows OpenGL
  2061. CheckWINDOWSGLES()
  2062. {
  2063. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2064. AC_MSG_CHECKING(for EGL support)
  2065. video_opengl_egl=no
  2066. AC_TRY_COMPILE([
  2067. #include <EGL/egl.h>
  2068. ],[
  2069. ],[
  2070. video_opengl_egl=yes
  2071. ])
  2072. AC_MSG_RESULT($video_opengl_egl)
  2073. if test x$video_opengl_egl = xyes; then
  2074. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2075. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2076. SUMMARY_video="${SUMMARY_video} opengl_es1"
  2077. fi
  2078. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2079. video_opengles_v2=no
  2080. AC_TRY_COMPILE([
  2081. #include <GLES2/gl2.h>
  2082. #include <GLES2/gl2ext.h>
  2083. ],[
  2084. ],[
  2085. video_opengles_v2=yes
  2086. ])
  2087. AC_MSG_RESULT($video_opengles_v2)
  2088. if test x$video_opengles_v2 = xyes; then
  2089. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2090. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2091. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2092. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2093. fi
  2094. fi
  2095. }
  2096. dnl Check for Haiku OpenGL
  2097. CheckHaikuGL()
  2098. {
  2099. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2100. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2101. AC_DEFINE(SDL_VIDEO_OPENGL_HAIKU, 1, [ ])
  2102. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2103. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
  2104. SUMMARY_video="${SUMMARY_video} opengl"
  2105. fi
  2106. }
  2107. dnl Check for MacOS OpenGL
  2108. CheckMacGL()
  2109. {
  2110. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2111. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2112. AC_DEFINE(SDL_VIDEO_OPENGL_CGL, 1, [ ])
  2113. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2114. SUMMARY_video="${SUMMARY_video} opengl"
  2115. fi
  2116. }
  2117. CheckEmscriptenGLES()
  2118. {
  2119. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2120. AC_MSG_CHECKING(for EGL support)
  2121. video_opengl_egl=no
  2122. AC_TRY_COMPILE([
  2123. #include <EGL/egl.h>
  2124. ],[
  2125. ],[
  2126. video_opengl_egl=yes
  2127. ])
  2128. AC_MSG_RESULT($video_opengl_egl)
  2129. if test x$video_opengl_egl = xyes; then
  2130. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2131. fi
  2132. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2133. video_opengles_v2=no
  2134. AC_TRY_COMPILE([
  2135. #include <GLES2/gl2.h>
  2136. #include <GLES2/gl2ext.h>
  2137. ],[
  2138. ],[
  2139. video_opengles_v2=yes
  2140. ])
  2141. AC_MSG_RESULT($video_opengles_v2)
  2142. if test x$video_opengles_v2 = xyes; then
  2143. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2144. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2145. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2146. fi
  2147. fi
  2148. }
  2149. dnl See if we can use the new unified event interface in Linux 2.4
  2150. CheckInputEvents()
  2151. {
  2152. dnl Check for Linux 2.4 unified input event interface support
  2153. AC_MSG_CHECKING(for Linux 2.4 unified input interface)
  2154. use_input_events=no
  2155. AC_TRY_COMPILE([
  2156. #include <linux/input.h>
  2157. ],[
  2158. #ifndef EVIOCGNAME
  2159. #error EVIOCGNAME() ioctl not available
  2160. #endif
  2161. ],[
  2162. use_input_events=yes
  2163. ])
  2164. AC_MSG_RESULT($use_input_events)
  2165. if test x$use_input_events = xyes; then
  2166. AC_DEFINE(SDL_INPUT_LINUXEV, 1, [ ])
  2167. SUMMARY_input="${SUMMARY_input} linuxev"
  2168. fi
  2169. }
  2170. dnl See if we can use the kernel kd.h header
  2171. CheckInputKD()
  2172. {
  2173. AC_MSG_CHECKING(for Linux kd.h)
  2174. use_input_kd=no
  2175. AC_TRY_COMPILE([
  2176. #include <linux/kd.h>
  2177. #include <linux/keyboard.h>
  2178. ],[
  2179. struct kbentry kbe;
  2180. kbe.kb_table = KG_CTRL;
  2181. ioctl(0, KDGKBENT, &kbe);
  2182. ],[
  2183. use_input_kd=yes
  2184. ])
  2185. AC_MSG_RESULT($use_input_kd)
  2186. if test x$use_input_kd = xyes; then
  2187. AC_DEFINE(SDL_INPUT_LINUXKD, 1, [ ])
  2188. SUMMARY_input="${SUMMARY_input} linuxkd"
  2189. fi
  2190. }
  2191. dnl See if the platform offers libudev for device enumeration and hotplugging.
  2192. CheckLibUDev()
  2193. {
  2194. AC_ARG_ENABLE(libudev,
  2195. AC_HELP_STRING([--enable-libudev], [enable libudev support [[default=yes]]]),
  2196. , enable_libudev=yes)
  2197. if test x$enable_libudev = xyes; then
  2198. AC_CHECK_HEADER(libudev.h,
  2199. have_libudev_h_hdr=yes,
  2200. have_libudev_h_hdr=no)
  2201. if test x$have_libudev_h_hdr = xyes; then
  2202. AC_DEFINE(HAVE_LIBUDEV_H, 1, [ ])
  2203. udev_lib=[`find_lib "libudev.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  2204. if test x$udev_lib != x; then
  2205. echo "-- dynamic udev -> $udev_lib"
  2206. AC_DEFINE_UNQUOTED(SDL_UDEV_DYNAMIC, "$udev_lib", [ ])
  2207. fi
  2208. fi
  2209. fi
  2210. }
  2211. dnl See if the platform offers libdbus for various IPC techniques.
  2212. CheckDBus()
  2213. {
  2214. AC_ARG_ENABLE(dbus,
  2215. AC_HELP_STRING([--enable-dbus], [enable D-Bus support [[default=yes]]]),
  2216. , enable_dbus=yes)
  2217. if test x$enable_dbus = xyes; then
  2218. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  2219. if test x$PKG_CONFIG != xno; then
  2220. DBUS_CFLAGS=`$PKG_CONFIG --cflags dbus-1`
  2221. save_CFLAGS="$CFLAGS"
  2222. CFLAGS="$save_CFLAGS $DBUS_CFLAGS"
  2223. AC_CHECK_HEADER(dbus/dbus.h,
  2224. have_dbus_dbus_h_hdr=yes,
  2225. have_dbus_dbus_h_hdr=no)
  2226. CFLAGS="$save_CFLAGS"
  2227. if test x$have_dbus_dbus_h_hdr = xyes; then
  2228. AC_DEFINE(HAVE_DBUS_DBUS_H, 1, [ ])
  2229. EXTRA_CFLAGS="$EXTRA_CFLAGS $DBUS_CFLAGS"
  2230. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_dbus.c"
  2231. fi
  2232. fi
  2233. fi
  2234. }
  2235. dnl See if the platform wanna IME support.
  2236. CheckIME()
  2237. {
  2238. AC_ARG_ENABLE(ime,
  2239. AC_HELP_STRING([--enable-ime], [enable IME support [[default=yes]]]),
  2240. , enable_ime=yes)
  2241. if test x$enable_ime = xyes; then
  2242. AC_DEFINE(SDL_USE_IME, 1, [ ])
  2243. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ime.c"
  2244. fi
  2245. }
  2246. dnl See if the platform has libibus IME support.
  2247. CheckIBus()
  2248. {
  2249. AC_ARG_ENABLE(ibus,
  2250. AC_HELP_STRING([--enable-ibus], [enable IBus support [[default=yes]]]),
  2251. , enable_ibus=yes)
  2252. if test x$enable_ibus = xyes; then
  2253. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  2254. if test x$PKG_CONFIG != xno; then
  2255. IBUS_CFLAGS=`$PKG_CONFIG --cflags ibus-1.0`
  2256. save_CFLAGS="$CFLAGS"
  2257. CFLAGS="$save_CFLAGS $IBUS_CFLAGS"
  2258. AC_CHECK_HEADER(ibus-1.0/ibus.h,
  2259. have_ibus_ibus_h_hdr=yes,
  2260. have_ibus_ibus_h_hdr=no)
  2261. AC_CHECK_HEADER(sys/inotify.h,
  2262. have_inotify_inotify_h_hdr=yes,
  2263. have_inotify_inotify_h_hdr=no)
  2264. CFLAGS="$save_CFLAGS"
  2265. if test x$have_ibus_ibus_h_hdr = xyes; then
  2266. if test x$enable_ime != xyes; then
  2267. AC_MSG_WARN([IME support is required for IBus.])
  2268. have_ibus_ibus_h_hdr=no
  2269. elif test x$enable_dbus != xyes; then
  2270. AC_MSG_WARN([DBus support is required for IBus.])
  2271. have_ibus_ibus_h_hdr=no
  2272. elif test x$have_inotify_inotify_h_hdr != xyes; then
  2273. AC_MSG_WARN([INotify support is required for IBus.])
  2274. have_ibus_ibus_h_hdr=no
  2275. else
  2276. AC_DEFINE(HAVE_IBUS_IBUS_H, 1, [ ])
  2277. EXTRA_CFLAGS="$EXTRA_CFLAGS $IBUS_CFLAGS"
  2278. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ibus.c"
  2279. fi
  2280. fi
  2281. fi
  2282. fi
  2283. }
  2284. dnl See if the platform has fcitx IME support.
  2285. CheckFcitx()
  2286. {
  2287. AC_ARG_ENABLE(fcitx,
  2288. AC_HELP_STRING([--enable-fcitx], [enable fcitx support [[default=yes]]]),
  2289. , enable_fcitx=yes)
  2290. if test x$enable_fcitx = xyes; then
  2291. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  2292. if test x$PKG_CONFIG != xno; then
  2293. FCITX_CFLAGS=`$PKG_CONFIG --cflags fcitx`
  2294. CFLAGS="$CFLAGS $FCITX_CFLAGS"
  2295. AC_CHECK_HEADER(fcitx/frontend.h,
  2296. have_fcitx_frontend_h_hdr=yes,
  2297. have_fcitx_frontend_h_hdr=no)
  2298. CFLAGS="$save_CFLAGS"
  2299. if test x$have_fcitx_frontend_h_hdr = xyes; then
  2300. if test x$enable_ime != xyes; then
  2301. AC_MSG_WARN([IME support is required for fcitx.])
  2302. have_fcitx_frontend_h_hdr=no
  2303. elif test x$enable_dbus != xyes; then
  2304. AC_MSG_WARN([DBus support is required for fcitx.])
  2305. have_fcitx_frontend_h_hdr=no
  2306. else
  2307. AC_DEFINE(HAVE_FCITX_FRONTEND_H, 1, [ ])
  2308. EXTRA_CFLAGS="$EXTRA_CFLAGS $FCITX_CFLAGS"
  2309. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_fcitx.c"
  2310. fi
  2311. fi
  2312. fi
  2313. fi
  2314. }
  2315. dnl See if we can use the Touchscreen input library
  2316. CheckTslib()
  2317. {
  2318. AC_ARG_ENABLE(input-tslib,
  2319. AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
  2320. , enable_input_tslib=yes)
  2321. if test x$enable_input_tslib = xyes; then
  2322. AC_MSG_CHECKING(for Touchscreen library support)
  2323. enable_input_tslib=no
  2324. AC_TRY_COMPILE([
  2325. #include "tslib.h"
  2326. ],[
  2327. ],[
  2328. enable_input_tslib=yes
  2329. ])
  2330. AC_MSG_RESULT($enable_input_tslib)
  2331. if test x$enable_input_tslib = xyes; then
  2332. AC_DEFINE(SDL_INPUT_TSLIB, 1, [ ])
  2333. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
  2334. SUMMARY_input="${SUMMARY_input} ts"
  2335. fi
  2336. fi
  2337. }
  2338. dnl See what type of thread model to use on Linux and Solaris
  2339. CheckPTHREAD()
  2340. {
  2341. dnl Check for pthread support
  2342. AC_ARG_ENABLE(pthreads,
  2343. AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
  2344. , enable_pthreads=yes)
  2345. dnl This is used on Linux for glibc binary compatibility (Doh!)
  2346. AC_ARG_ENABLE(pthread-sem,
  2347. AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
  2348. , enable_pthread_sem=yes)
  2349. case "$host" in
  2350. *-*-androideabi*)
  2351. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2352. pthread_lib=""
  2353. ;;
  2354. *-*-linux*|*-*-uclinux*)
  2355. pthread_cflags="-D_REENTRANT"
  2356. pthread_lib="-lpthread"
  2357. ;;
  2358. *-*-bsdi*)
  2359. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2360. pthread_lib=""
  2361. ;;
  2362. *-*-darwin*)
  2363. pthread_cflags="-D_THREAD_SAFE"
  2364. # causes Carbon.p complaints?
  2365. # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2366. ;;
  2367. *-*-freebsd*|*-*-dragonfly*)
  2368. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2369. pthread_lib="-pthread"
  2370. ;;
  2371. *-*-netbsd*)
  2372. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2373. pthread_lib="-lpthread"
  2374. ;;
  2375. *-*-openbsd*)
  2376. pthread_cflags="-D_REENTRANT"
  2377. pthread_lib="-pthread"
  2378. ;;
  2379. *-*-solaris2.9)
  2380. # From Solaris 9+, posix4's preferred name is rt.
  2381. pthread_cflags="-D_REENTRANT"
  2382. pthread_lib="-lpthread -lrt"
  2383. ;;
  2384. *-*-solaris2.10)
  2385. # Solaris 10+ merged pthread into libc.
  2386. pthread_cflags="-D_REENTRANT"
  2387. pthread_lib="-lrt"
  2388. ;;
  2389. *-*-solaris*)
  2390. # Solaris 11+ merged rt into libc.
  2391. pthread_cflags="-D_REENTRANT"
  2392. pthread_lib=""
  2393. ;;
  2394. *-*-sysv5*)
  2395. pthread_cflags="-D_REENTRANT -Kthread"
  2396. pthread_lib=""
  2397. ;;
  2398. *-*-aix*)
  2399. pthread_cflags="-D_REENTRANT -mthreads"
  2400. pthread_lib="-lpthread"
  2401. ;;
  2402. *-*-hpux11*)
  2403. pthread_cflags="-D_REENTRANT"
  2404. pthread_lib="-L/usr/lib -lpthread"
  2405. ;;
  2406. *-*-haiku*)
  2407. pthread_cflags="-D_REENTRANT"
  2408. pthread_lib=""
  2409. ;;
  2410. *-*-nto*)
  2411. pthread_cflags="-D_REENTRANT"
  2412. pthread_lib=""
  2413. ;;
  2414. *)
  2415. pthread_cflags="-D_REENTRANT"
  2416. pthread_lib="-lpthread"
  2417. ;;
  2418. esac
  2419. if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
  2420. # Save the original compiler flags and libraries
  2421. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2422. # Add the pthread compiler flags and libraries
  2423. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2424. # Check to see if we have pthread support on this system
  2425. AC_MSG_CHECKING(for pthreads)
  2426. use_pthreads=no
  2427. AC_TRY_LINK([
  2428. #include <pthread.h>
  2429. ],[
  2430. pthread_attr_t type;
  2431. pthread_attr_init(&type);
  2432. ],[
  2433. use_pthreads=yes
  2434. ])
  2435. AC_MSG_RESULT($use_pthreads)
  2436. # Restore the compiler flags and libraries
  2437. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2438. # Do futher testing if we have pthread support...
  2439. if test x$use_pthreads = xyes; then
  2440. AC_DEFINE(SDL_THREAD_PTHREAD, 1, [ ])
  2441. EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
  2442. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
  2443. SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
  2444. # Save the original compiler flags and libraries
  2445. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2446. # Add the pthread compiler flags and libraries
  2447. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2448. # Check to see if recursive mutexes are available
  2449. AC_MSG_CHECKING(for recursive mutexes)
  2450. has_recursive_mutexes=no
  2451. if test x$has_recursive_mutexes = xno; then
  2452. AC_TRY_LINK([
  2453. #define _GNU_SOURCE 1
  2454. #include <pthread.h>
  2455. ],[
  2456. pthread_mutexattr_t attr;
  2457. pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
  2458. ],[
  2459. has_recursive_mutexes=yes
  2460. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX, 1, [ ])
  2461. ])
  2462. fi
  2463. if test x$has_recursive_mutexes = xno; then
  2464. AC_TRY_LINK([
  2465. #define _GNU_SOURCE 1
  2466. #include <pthread.h>
  2467. ],[
  2468. pthread_mutexattr_t attr;
  2469. pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
  2470. ],[
  2471. has_recursive_mutexes=yes
  2472. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP, 1, [ ])
  2473. ])
  2474. fi
  2475. AC_MSG_RESULT($has_recursive_mutexes)
  2476. # Check to see if pthread semaphore support is missing
  2477. if test x$enable_pthread_sem = xyes; then
  2478. AC_MSG_CHECKING(for pthread semaphores)
  2479. have_pthread_sem=no
  2480. AC_TRY_COMPILE([
  2481. #include <pthread.h>
  2482. #include <semaphore.h>
  2483. ],[
  2484. ],[
  2485. have_pthread_sem=yes
  2486. ])
  2487. AC_MSG_RESULT($have_pthread_sem)
  2488. fi
  2489. if test x$have_pthread_sem = xyes; then
  2490. AC_MSG_CHECKING(for sem_timedwait)
  2491. have_sem_timedwait=no
  2492. AC_TRY_LINK([
  2493. #include <pthread.h>
  2494. #include <semaphore.h>
  2495. ],[
  2496. sem_timedwait(NULL, NULL);
  2497. ],[
  2498. have_sem_timedwait=yes
  2499. AC_DEFINE([HAVE_SEM_TIMEDWAIT], 1, [ ])
  2500. ])
  2501. AC_MSG_RESULT($have_sem_timedwait)
  2502. fi
  2503. AC_CHECK_HEADER(pthread_np.h, have_pthread_np_h=yes, have_pthread_np_h=no, [ #include <pthread.h> ])
  2504. if test x$have_pthread_np_h = xyes; then
  2505. AC_DEFINE(HAVE_PTHREAD_NP_H, 1, [ ])
  2506. fi
  2507. # Check to see if pthread naming is available
  2508. AC_MSG_CHECKING(for pthread_setname_np)
  2509. AC_TRY_LINK_FUNC(pthread_setname_np, [
  2510. has_pthread_setname_np=yes
  2511. AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [ ])
  2512. ],[
  2513. has_pthread_setname_np=no
  2514. ])
  2515. AC_MSG_RESULT($has_pthread_setname_np)
  2516. AC_MSG_CHECKING(for pthread_set_name_np)
  2517. AC_TRY_LINK_FUNC(pthread_set_name_np, [
  2518. has_pthread_set_name_np=yes
  2519. AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [ ])
  2520. ],[
  2521. has_pthread_set_name_np=no
  2522. ])
  2523. AC_MSG_RESULT($has_pthread_set_name_np)
  2524. # Restore the compiler flags and libraries
  2525. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2526. # Basic thread creation functions
  2527. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
  2528. # Semaphores
  2529. # We can fake these with mutexes and condition variables if necessary
  2530. if test x$have_pthread_sem = xyes; then
  2531. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
  2532. else
  2533. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
  2534. fi
  2535. # Mutexes
  2536. # We can fake these with semaphores if necessary
  2537. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
  2538. # Condition variables
  2539. # We can fake these with semaphores and mutexes if necessary
  2540. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
  2541. # Thread local storage
  2542. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systls.c"
  2543. have_threads=yes
  2544. fi
  2545. fi
  2546. }
  2547. dnl Determine whether the compiler can produce Windows executables
  2548. CheckWINDOWS()
  2549. {
  2550. AC_MSG_CHECKING(Windows compiler)
  2551. have_win32_gcc=no
  2552. AC_TRY_COMPILE([
  2553. #include <windows.h>
  2554. ],[
  2555. ],[
  2556. have_win32_gcc=yes
  2557. ])
  2558. AC_MSG_RESULT($have_win32_gcc)
  2559. if test x$have_win32_gcc != xyes; then
  2560. AC_MSG_ERROR([
  2561. *** Your compiler ($CC) does not produce Windows executables!
  2562. ])
  2563. fi
  2564. AC_MSG_CHECKING(Windows CE)
  2565. have_wince=no
  2566. AC_TRY_COMPILE([
  2567. #if !defined(_WIN32_WCE) && !defined(__MINGW32CE__)
  2568. #error This is not Windows CE
  2569. #endif
  2570. ],[
  2571. ],[
  2572. have_wince=yes
  2573. AC_MSG_ERROR([
  2574. *** Sorry, Windows CE is no longer supported.
  2575. ])
  2576. ])
  2577. AC_MSG_RESULT($have_wince)
  2578. # This fixes Windows stack alignment with newer GCC
  2579. CheckStackBoundary
  2580. }
  2581. dnl Find the DirectX includes and libraries
  2582. CheckDIRECTX()
  2583. {
  2584. AC_ARG_ENABLE(directx,
  2585. AC_HELP_STRING([--enable-directx], [use DirectX for Windows audio/video [[default=yes]]]),
  2586. , enable_directx=yes)
  2587. if test x$enable_directx = xyes; then
  2588. AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
  2589. AC_CHECK_HEADER(d3d11_1.h, have_d3d11=yes)
  2590. AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
  2591. AC_CHECK_HEADER(dsound.h, have_dsound=yes)
  2592. AC_CHECK_HEADER(dinput.h, have_dinput=yes)
  2593. AC_CHECK_HEADER(dxgi.h, have_dxgi=yes)
  2594. AC_CHECK_HEADER(xaudio2.h, have_xaudio2=yes)
  2595. AC_CHECK_HEADER(xinput.h, have_xinput=yes)
  2596. if test x$have_ddraw = xyes; then
  2597. AC_DEFINE(HAVE_DDRAW_H, 1, [ ])
  2598. fi
  2599. if test x$have_dinput = xyes; then
  2600. AC_DEFINE(HAVE_DINPUT_H, 1, [ ])
  2601. fi
  2602. if test x$have_dsound = xyes; then
  2603. AC_DEFINE(HAVE_DSOUND_H, 1, [ ])
  2604. fi
  2605. if test x$have_dxgi = xyes; then
  2606. AC_DEFINE(HAVE_DXGI_H, 1, [ ])
  2607. fi
  2608. if test x$have_xinput = xyes; then
  2609. AC_DEFINE(HAVE_XINPUT_H, 1, [ ])
  2610. fi
  2611. SUMMARY_video="${SUMMARY_video} directx"
  2612. SUMMARY_audio="${SUMMARY_audio} directx"
  2613. # FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers.
  2614. # FIXME: ...so force it off for now.
  2615. case "$host" in
  2616. *-*-cygwin*)
  2617. have_dinput=false
  2618. ;;
  2619. esac
  2620. fi
  2621. }
  2622. dnl Check for the dlfcn.h interface for dynamically loading objects
  2623. CheckDLOPEN()
  2624. {
  2625. AC_ARG_ENABLE(sdl-dlopen,
  2626. AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
  2627. , enable_sdl_dlopen=yes)
  2628. if test x$enable_sdl_dlopen = xyes; then
  2629. AC_MSG_CHECKING(for dlopen)
  2630. have_dlopen=no
  2631. AC_TRY_COMPILE([
  2632. #include <dlfcn.h>
  2633. ],[
  2634. void *handle = dlopen("", RTLD_NOW);
  2635. const char *loaderror = (char *) dlerror();
  2636. ],[
  2637. have_dlopen=yes
  2638. ])
  2639. AC_MSG_RESULT($have_dlopen)
  2640. if test x$have_dlopen = xyes; then
  2641. AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
  2642. AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
  2643. AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
  2644. AC_DEFINE(SDL_LOADSO_DLOPEN, 1, [ ])
  2645. SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
  2646. have_loadso=yes
  2647. fi
  2648. fi
  2649. }
  2650. dnl Check for the usbhid(3) library on *BSD
  2651. CheckUSBHID()
  2652. {
  2653. case "$host" in
  2654. *-*-*bsd*)
  2655. if test x$enable_joystick = xyes; then
  2656. AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
  2657. if test x$have_libusbhid = xyes; then
  2658. AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
  2659. AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
  2660. USB_LIBS="$USB_LIBS -lusbhid"
  2661. else
  2662. AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
  2663. AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
  2664. AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
  2665. fi
  2666. save_CFLAGS="$CFLAGS"
  2667. CFLAGS="$CFLAGS $USB_CFLAGS"
  2668. AC_MSG_CHECKING(for usbhid)
  2669. have_usbhid=no
  2670. AC_TRY_COMPILE([
  2671. #include <sys/types.h>
  2672. #if defined(HAVE_USB_H)
  2673. #include <usb.h>
  2674. #endif
  2675. #ifdef __DragonFly__
  2676. # include <bus/usb/usb.h>
  2677. # include <bus/usb/usbhid.h>
  2678. #else
  2679. # include <dev/usb/usb.h>
  2680. # include <dev/usb/usbhid.h>
  2681. #endif
  2682. #if defined(HAVE_USBHID_H)
  2683. #include <usbhid.h>
  2684. #elif defined(HAVE_LIBUSB_H)
  2685. #include <libusb.h>
  2686. #elif defined(HAVE_LIBUSBHID_H)
  2687. #include <libusbhid.h>
  2688. #endif
  2689. ],[
  2690. struct report_desc *repdesc;
  2691. struct usb_ctl_report *repbuf;
  2692. hid_kind_t hidkind;
  2693. ],[
  2694. have_usbhid=yes
  2695. ])
  2696. AC_MSG_RESULT($have_usbhid)
  2697. if test x$have_usbhid = xyes; then
  2698. AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
  2699. have_usbhid_ucr_data=no
  2700. AC_TRY_COMPILE([
  2701. #include <sys/types.h>
  2702. #if defined(HAVE_USB_H)
  2703. #include <usb.h>
  2704. #endif
  2705. #ifdef __DragonFly__
  2706. # include <bus/usb/usb.h>
  2707. # include <bus/usb/usbhid.h>
  2708. #else
  2709. # include <dev/usb/usb.h>
  2710. # include <dev/usb/usbhid.h>
  2711. #endif
  2712. #if defined(HAVE_USBHID_H)
  2713. #include <usbhid.h>
  2714. #elif defined(HAVE_LIBUSB_H)
  2715. #include <libusb.h>
  2716. #elif defined(HAVE_LIBUSBHID_H)
  2717. #include <libusbhid.h>
  2718. #endif
  2719. ],[
  2720. struct usb_ctl_report buf;
  2721. if (buf.ucr_data) { }
  2722. ],[
  2723. have_usbhid_ucr_data=yes
  2724. ])
  2725. if test x$have_usbhid_ucr_data = xyes; then
  2726. USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
  2727. fi
  2728. AC_MSG_RESULT($have_usbhid_ucr_data)
  2729. AC_MSG_CHECKING(for new usbhid API)
  2730. have_usbhid_new=no
  2731. AC_TRY_COMPILE([
  2732. #include <sys/types.h>
  2733. #if defined(HAVE_USB_H)
  2734. #include <usb.h>
  2735. #endif
  2736. #ifdef __DragonFly__
  2737. #include <bus/usb/usb.h>
  2738. #include <bus/usb/usbhid.h>
  2739. #else
  2740. #include <dev/usb/usb.h>
  2741. #include <dev/usb/usbhid.h>
  2742. #endif
  2743. #if defined(HAVE_USBHID_H)
  2744. #include <usbhid.h>
  2745. #elif defined(HAVE_LIBUSB_H)
  2746. #include <libusb.h>
  2747. #elif defined(HAVE_LIBUSBHID_H)
  2748. #include <libusbhid.h>
  2749. #endif
  2750. ],[
  2751. report_desc_t d;
  2752. hid_start_parse(d, 1, 1);
  2753. ],[
  2754. have_usbhid_new=yes
  2755. ])
  2756. if test x$have_usbhid_new = xyes; then
  2757. USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
  2758. fi
  2759. AC_MSG_RESULT($have_usbhid_new)
  2760. AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
  2761. have_machine_joystick=no
  2762. AC_TRY_COMPILE([
  2763. #include <machine/joystick.h>
  2764. ],[
  2765. struct joystick t;
  2766. ],[
  2767. have_machine_joystick=yes
  2768. ])
  2769. if test x$have_machine_joystick = xyes; then
  2770. AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H, 1, [ ])
  2771. fi
  2772. AC_MSG_RESULT($have_machine_joystick)
  2773. AC_DEFINE(SDL_JOYSTICK_USBHID, 1, [ ])
  2774. SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
  2775. EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
  2776. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
  2777. have_joystick=yes
  2778. fi
  2779. CFLAGS="$save_CFLAGS"
  2780. fi
  2781. ;;
  2782. esac
  2783. }
  2784. dnl Check for clock_gettime()
  2785. CheckClockGettime()
  2786. {
  2787. AC_ARG_ENABLE(clock_gettime,
  2788. AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=yes]]]),
  2789. , enable_clock_gettime=yes)
  2790. if test x$enable_clock_gettime = xyes; then
  2791. AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
  2792. if test x$have_clock_gettime = xyes; then
  2793. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  2794. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
  2795. else
  2796. AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
  2797. if test x$have_clock_gettime = xyes; then
  2798. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  2799. EXTRA_LDFLAGS="$EXTRA_LDFLAGS"
  2800. fi
  2801. fi
  2802. fi
  2803. }
  2804. dnl Check for a valid linux/version.h
  2805. CheckLinuxVersion()
  2806. {
  2807. AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
  2808. if test x$have_linux_version_h = xyes; then
  2809. EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
  2810. fi
  2811. }
  2812. dnl Check if we want to use RPATH
  2813. CheckRPATH()
  2814. {
  2815. AC_ARG_ENABLE(rpath,
  2816. AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
  2817. , enable_rpath=yes)
  2818. }
  2819. dnl Do this on all platforms, before everything else (other things might want to override it).
  2820. CheckWarnAll
  2821. dnl Set up the configuration based on the host platform!
  2822. case "$host" in
  2823. *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-aix*|*-*-minix*|*-*-nto*)
  2824. case "$host" in
  2825. *-raspberry-linux*)
  2826. # Raspberry Pi
  2827. ARCH=linux
  2828. RPI_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
  2829. CFLAGS="$CFLAGS $RPI_CFLAGS"
  2830. SDL_CFLAGS="$SDL_CFLAGS $RPI_CFLAGS"
  2831. EXTRA_CFLAGS="$EXTRA_CFLAGS $RPI_CFLAGS"
  2832. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/opt/vc/lib -lbcm_host -ldl"
  2833. if test x$enable_video = xyes; then
  2834. SOURCES="$SOURCES $srcdir/src/video/raspberry/*.c"
  2835. # FIXME: confdefs? Not AC_DEFINE?
  2836. $as_echo "#define SDL_VIDEO_DRIVER_RPI 1" >>confdefs.h
  2837. SUMMARY_video="${SUMMARY_video} rpi"
  2838. fi
  2839. ;;
  2840. *-*-androideabi*)
  2841. # Android
  2842. ARCH=android
  2843. ANDROID_CFLAGS="-DGL_GLEXT_PROTOTYPES"
  2844. CFLAGS="$CFLAGS $ANDROID_CFLAGS"
  2845. SDL_CFLAGS="$SDL_CFLAGS $ANDROID_CFLAGS"
  2846. EXTRA_CFLAGS="$EXTRA_CFLAGS $ANDROID_CFLAGS"
  2847. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl -lGLESv1_CM -lGLESv2 -llog -landroid"
  2848. if test x$enable_video = xyes; then
  2849. SOURCES="$SOURCES $srcdir/src/core/android/*.c $srcdir/src/video/android/*.c"
  2850. # FIXME: confdefs? Not AC_DEFINE?
  2851. $as_echo "#define SDL_VIDEO_DRIVER_ANDROID 1" >>confdefs.h
  2852. SUMMARY_video="${SUMMARY_video} android"
  2853. fi
  2854. ;;
  2855. *-*-linux*) ARCH=linux ;;
  2856. *-*-uclinux*) ARCH=linux ;;
  2857. *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
  2858. *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
  2859. *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
  2860. *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
  2861. *-*-bsdi*) ARCH=bsdi ;;
  2862. *-*-freebsd*) ARCH=freebsd ;;
  2863. *-*-dragonfly*) ARCH=freebsd ;;
  2864. *-raspberry-netbsd*)
  2865. # Raspberry Pi
  2866. ARCH=netbsd
  2867. RPI_CFLAGS="-I/usr/pkg/include -I/usr/pkg/include/interface/vcos/pthreads -I/usr/pkg/include/interface/vmcs_host/linux"
  2868. CFLAGS="$CFLAGS $RPI_CFLAGS"
  2869. SDL_CFLAGS="$SDL_CFLAGS $RPI_CFLAGS"
  2870. EXTRA_CFLAGS="$EXTRA_CFLAGS $RPI_CFLAGS"
  2871. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-R/usr/pkg/lib -L/usr/pkg/lib -lbcm_host -ldl"
  2872. if test x$enable_video = xyes; then
  2873. SOURCES="$SOURCES $srcdir/src/video/raspberry/*.c"
  2874. $as_echo "#define SDL_VIDEO_DRIVER_RPI 1" >>confdefs.h
  2875. SUMMARY_video="${SUMMARY_video} raspberry"
  2876. fi
  2877. ;;
  2878. *-*-netbsd*) ARCH=netbsd ;;
  2879. *-*-openbsd*) ARCH=openbsd ;;
  2880. *-*-sysv5*) ARCH=sysv5 ;;
  2881. *-*-solaris*) ARCH=solaris ;;
  2882. *-*-hpux*) ARCH=hpux ;;
  2883. *-*-aix*) ARCH=aix ;;
  2884. *-*-minix*) ARCH=minix ;;
  2885. *-*-nto*) ARCH=nto
  2886. CheckQNXVideo
  2887. ;;
  2888. esac
  2889. CheckVisibilityHidden
  2890. CheckDeclarationAfterStatement
  2891. CheckDummyVideo
  2892. CheckDiskAudio
  2893. CheckDummyAudio
  2894. CheckDLOPEN
  2895. CheckOSS
  2896. CheckALSA
  2897. CheckPulseAudio
  2898. CheckJACK
  2899. CheckARTSC
  2900. CheckESD
  2901. CheckNAS
  2902. CheckSNDIO
  2903. CheckFusionSound
  2904. CheckLibSampleRate
  2905. CheckX11
  2906. CheckDirectFB
  2907. CheckOpenGLX11
  2908. CheckOpenGLESX11
  2909. CheckMir
  2910. CheckWayland
  2911. CheckLibUDev
  2912. CheckDBus
  2913. CheckIME
  2914. CheckIBus
  2915. CheckFcitx
  2916. case $ARCH in
  2917. linux)
  2918. CheckInputEvents
  2919. CheckInputKD
  2920. ;;
  2921. esac
  2922. CheckTslib
  2923. CheckUSBHID
  2924. CheckPTHREAD
  2925. CheckClockGettime
  2926. CheckLinuxVersion
  2927. CheckRPATH
  2928. CheckVivanteVideo
  2929. # Set up files for the audio library
  2930. if test x$enable_audio = xyes; then
  2931. case $ARCH in
  2932. sysv5|solaris|hpux)
  2933. AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO, 1, [ ])
  2934. SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
  2935. have_audio=yes
  2936. ;;
  2937. netbsd) # Don't use this on OpenBSD, it's busted.
  2938. AC_DEFINE(SDL_AUDIO_DRIVER_NETBSD, 1, [ ])
  2939. SOURCES="$SOURCES $srcdir/src/audio/netbsd/*.c"
  2940. have_audio=yes
  2941. ;;
  2942. aix)
  2943. AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO, 1, [ ])
  2944. SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
  2945. have_audio=yes
  2946. ;;
  2947. android)
  2948. AC_DEFINE(SDL_AUDIO_DRIVER_ANDROID, 1, [ ])
  2949. SOURCES="$SOURCES $srcdir/src/audio/android/*.c"
  2950. SUMMARY_audio="${SUMMARY_audio} android"
  2951. have_audio=yes
  2952. ;;
  2953. nto)
  2954. CheckQNXAudio
  2955. ;;
  2956. esac
  2957. fi
  2958. # Set up files for the joystick library
  2959. if test x$enable_joystick = xyes; then
  2960. case $ARCH in
  2961. linux)
  2962. AC_DEFINE(SDL_JOYSTICK_LINUX, 1, [ ])
  2963. SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
  2964. have_joystick=yes
  2965. ;;
  2966. android)
  2967. AC_DEFINE(SDL_JOYSTICK_ANDROID, 1, [ ])
  2968. SOURCES="$SOURCES $srcdir/src/joystick/android/*.c"
  2969. have_joystick=yes
  2970. ;;
  2971. esac
  2972. fi
  2973. # Set up files for the haptic library
  2974. if test x$enable_haptic = xyes; then
  2975. if test x$use_input_events = xyes; then
  2976. case $ARCH in
  2977. linux)
  2978. AC_DEFINE(SDL_HAPTIC_LINUX, 1, [ ])
  2979. SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
  2980. have_haptic=yes
  2981. ;;
  2982. esac
  2983. fi
  2984. fi
  2985. # Set up files for the power library
  2986. if test x$enable_power = xyes; then
  2987. case $ARCH in
  2988. linux)
  2989. AC_DEFINE(SDL_POWER_LINUX, 1, [ ])
  2990. SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
  2991. have_power=yes
  2992. ;;
  2993. android)
  2994. AC_DEFINE(SDL_POWER_ANDROID, 1, [ ])
  2995. SOURCES="$SOURCES $srcdir/src/power/android/*.c"
  2996. have_power=yes
  2997. ;;
  2998. esac
  2999. fi
  3000. # Set up files for the filesystem library
  3001. if test x$enable_filesystem = xyes; then
  3002. case $ARCH in
  3003. android)
  3004. AC_DEFINE(SDL_FILESYSTEM_ANDROID, 1, [ ])
  3005. SOURCES="$SOURCES $srcdir/src/filesystem/android/*.c"
  3006. have_filesystem=yes
  3007. ;;
  3008. *)
  3009. AC_DEFINE(SDL_FILESYSTEM_UNIX, 1, [ ])
  3010. SOURCES="$SOURCES $srcdir/src/filesystem/unix/*.c"
  3011. have_filesystem=yes
  3012. ;;
  3013. esac
  3014. fi
  3015. # Set up files for the timer library
  3016. if test x$enable_timers = xyes; then
  3017. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3018. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3019. have_timers=yes
  3020. fi
  3021. # Set up files for udev hotplugging support
  3022. if test x$enable_libudev = xyes && test x$have_libudev_h_hdr = xyes; then
  3023. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_udev.c"
  3024. fi
  3025. # Set up files for evdev input
  3026. if test x$use_input_events = xyes; then
  3027. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_evdev*.c"
  3028. fi
  3029. ;;
  3030. *-*-cygwin* | *-*-mingw32*)
  3031. ARCH=win32
  3032. if test "$build" != "$host"; then # cross-compiling
  3033. # Default cross-compile location
  3034. ac_default_prefix=/usr/local/cross-tools/$host
  3035. else
  3036. # Look for the location of the tools and install there
  3037. if test "$BUILD_PREFIX" != ""; then
  3038. ac_default_prefix=$BUILD_PREFIX
  3039. fi
  3040. fi
  3041. CheckDeclarationAfterStatement
  3042. CheckDummyVideo
  3043. CheckDiskAudio
  3044. CheckDummyAudio
  3045. CheckWINDOWS
  3046. CheckWINDOWSGL
  3047. CheckWINDOWSGLES
  3048. CheckDIRECTX
  3049. # Set up the core platform files
  3050. SOURCES="$SOURCES $srcdir/src/core/windows/*.c"
  3051. # Set up files for the video library
  3052. if test x$enable_video = xyes; then
  3053. AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS, 1, [ ])
  3054. SOURCES="$SOURCES $srcdir/src/video/windows/*.c"
  3055. have_video=yes
  3056. AC_ARG_ENABLE(render-d3d,
  3057. AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
  3058. , enable_render_d3d=yes)
  3059. if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
  3060. AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ])
  3061. fi
  3062. if test x$enable_render_d3d = xyes -a x$have_d3d11 = xyes; then
  3063. AC_DEFINE(SDL_VIDEO_RENDER_D3D11, 1, [ ])
  3064. fi
  3065. fi
  3066. # Set up files for the audio library
  3067. if test x$enable_audio = xyes; then
  3068. AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ])
  3069. SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c"
  3070. if test x$have_dsound = xyes; then
  3071. AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ])
  3072. SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c"
  3073. fi
  3074. if test x$have_xaudio2 = xyes; then
  3075. AC_DEFINE(SDL_AUDIO_DRIVER_XAUDIO2, 1, [ ])
  3076. SOURCES="$SOURCES $srcdir/src/audio/xaudio2/*.c"
  3077. fi
  3078. have_audio=yes
  3079. fi
  3080. # Set up files for the joystick library
  3081. if test x$enable_joystick = xyes; then
  3082. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  3083. if test x$have_xinput = xyes; then
  3084. AC_DEFINE(SDL_JOYSTICK_XINPUT, 1, [ ])
  3085. fi
  3086. if test x$have_dinput = xyes; then
  3087. AC_DEFINE(SDL_JOYSTICK_DINPUT, 1, [ ])
  3088. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8"
  3089. fi
  3090. else
  3091. AC_DEFINE(SDL_JOYSTICK_WINMM, 1, [ ])
  3092. fi
  3093. SOURCES="$SOURCES $srcdir/src/joystick/windows/*.c"
  3094. have_joystick=yes
  3095. fi
  3096. if test x$enable_haptic = xyes; then
  3097. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  3098. if test x$have_xinput = xyes; then
  3099. AC_DEFINE(SDL_HAPTIC_XINPUT, 1, [ ])
  3100. fi
  3101. if test x$have_dinput = xyes; then
  3102. AC_DEFINE(SDL_HAPTIC_DINPUT, 1, [ ])
  3103. fi
  3104. SOURCES="$SOURCES $srcdir/src/haptic/windows/*.c"
  3105. have_haptic=yes
  3106. fi
  3107. fi
  3108. if test x$enable_power = xyes; then
  3109. AC_DEFINE(SDL_POWER_WINDOWS, 1, [ ])
  3110. SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
  3111. have_power=yes
  3112. fi
  3113. if test x$enable_filesystem = xyes; then
  3114. AC_DEFINE(SDL_FILESYSTEM_WINDOWS, 1, [ ])
  3115. SOURCES="$SOURCES $srcdir/src/filesystem/windows/SDL_sysfilesystem.c"
  3116. have_filesystem=yes
  3117. fi
  3118. # Set up files for the thread library
  3119. if test x$enable_threads = xyes; then
  3120. AC_DEFINE(SDL_THREAD_WINDOWS, 1, [ ])
  3121. SOURCES="$SOURCES $srcdir/src/thread/windows/*.c"
  3122. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
  3123. have_threads=yes
  3124. fi
  3125. # Set up files for the timer library
  3126. if test x$enable_timers = xyes; then
  3127. AC_DEFINE(SDL_TIMER_WINDOWS, 1, [ ])
  3128. SOURCES="$SOURCES $srcdir/src/timer/windows/*.c"
  3129. have_timers=yes
  3130. fi
  3131. # Set up files for the shared object loading library
  3132. if test x$enable_loadso = xyes; then
  3133. AC_DEFINE(SDL_LOADSO_WINDOWS, 1, [ ])
  3134. SOURCES="$SOURCES $srcdir/src/loadso/windows/*.c"
  3135. have_loadso=yes
  3136. fi
  3137. # Set up the system libraries we need
  3138. if test -f /lib/w32api/libuuid.a; then
  3139. LIBUUID=/lib/w32api/libuuid.a
  3140. else
  3141. LIBUUID=-luuid
  3142. fi
  3143. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lversion $LIBUUID -static-libgcc"
  3144. # The Windows platform requires special setup
  3145. VERSION_SOURCES="$srcdir/src/main/windows/*.rc"
  3146. SDLMAIN_SOURCES="$srcdir/src/main/windows/*.c"
  3147. SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
  3148. SDL_LIBS="-lSDL2main $SDL_LIBS -mwindows"
  3149. # Check to see if this is a mingw or cygwin build
  3150. have_mingw32=
  3151. AC_CHECK_LIB(mingw32, main, [have_mingw32=yes])
  3152. if test x$have_mingw32 = xyes; then
  3153. SDL_LIBS="-lmingw32 $SDL_LIBS"
  3154. else
  3155. SDL_LIBS="-lcygwin $SDL_LIBS"
  3156. fi
  3157. ;;
  3158. dnl BeOS support removed after SDL 2.0.1. Haiku still works. --ryan.
  3159. *-*-beos*)
  3160. AC_MSG_ERROR([
  3161. *** BeOS support has been removed as of SDL 2.0.2.
  3162. ])
  3163. ;;
  3164. *-*-haiku*)
  3165. ARCH=haiku
  3166. ac_default_prefix=/boot/system
  3167. CheckDummyVideo
  3168. CheckDiskAudio
  3169. CheckDummyAudio
  3170. CheckDLOPEN
  3171. CheckHaikuVideo
  3172. CheckHaikuGL
  3173. CheckPTHREAD
  3174. # Set up files for the audio library
  3175. if test x$enable_audio = xyes; then
  3176. AC_DEFINE(SDL_AUDIO_DRIVER_HAIKU, 1, [ ])
  3177. SOURCES="$SOURCES $srcdir/src/audio/haiku/*.cc"
  3178. have_audio=yes
  3179. fi
  3180. # Set up files for the joystick library
  3181. if test x$enable_joystick = xyes; then
  3182. AC_DEFINE(SDL_JOYSTICK_HAIKU, 1, [ ])
  3183. SOURCES="$SOURCES $srcdir/src/joystick/haiku/*.cc"
  3184. have_joystick=yes
  3185. fi
  3186. # Set up files for the timer library
  3187. if test x$enable_timers = xyes; then
  3188. AC_DEFINE(SDL_TIMER_HAIKU, 1, [ ])
  3189. SOURCES="$SOURCES $srcdir/src/timer/haiku/*.c"
  3190. have_timers=yes
  3191. fi
  3192. # Set up files for the system power library
  3193. if test x$enable_power = xyes; then
  3194. AC_DEFINE(SDL_POWER_HAIKU, 1, [ ])
  3195. SOURCES="$SOURCES $srcdir/src/power/haiku/*.c"
  3196. have_power=yes
  3197. fi
  3198. # Set up files for the system filesystem library
  3199. if test x$enable_filesystem = xyes; then
  3200. AC_DEFINE(SDL_FILESYSTEM_HAIKU, 1, [ ])
  3201. SOURCES="$SOURCES $srcdir/src/filesystem/haiku/*.cc"
  3202. have_filesystem=yes
  3203. fi
  3204. # The Haiku platform requires special setup.
  3205. SOURCES="$srcdir/src/main/haiku/*.cc $SOURCES"
  3206. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding -lstdc++.r4"
  3207. ;;
  3208. arm*-apple-darwin*|*-ios-*)
  3209. ARCH=ios
  3210. CheckVisibilityHidden
  3211. CheckDeclarationAfterStatement
  3212. CheckDummyVideo
  3213. CheckDiskAudio
  3214. CheckDummyAudio
  3215. CheckDLOPEN
  3216. CheckPTHREAD
  3217. # Set up files for the audio library
  3218. if test x$enable_audio = xyes; then
  3219. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  3220. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
  3221. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3222. have_audio=yes
  3223. fi
  3224. # Set up files for the joystick library
  3225. if test x$enable_joystick = xyes; then
  3226. AC_DEFINE(SDL_JOYSTICK_MFI, 1, [ ])
  3227. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  3228. have_joystick=yes
  3229. fi
  3230. # Set up files for the haptic library
  3231. #if test x$enable_haptic = xyes; then
  3232. # SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  3233. # have_haptic=yes
  3234. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  3235. #fi
  3236. # Set up files for the power library
  3237. if test x$enable_power = xyes; then
  3238. AC_DEFINE(SDL_POWER_UIKIT, 1, [ ])
  3239. SOURCES="$SOURCES $srcdir/src/power/uikit/*.m"
  3240. have_power=yes
  3241. fi
  3242. # Set up files for the filesystem library
  3243. if test x$enable_filesystem = xyes; then
  3244. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  3245. have_filesystem=yes
  3246. fi
  3247. # Set up additional files for the file library
  3248. if test x$enable_file = xyes; then
  3249. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  3250. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  3251. fi
  3252. # Set up files for the timer library
  3253. if test x$enable_timers = xyes; then
  3254. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3255. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3256. have_timers=yes
  3257. fi
  3258. # The iOS platform requires special setup.
  3259. AC_DEFINE(SDL_VIDEO_DRIVER_UIKIT, 1, [ ])
  3260. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  3261. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  3262. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  3263. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  3264. SOURCES="$SOURCES $srcdir/src/video/uikit/*.m"
  3265. EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
  3266. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -liconv -lobjc"
  3267. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AVFoundation"
  3268. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox"
  3269. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio"
  3270. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreGraphics"
  3271. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreMotion"
  3272. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Foundation"
  3273. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,GameController"
  3274. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGLES"
  3275. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuartzCore"
  3276. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,UIKit"
  3277. ;;
  3278. *-*-darwin* )
  3279. # This could be either full "Mac OS X", or plain "Darwin" which is
  3280. # just the OS X kernel sans upper layers like Carbon and Cocoa.
  3281. # Next line is broken, and a few files below require Mac OS X (full)
  3282. ARCH=macosx
  3283. # Mac OS X builds with both the Carbon and OSX APIs at the moment
  3284. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
  3285. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
  3286. CheckVisibilityHidden
  3287. CheckDeclarationAfterStatement
  3288. CheckDummyVideo
  3289. CheckDiskAudio
  3290. CheckDummyAudio
  3291. CheckDLOPEN
  3292. CheckCOCOA
  3293. CheckX11
  3294. CheckMacGL
  3295. CheckOpenGLX11
  3296. CheckPTHREAD
  3297. # Set up files for the audio library
  3298. if test x$enable_audio = xyes; then
  3299. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  3300. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
  3301. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox"
  3302. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3303. have_audio=yes
  3304. fi
  3305. # Set up files for the joystick library
  3306. if test x$enable_joystick = xyes; then
  3307. AC_DEFINE(SDL_JOYSTICK_IOKIT, 1, [ ])
  3308. SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
  3309. have_joystick=yes
  3310. fi
  3311. # Set up files for the haptic library
  3312. if test x$enable_haptic = xyes; then
  3313. AC_DEFINE(SDL_HAPTIC_IOKIT, 1, [ ])
  3314. SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  3315. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  3316. have_haptic=yes
  3317. fi
  3318. # Set up files for the power library
  3319. if test x$enable_power = xyes; then
  3320. AC_DEFINE(SDL_POWER_MACOSX, 1, [ ])
  3321. SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
  3322. have_power=yes
  3323. fi
  3324. # Set up files for the filesystem library
  3325. if test x$enable_filesystem = xyes; then
  3326. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  3327. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  3328. have_filesystem=yes
  3329. fi
  3330. # Set up files for the timer library
  3331. if test x$enable_timers = xyes; then
  3332. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3333. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3334. have_timers=yes
  3335. fi
  3336. # Set up additional files for the file library
  3337. if test x$enable_file = xyes; then
  3338. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  3339. fi
  3340. # The Mac OS X platform requires special setup.
  3341. EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
  3342. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
  3343. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreVideo"
  3344. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
  3345. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
  3346. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
  3347. ;;
  3348. *-nacl|*-pnacl)
  3349. ARCH=nacl
  3350. CheckNativeClient
  3351. CheckDummyAudio
  3352. CheckDummyVideo
  3353. CheckInputEvents
  3354. CheckPTHREAD
  3355. # Set up files for the timer library
  3356. if test x$enable_timers = xyes; then
  3357. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3358. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3359. have_timers=yes
  3360. fi
  3361. if test x$enable_filesystem = xyes; then
  3362. AC_DEFINE(SDL_FILESYSTEM_NACL, 1, [ ])
  3363. SOURCES="$SOURCES $srcdir/src/filesystem/nacl/*.c"
  3364. have_filesystem=yes
  3365. fi
  3366. ;;
  3367. *-*-emscripten* )
  3368. if test x$enable_video = xyes; then
  3369. AC_DEFINE(SDL_VIDEO_DRIVER_EMSCRIPTEN, 1, [ ])
  3370. SOURCES="$SOURCES $srcdir/src/video/emscripten/*.c"
  3371. have_video=yes
  3372. SUMMARY_video="${SUMMARY_video} emscripten"
  3373. fi
  3374. if test x$enable_audio = xyes; then
  3375. AC_DEFINE(SDL_AUDIO_DRIVER_EMSCRIPTEN, 1, [ ])
  3376. SOURCES="$SOURCES $srcdir/src/audio/emscripten/*.c"
  3377. have_audio=yes
  3378. SUMMARY_audio="${SUMMARY_audio} emscripten"
  3379. fi
  3380. CheckVisibilityHidden
  3381. CheckDeclarationAfterStatement
  3382. CheckDummyVideo
  3383. CheckDiskAudio
  3384. CheckDummyAudio
  3385. CheckDLOPEN
  3386. CheckClockGettime
  3387. CheckEmscriptenGLES
  3388. # Set up files for the power library
  3389. if test x$enable_power = xyes; then
  3390. AC_DEFINE(SDL_POWER_EMSCRIPTEN, 1, [ ])
  3391. SOURCES="$SOURCES $srcdir/src/power/emscripten/*.c"
  3392. have_power=yes
  3393. fi
  3394. # Set up files for the power library
  3395. if test x$enable_joystick = xyes; then
  3396. AC_DEFINE(SDL_JOYSTICK_EMSCRIPTEN, 1, [ ])
  3397. SOURCES="$SOURCES $srcdir/src/joystick/emscripten/*.c"
  3398. have_joystick=yes
  3399. fi
  3400. # Set up files for the filesystem library
  3401. if test x$enable_filesystem = xyes; then
  3402. AC_DEFINE(SDL_FILESYSTEM_EMSCRIPTEN, 1, [ ])
  3403. SOURCES="$SOURCES $srcdir/src/filesystem/emscripten/*.c"
  3404. have_filesystem=yes
  3405. fi
  3406. # Set up files for the timer library
  3407. if test x$enable_timers = xyes; then
  3408. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3409. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3410. have_timers=yes
  3411. fi
  3412. ;;
  3413. *)
  3414. AC_MSG_ERROR([
  3415. *** Unsupported host: Please add to configure.in
  3416. ])
  3417. ;;
  3418. esac
  3419. # Verify that we have all the platform specific files we need
  3420. if test x$have_joystick != xyes; then
  3421. if test x$enable_joystick = xyes; then
  3422. AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ])
  3423. fi
  3424. SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
  3425. fi
  3426. if test x$have_haptic != xyes; then
  3427. if test x$enable_haptic = xyes; then
  3428. AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ])
  3429. fi
  3430. SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
  3431. fi
  3432. if test x$have_threads != xyes; then
  3433. if test x$enable_threads = xyes; then
  3434. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  3435. fi
  3436. SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
  3437. fi
  3438. if test x$have_timers != xyes; then
  3439. if test x$enable_timers = xyes; then
  3440. AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ])
  3441. fi
  3442. SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
  3443. fi
  3444. if test x$have_filesystem != xyes; then
  3445. if test x$enable_filesystem = xyes; then
  3446. AC_DEFINE(SDL_FILESYSTEM_DISABLED, 1, [ ])
  3447. fi
  3448. SOURCES="$SOURCES $srcdir/src/filesystem/dummy/*.c"
  3449. fi
  3450. if test x$have_loadso != xyes; then
  3451. if test x$enable_loadso = xyes; then
  3452. AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ])
  3453. fi
  3454. SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
  3455. fi
  3456. if test x$SDLMAIN_SOURCES = x; then
  3457. SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
  3458. fi
  3459. SDLTEST_SOURCES="$srcdir/src/test/*.c"
  3460. if test x$video_wayland = xyes; then
  3461. WAYLAND_CORE_PROTOCOL_SOURCE='$(gen)/wayland-protocol.c'
  3462. WAYLAND_CORE_PROTOCOL_HEADER='$(gen)/wayland-client-protocol.h'
  3463. WAYLAND_PROTOCOLS_UNSTABLE_SOURCES=`echo $WAYLAND_PROTOCOLS_UNSTABLE |\
  3464. sed 's,[[^ ]]\+,\\$(gen)/&-protocol.c,g'`
  3465. WAYLAND_PROTOCOLS_UNSTABLE_HEADERS=`echo $WAYLAND_PROTOCOLS_UNSTABLE |\
  3466. sed 's,[[^ ]]\+,\\$(gen)/&-client-protocol.h,g'`
  3467. GEN_SOURCES="$GEN_SOURCES $WAYLAND_CORE_PROTOCOL_SOURCE $WAYLAND_PROTOCOLS_UNSTABLE_SOURCES"
  3468. GEN_HEADERS="$GEN_HEADERS $WAYLAND_CORE_PROTOCOL_HEADER $WAYLAND_PROTOCOLS_UNSTABLE_HEADERS"
  3469. WAYLAND_CORE_PROTOCOL_SOURCE_DEPENDS="
  3470. $WAYLAND_CORE_PROTOCOL_SOURCE: $WAYLAND_CORE_PROTOCOL_DIR/wayland.xml
  3471. \$(SHELL) \$(auxdir)/mkinstalldirs \$(gen)
  3472. \$(RUN_CMD_GEN)\$(WAYLAND_SCANNER) code \$< \$@"
  3473. WAYLAND_CORE_PROTOCOL_HEADER_DEPENDS="
  3474. $WAYLAND_CORE_PROTOCOL_HEADER: $WAYLAND_CORE_PROTOCOL_DIR/wayland.xml
  3475. \$(SHELL) \$(auxdir)/mkinstalldirs \$(gen)
  3476. \$(RUN_CMD_GEN)\$(WAYLAND_SCANNER) client-header \$< \$@"
  3477. WAYLAND_CORE_PROTOCOL_OBJECT="
  3478. \$(objects)/`echo $WAYLAND_CORE_PROTOCOL_SOURCE | sed 's/\$(gen)\/\(.*\).c$/\1.lo/'`: $WAYLAND_CORE_PROTOCOL_SOURCE
  3479. \$(RUN_CMD_CC)\$(LIBTOOL) --tag=CC --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \$< -o \$@"
  3480. WAYLAND_PROTOCOLS_CLIENT_HEADER_UNSTABLE_DEPENDS=`for p in $WAYLAND_PROTOCOLS_UNSTABLE;\
  3481. do echo ; echo \$p | sed\
  3482. "s,^\\([[a-z\\-]]\\+\\)-unstable-\\(v[[0-9]]\+\\)\$,\\$(gen)/&-client-protocol.h: $WAYLAND_PROTOCOLS_DIR/unstable/\1/&.xml\\\\
  3483. \\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(gen)\\\\
  3484. \\$(RUN_CMD_GEN)\\$(WAYLAND_SCANNER) client-header \\$< \\$@," ; done`
  3485. WAYLAND_PROTOCOLS_CODE_UNSTABLE_DEPENDS=`for p in $WAYLAND_PROTOCOLS_UNSTABLE;\
  3486. do echo ; echo \$p | sed\
  3487. "s,^\\([[a-z\\-]]\\+\\)-unstable-\\(v[[0-9]]\+\\)\$,\\$(gen)/&-protocol.c: $WAYLAND_PROTOCOLS_DIR/unstable/\1/&.xml\\\\
  3488. \\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(gen)\\\\
  3489. \\$(RUN_CMD_GEN)\\$(WAYLAND_SCANNER) code \\$< \\$@," ; done`
  3490. WAYLAND_PROTOCOLS_OBJECTS_UNSTABLE=`for p in $WAYLAND_PROTOCOLS_UNSTABLE;\
  3491. do echo ; echo \$p | sed\
  3492. "s,^\\([[a-z\\-]]\\+\\)-unstable-\\(v[[0-9]]\+\\)\$,\\\$(objects)/&-protocol.lo: \\$(gen)/&-protocol.c \\$(gen)/&-client-protocol.h\\\\
  3493. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@," ; done`
  3494. WAYLAND_PROTOCOLS_DEPENDS="
  3495. $WAYLAND_CORE_PROTOCOL_SOURCE_DEPENDS
  3496. $WAYLAND_CORE_PROTOCOL_HEADER_DEPENDS
  3497. $WAYLAND_CORE_PROTOCOL_OBJECT
  3498. $WAYLAND_PROTOCOLS_CLIENT_HEADER_UNSTABLE_DEPENDS
  3499. $WAYLAND_PROTOCOLS_CODE_UNSTABLE_DEPENDS
  3500. $WAYLAND_PROTOCOLS_OBJECTS_UNSTABLE
  3501. "
  3502. fi
  3503. OBJECTS=`echo $SOURCES`
  3504. DEPENDS=`echo $SOURCES | tr ' ' '\n'`
  3505. for EXT in asm cc m c S; do
  3506. OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
  3507. DEPENDS=`echo "$DEPENDS" | sed "s,^\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT\\$,\\\\
  3508. \\$(objects)/\\2.lo: \\1/\\2.$EXT\\\\
  3509. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3510. done
  3511. GEN_OBJECTS=`echo "$GEN_SOURCES" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  3512. VERSION_OBJECTS=`echo $VERSION_SOURCES`
  3513. VERSION_DEPENDS=`echo $VERSION_SOURCES`
  3514. VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'`
  3515. VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
  3516. \\$(objects)/\\2.o: \\1/\\2.rc\\\\
  3517. \\$(WINDRES) \\$< \\$@,g"`
  3518. SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
  3519. SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
  3520. SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
  3521. SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  3522. \\$(objects)/\\2.o: \\1/\\2.c\\\\
  3523. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3524. SDLTEST_OBJECTS=`echo $SDLTEST_SOURCES`
  3525. SDLTEST_DEPENDS=`echo $SDLTEST_SOURCES`
  3526. SDLTEST_OBJECTS=`echo "$SDLTEST_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
  3527. SDLTEST_DEPENDS=`echo "$SDLTEST_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  3528. \\$(objects)/\\2.o: \\1/\\2.c\\\\
  3529. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3530. # Set runtime shared library paths as needed
  3531. if test "x$enable_rpath" = "xyes"; then
  3532. if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = linux -o $ARCH = netbsd; then
  3533. SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
  3534. AC_MSG_CHECKING(for linker option --enable-new-dtags)
  3535. have_enable_new_dtags=no
  3536. save_LDFLAGS="$LDFLAGS"
  3537. LDFLAGS="$LDFLAGS -Wl,--enable-new-dtags"
  3538. AC_TRY_LINK([
  3539. ],[
  3540. ],[
  3541. have_enable_new_dtags=yes
  3542. SDL_RLD_FLAGS="$SDL_RLD_FLAGS -Wl,--enable-new-dtags"
  3543. ])
  3544. LDFLAGS="$save_LDFLAGS"
  3545. AC_MSG_RESULT($have_enable_new_dtags)
  3546. fi
  3547. if test $ARCH = solaris; then
  3548. SDL_RLD_FLAGS="-R\${libdir}"
  3549. fi
  3550. else
  3551. SDL_RLD_FLAGS=""
  3552. fi
  3553. SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS"
  3554. dnl Expand the cflags and libraries needed by apps using SDL
  3555. AC_SUBST(SDL_CFLAGS)
  3556. AC_SUBST(SDL_LIBS)
  3557. AC_SUBST(SDL_STATIC_LIBS)
  3558. AC_SUBST(SDL_RLD_FLAGS)
  3559. if test x$enable_shared = xyes; then
  3560. ENABLE_SHARED_TRUE=
  3561. ENABLE_SHARED_FALSE="#"
  3562. else
  3563. ENABLE_SHARED_TRUE="#"
  3564. ENABLE_SHARED_FALSE=
  3565. fi
  3566. if test x$enable_static = xyes; then
  3567. ENABLE_STATIC_TRUE=
  3568. ENABLE_STATIC_FALSE="#"
  3569. else
  3570. ENABLE_STATIC_TRUE="#"
  3571. ENABLE_STATIC_FALSE=
  3572. fi
  3573. AC_SUBST(ENABLE_SHARED_TRUE)
  3574. AC_SUBST(ENABLE_SHARED_FALSE)
  3575. AC_SUBST(ENABLE_STATIC_TRUE)
  3576. AC_SUBST(ENABLE_STATIC_FALSE)
  3577. dnl Expand the sources and objects needed to build the library
  3578. AC_SUBST(ac_aux_dir)
  3579. AC_SUBST(INCLUDE)
  3580. AC_SUBST(OBJECTS)
  3581. AC_SUBST(GEN_HEADERS)
  3582. AC_SUBST(GEN_OBJECTS)
  3583. AC_SUBST(VERSION_OBJECTS)
  3584. AC_SUBST(SDLMAIN_OBJECTS)
  3585. AC_SUBST(SDLTEST_OBJECTS)
  3586. AC_SUBST(BUILD_CFLAGS)
  3587. AC_SUBST(EXTRA_CFLAGS)
  3588. AC_SUBST(BUILD_LDFLAGS)
  3589. AC_SUBST(EXTRA_LDFLAGS)
  3590. AC_SUBST(WINDRES)
  3591. AC_SUBST(WAYLAND_SCANNER)
  3592. cat >Makefile.rules <<__EOF__
  3593. # Build rules for objects
  3594. -include \$(OBJECTS:.lo=.d)
  3595. # Special dependency for SDL.c, since it depends on SDL_revision.h
  3596. $srcdir/src/SDL.c: update-revision
  3597. $DEPENDS
  3598. $VERSION_DEPENDS
  3599. $SDLMAIN_DEPENDS
  3600. $SDLTEST_DEPENDS
  3601. $WAYLAND_PROTOCOLS_DEPENDS
  3602. __EOF__
  3603. AC_CONFIG_FILES([
  3604. Makefile:Makefile.in:Makefile.rules sdl2-config sdl2-config.cmake SDL2.spec sdl2.pc
  3605. ])
  3606. AC_CONFIG_COMMANDS([sdl2_config],[chmod a+x sdl2-config])
  3607. SUMMARY="SDL2 Configure Summary:\n"
  3608. if test x$enable_shared = xyes; then
  3609. SUMMARY="${SUMMARY}Building Shared Libraries\n"
  3610. fi
  3611. if test x$enable_static = xyes; then
  3612. SUMMARY="${SUMMARY}Building Static Libraries\n"
  3613. fi
  3614. SUMMARY="${SUMMARY}Enabled modules :${SUMMARY_modules}\n"
  3615. SUMMARY="${SUMMARY}Assembly Math :${SUMMARY_math}\n"
  3616. SUMMARY="${SUMMARY}Audio drivers :${SUMMARY_audio}\n"
  3617. SUMMARY="${SUMMARY}Video drivers :${SUMMARY_video}\n"
  3618. if test x$have_x = xyes; then
  3619. SUMMARY="${SUMMARY}X11 libraries :${SUMMARY_video_x11}\n"
  3620. fi
  3621. SUMMARY="${SUMMARY}Input drivers :${SUMMARY_input}\n"
  3622. if test x$have_samplerate_h_hdr = xyes; then
  3623. SUMMARY="${SUMMARY}Using libsamplerate : YES\n"
  3624. else
  3625. SUMMARY="${SUMMARY}Using libsamplerate : NO\n"
  3626. fi
  3627. if test x$have_libudev_h_hdr = xyes; then
  3628. SUMMARY="${SUMMARY}Using libudev : YES\n"
  3629. else
  3630. SUMMARY="${SUMMARY}Using libudev : NO\n"
  3631. fi
  3632. if test x$have_dbus_dbus_h_hdr = xyes; then
  3633. SUMMARY="${SUMMARY}Using dbus : YES\n"
  3634. else
  3635. SUMMARY="${SUMMARY}Using dbus : NO\n"
  3636. fi
  3637. if test x$enable_ime = xyes; then
  3638. SUMMARY="${SUMMARY}Using ime : YES\n"
  3639. else
  3640. SUMMARY="${SUMMARY}Using ime : NO\n"
  3641. fi
  3642. if test x$have_ibus_ibus_h_hdr = xyes; then
  3643. SUMMARY="${SUMMARY}Using ibus : YES\n"
  3644. else
  3645. SUMMARY="${SUMMARY}Using ibus : NO\n"
  3646. fi
  3647. if test x$have_fcitx_frontend_h_hdr = xyes; then
  3648. SUMMARY="${SUMMARY}Using fcitx : YES\n"
  3649. else
  3650. SUMMARY="${SUMMARY}Using fcitx : NO\n"
  3651. fi
  3652. AC_CONFIG_COMMANDS([summary], [echo -en "$SUMMARY"], [SUMMARY="$SUMMARY"])
  3653. AC_OUTPUT