configure.ac 164 KB

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