configure.ac 161 KB

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