patch-config_log 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373
  1. --- motion-4.0.orig/config.log 2011-09-18 22:49:29.000000000 +0200
  2. +++ motion-4.0/config.log 2012-07-25 15:28:19.000000000 +0200
  3. @@ -4,36 +4,52 @@ running configure, to aid debugging if c
  4. It was created by motion configure trunkREV528, which was
  5. generated by GNU Autoconf 2.67. Invocation command line was
  6. - $ ./configure
  7. + $ /Volumes/adk/openadk/build_qemu_mipsel_uclibc/w-motion-4.0-1/motion-4.0/configure --build=i686-apple-darwin10 --host=mipsel-openadk-linux --target=mipsel-openadk-linux --program-prefix= --program-suffix= --prefix=/usr --bindir=/usr/bin --datadir=/usr/share --mandir=/usr/share/man --libexecdir=/usr/libexec --localstatedir=/var --sysconfdir=/etc --enable-shared --enable-static --disable-dependency-tracking --disable-libtool-lock --disable-nls --without-ffmpeg --without-jpeg-mmx --without-optimizecpu --without-mysql --without-sqlite --without-pgsql --with-v4l
  8. ## --------- ##
  9. ## Platform. ##
  10. ## --------- ##
  11. -hostname = chrom
  12. -uname -m = x86_64
  13. -uname -r = 2.6.32-33-server
  14. -uname -s = Linux
  15. -uname -v = #71-Ubuntu SMP Wed Jul 20 17:42:25 UTC 2011
  16. +hostname = neon.localdomain
  17. +uname -m = i386
  18. +uname -r = 10.8.0
  19. +uname -s = Darwin
  20. +uname -v = Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
  21. -/usr/bin/uname -p = unknown
  22. +/usr/bin/uname -p = i386
  23. /bin/uname -X = unknown
  24. /bin/arch = unknown
  25. /usr/bin/arch -k = unknown
  26. /usr/convex/getsysinfo = unknown
  27. -/usr/bin/hostinfo = unknown
  28. +/usr/bin/hostinfo = Mach kernel version:
  29. + Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
  30. +Kernel configured for up to 2 processors.
  31. +2 processors are physically available.
  32. +2 processors are logically available.
  33. +Processor type: i486 (Intel 80486)
  34. +Processors active: 0 1
  35. +Primary memory available: 4.00 gigabytes
  36. +Default processor set: 81 tasks, 432 threads, 2 processors
  37. +Load average: 2.19, Mach factor: 0.72
  38. /bin/machine = unknown
  39. /usr/bin/oslevel = unknown
  40. /bin/universe = unknown
  41. -PATH: /usr/local/sbin
  42. -PATH: /usr/local/bin
  43. -PATH: /usr/sbin
  44. +PATH: /Volumes/adk/openadk/scripts
  45. +PATH: /Volumes/adk/openadk/bin/tools
  46. +PATH: /Volumes/adk/openadk/host_mipsel_uclibc/bin
  47. +PATH: /Volumes/adk/openadk/host_mipsel_uclibc/usr/bin
  48. +PATH: /Volumes/adk/openadk/target_mipsel_uclibc/scripts
  49. +PATH: /opt/local/bin
  50. +PATH: /opt/local/sbin
  51. PATH: /usr/bin
  52. -PATH: /sbin
  53. PATH: /bin
  54. -PATH: /usr/games
  55. +PATH: /usr/sbin
  56. +PATH: /sbin
  57. +PATH: /usr/local/bin
  58. +PATH: /usr/local/MacGPG2/bin
  59. +PATH: /usr/X11/bin
  60. ## ----------- ##
  61. @@ -41,73 +57,75 @@ PATH: /usr/games
  62. ## ----------- ##
  63. configure:2396: checking for Darwin
  64. -configure:2401: result: no
  65. -configure:2403: checking for *BSD
  66. -configure:2408: result: no
  67. -configure:2502: checking for gcc
  68. -configure:2518: found /usr/bin/gcc
  69. -configure:2529: result: gcc
  70. +configure:2446: result: yes
  71. +configure:2462: checking for mipsel-openadk-linux-gcc
  72. +configure:2489: result: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc
  73. configure:2758: checking for C compiler version
  74. -configure:2767: gcc --version >&5
  75. -gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3
  76. -Copyright (C) 2009 Free Software Foundation, Inc.
  77. +configure:2767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc --version >&5
  78. +mipsel-openadk-linux-uclibc-gcc (GCC) 4.6.3
  79. +Copyright (C) 2011 Free Software Foundation, Inc.
  80. This is free software; see the source for copying conditions. There is NO
  81. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  82. configure:2778: $? = 0
  83. -configure:2767: gcc -v >&5
  84. +configure:2767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -v >&5
  85. Using built-in specs.
  86. -Target: x86_64-linux-gnu
  87. -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
  88. +COLLECT_GCC=/Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc
  89. +COLLECT_LTO_WRAPPER=/Volumes/adk/openadk/host_mipsel_uclibc/libexec/gcc/mipsel-openadk-linux-uclibc/4.6.3/lto-wrapper
  90. +Target: mipsel-openadk-linux-uclibc
  91. +Configured with: /Volumes/adk/openadk/toolchain_build_mipsel_uclibc/w-gcc-4.6.3-1/gcc-4.6.3/configure --prefix=/Volumes/adk/openadk/host_mipsel_uclibc --build=i686-apple-darwin10 --host=i686-apple-darwin10 --target=mipsel-openadk-linux-uclibc --with-gmp=/Volumes/adk/openadk/host_mipsel_uclibc --with-mpfr=/Volumes/adk/openadk/host_mipsel_uclibc --with-libelf=/Volumes/adk/openadk/host_mipsel_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-multilib --disable-libmudflap --disable-libgomp --disable-decimal-float --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --disable-sjlj-exceptions --disable-biarch --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/Volumes/adk/openadk/host_mipsel_uclibc/../target_mipsel_uclibc' --with-slibdir=/Volumes/adk/openadk/target_mipsel_uclibc/lib --enable-shared
  92. Thread model: posix
  93. -gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5)
  94. +gcc version 4.6.3 (GCC)
  95. configure:2778: $? = 0
  96. -configure:2767: gcc -V >&5
  97. -gcc: '-V' option must have argument
  98. +configure:2767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -V >&5
  99. +mipsel-openadk-linux-uclibc-gcc: error: unrecognized option '-V'
  100. +mipsel-openadk-linux-uclibc-gcc: fatal error: no input files
  101. +compilation terminated.
  102. configure:2778: $? = 1
  103. -configure:2767: gcc -qversion >&5
  104. -gcc: unrecognized option '-qversion'
  105. -gcc: no input files
  106. +configure:2767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -qversion >&5
  107. +mipsel-openadk-linux-uclibc-gcc: error: unrecognized option '-qversion'
  108. +mipsel-openadk-linux-uclibc-gcc: fatal error: no input files
  109. +compilation terminated.
  110. configure:2778: $? = 1
  111. configure:2798: checking whether the C compiler works
  112. -configure:2820: gcc conftest.c >&5
  113. +configure:2820: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c >&5
  114. configure:2824: $? = 0
  115. configure:2872: result: yes
  116. configure:2875: checking for C compiler default output file name
  117. configure:2877: result: a.out
  118. configure:2883: checking for suffix of executables
  119. -configure:2890: gcc -o conftest conftest.c >&5
  120. +configure:2890: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -o conftest -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c >&5
  121. configure:2894: $? = 0
  122. configure:2916: result:
  123. configure:2938: checking whether we are cross compiling
  124. -configure:2946: gcc -o conftest conftest.c >&5
  125. -configure:2950: $? = 0
  126. -configure:2957: ./conftest
  127. -configure:2961: $? = 0
  128. -configure:2976: result: no
  129. +configure:2976: result: yes
  130. configure:2981: checking for suffix of object files
  131. -configure:3003: gcc -c conftest.c >&5
  132. +configure:3003: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  133. configure:3007: $? = 0
  134. configure:3028: result: o
  135. configure:3032: checking whether we are using the GNU C compiler
  136. -configure:3051: gcc -c conftest.c >&5
  137. +configure:3051: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  138. configure:3051: $? = 0
  139. configure:3060: result: yes
  140. -configure:3069: checking whether gcc accepts -g
  141. -configure:3089: gcc -c -g conftest.c >&5
  142. +configure:3069: checking whether /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc accepts -g
  143. +configure:3089: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -g -DNDEBUG conftest.c >&5
  144. configure:3089: $? = 0
  145. configure:3130: result: yes
  146. -configure:3147: checking for gcc option to accept ISO C89
  147. -configure:3211: gcc -c -g -O2 conftest.c >&5
  148. +configure:3147: checking for /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc option to accept ISO C89
  149. +configure:3211: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  150. configure:3211: $? = 0
  151. configure:3224: result: none needed
  152. configure:3353: checking threads
  153. -configure:3369: gcc -o conftest -g -O2 conftest.c >&5
  154. -/tmp/cc5lyeCj.o: In function `main':
  155. -/home/wbx/adk/ibm/motion/conftest.c:13: undefined reference to `pthread_join'
  156. -/home/wbx/adk/ibm/motion/conftest.c:14: undefined reference to `__pthread_register_cancel'
  157. -/home/wbx/adk/ibm/motion/conftest.c:15: undefined reference to `pthread_create'
  158. -/home/wbx/adk/ibm/motion/conftest.c:15: undefined reference to `__pthread_unregister_cancel'
  159. +configure:3369: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -o conftest -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c >&5
  160. +/var/folders/v7/v7rUSnywE5SYxctWLsie4++++TI/-Tmp-//cc0MA2Wd.o: In function `main':
  161. +conftest.c:(.text.startup+0xc): undefined reference to `pthread_join'
  162. +conftest.c:(.text.startup+0x1c): undefined reference to `pthread_join'
  163. +conftest.c:(.text.startup+0x80): undefined reference to `__pthread_register_cancel'
  164. +conftest.c:(.text.startup+0x88): undefined reference to `__pthread_register_cancel'
  165. +conftest.c:(.text.startup+0x98): undefined reference to `pthread_create'
  166. +conftest.c:(.text.startup+0xa4): undefined reference to `pthread_create'
  167. +conftest.c:(.text.startup+0xb4): undefined reference to `__pthread_unregister_cancel'
  168. +conftest.c:(.text.startup+0xbc): undefined reference to `__pthread_unregister_cancel'
  169. collect2: ld returned 1 exit status
  170. configure:3369: $? = 1
  171. configure: failed program was:
  172. @@ -135,59 +153,25 @@ configure:3431: result: yes
  173. configure:3462: checking for libjpeg-mmx
  174. configure:3464: result: skipping
  175. configure:3557: checking for jpeg_set_defaults in -ljpeg
  176. -configure:3582: gcc -o conftest -g -O2 conftest.c -ljpeg >&5
  177. +configure:3582: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -o conftest -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -L/sw/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c -ljpeg >&5
  178. configure:3582: $? = 0
  179. configure:3591: result: yes
  180. -configure:3636: checking for ffmpeg autodetecting
  181. -configure:3640: result: found in /usr/lib64
  182. -configure:3707: checking for ffmpeg headers in /usr
  183. -configure:3723: result: found /usr/include/libavformat/avformat.h
  184. -configure:3756: checking file_protocol is defined in ffmpeg ?
  185. -configure:3774: gcc -c -I/usr/include -DFFMPEG_NEW_INCLUDES conftest.c >&5
  186. -conftest.c:11:25: error: avformat.h: No such file or directory
  187. -conftest.c:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'test_file_protocol'
  188. -conftest.c: In function 'main':
  189. -conftest.c:14: error: 'test_file_protocol' undeclared (first use in this function)
  190. -conftest.c:14: error: (Each undeclared identifier is reported only once
  191. -conftest.c:14: error: for each function it appears in.)
  192. -conftest.c:14: error: 'file_protocol' undeclared (first use in this function)
  193. -configure:3774: $? = 1
  194. -configure: failed program was:
  195. -| /* confdefs.h */
  196. -| #define PACKAGE_NAME "motion"
  197. -| #define PACKAGE_TARNAME "motion"
  198. -| #define PACKAGE_VERSION "trunkREV528"
  199. -| #define PACKAGE_STRING "motion trunkREV528"
  200. -| #define PACKAGE_BUGREPORT ""
  201. -| #define PACKAGE_URL ""
  202. -| #define HAVE_SDL 1
  203. -| /* end confdefs.h. */
  204. -|
  205. -| #include <avformat.h>
  206. -| URLProtocol test_file_protocol;
  207. -| int main(void){
  208. -| test_file_protocol.url_read = file_protocol.url_read;
  209. -| return 0;
  210. -| }
  211. -|
  212. -configure:3779: result: no
  213. +configure:3627: checking for ffmpeg
  214. +configure:3629: result: skipping
  215. configure:3816: checking for sqlite3_open in -lsqlite3
  216. -configure:3841: gcc -o conftest -g -O2 conftest.c -lsqlite3 >&5
  217. +configure:3841: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -o conftest -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -L/sw/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c -lsqlite3 >&5
  218. configure:3841: $? = 0
  219. configure:3850: result: yes
  220. configure:3878: checking for mysql support
  221. -configure:3914: result: testing
  222. -configure:3919: checking autodect mysql headers
  223. -configure:3955: result: not found
  224. +configure:3911: result: skipped
  225. configure:4113: checking for PostgreSQL
  226. -configure:4120: result: testing
  227. -configure:4126: checking autodect pgsql headers
  228. -configure:4152: result: not found
  229. +configure:4117: result: skipped
  230. configure:4278: checking how to run the C preprocessor
  231. -configure:4309: gcc -E conftest.c
  232. +configure:4309: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  233. configure:4309: $? = 0
  234. -configure:4323: gcc -E conftest.c
  235. -conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
  236. +configure:4323: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  237. +conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
  238. +compilation terminated.
  239. configure:4323: $? = 1
  240. configure: failed program was:
  241. | /* confdefs.h */
  242. @@ -201,11 +185,12 @@ configure: failed program was:
  243. | #define HAVE_SQLITE3 1
  244. | /* end confdefs.h. */
  245. | #include <ac_nonexistent.h>
  246. -configure:4348: result: gcc -E
  247. -configure:4368: gcc -E conftest.c
  248. +configure:4348: result: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E
  249. +configure:4368: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  250. configure:4368: $? = 0
  251. -configure:4382: gcc -E conftest.c
  252. -conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
  253. +configure:4382: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  254. +conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
  255. +compilation terminated.
  256. configure:4382: $? = 1
  257. configure: failed program was:
  258. | /* confdefs.h */
  259. @@ -220,59 +205,55 @@ configure: failed program was:
  260. | /* end confdefs.h. */
  261. | #include <ac_nonexistent.h>
  262. configure:4411: checking for grep that handles long lines and -e
  263. -configure:4469: result: /bin/grep
  264. +configure:4469: result: /usr/bin/grep
  265. configure:4474: checking for egrep
  266. -configure:4536: result: /bin/grep -E
  267. +configure:4536: result: /usr/bin/grep -E
  268. configure:4541: checking for ANSI C header files
  269. -configure:4561: gcc -c -g -O2 conftest.c >&5
  270. +configure:4561: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  271. configure:4561: $? = 0
  272. -configure:4634: gcc -o conftest -g -O2 conftest.c >&5
  273. -configure:4634: $? = 0
  274. -configure:4634: ./conftest
  275. -configure:4634: $? = 0
  276. configure:4645: result: yes
  277. configure:4658: checking for sys/types.h
  278. -configure:4658: gcc -c -g -O2 conftest.c >&5
  279. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  280. configure:4658: $? = 0
  281. configure:4658: result: yes
  282. configure:4658: checking for sys/stat.h
  283. -configure:4658: gcc -c -g -O2 conftest.c >&5
  284. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  285. configure:4658: $? = 0
  286. configure:4658: result: yes
  287. configure:4658: checking for stdlib.h
  288. -configure:4658: gcc -c -g -O2 conftest.c >&5
  289. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  290. configure:4658: $? = 0
  291. configure:4658: result: yes
  292. configure:4658: checking for string.h
  293. -configure:4658: gcc -c -g -O2 conftest.c >&5
  294. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  295. configure:4658: $? = 0
  296. configure:4658: result: yes
  297. configure:4658: checking for memory.h
  298. -configure:4658: gcc -c -g -O2 conftest.c >&5
  299. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  300. configure:4658: $? = 0
  301. configure:4658: result: yes
  302. configure:4658: checking for strings.h
  303. -configure:4658: gcc -c -g -O2 conftest.c >&5
  304. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  305. configure:4658: $? = 0
  306. configure:4658: result: yes
  307. configure:4658: checking for inttypes.h
  308. -configure:4658: gcc -c -g -O2 conftest.c >&5
  309. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  310. configure:4658: $? = 0
  311. configure:4658: result: yes
  312. configure:4658: checking for stdint.h
  313. -configure:4658: gcc -c -g -O2 conftest.c >&5
  314. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  315. configure:4658: $? = 0
  316. configure:4658: result: yes
  317. configure:4658: checking for unistd.h
  318. -configure:4658: gcc -c -g -O2 conftest.c >&5
  319. +configure:4658: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  320. configure:4658: $? = 0
  321. configure:4658: result: yes
  322. configure:4673: checking stdio.h usability
  323. -configure:4673: gcc -c -g -O2 conftest.c >&5
  324. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  325. configure:4673: $? = 0
  326. configure:4673: result: yes
  327. configure:4673: checking stdio.h presence
  328. -configure:4673: gcc -E conftest.c
  329. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  330. configure:4673: $? = 0
  331. configure:4673: result: yes
  332. configure:4673: checking for stdio.h
  333. @@ -282,81 +263,178 @@ configure:4673: result: yes
  334. configure:4673: checking for stdint.h
  335. configure:4673: result: yes
  336. configure:4673: checking fcntl.h usability
  337. -configure:4673: gcc -c -g -O2 conftest.c >&5
  338. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  339. configure:4673: $? = 0
  340. configure:4673: result: yes
  341. configure:4673: checking fcntl.h presence
  342. -configure:4673: gcc -E conftest.c
  343. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  344. configure:4673: $? = 0
  345. configure:4673: result: yes
  346. configure:4673: checking for fcntl.h
  347. configure:4673: result: yes
  348. configure:4673: checking time.h usability
  349. -configure:4673: gcc -c -g -O2 conftest.c >&5
  350. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  351. configure:4673: $? = 0
  352. configure:4673: result: yes
  353. configure:4673: checking time.h presence
  354. -configure:4673: gcc -E conftest.c
  355. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  356. configure:4673: $? = 0
  357. configure:4673: result: yes
  358. configure:4673: checking for time.h
  359. configure:4673: result: yes
  360. configure:4673: checking signal.h usability
  361. -configure:4673: gcc -c -g -O2 conftest.c >&5
  362. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  363. configure:4673: $? = 0
  364. configure:4673: result: yes
  365. configure:4673: checking signal.h presence
  366. -configure:4673: gcc -E conftest.c
  367. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  368. configure:4673: $? = 0
  369. configure:4673: result: yes
  370. configure:4673: checking for signal.h
  371. configure:4673: result: yes
  372. configure:4673: checking sys/ioctl.h usability
  373. -configure:4673: gcc -c -g -O2 conftest.c >&5
  374. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  375. configure:4673: $? = 0
  376. configure:4673: result: yes
  377. configure:4673: checking sys/ioctl.h presence
  378. -configure:4673: gcc -E conftest.c
  379. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  380. configure:4673: $? = 0
  381. configure:4673: result: yes
  382. configure:4673: checking for sys/ioctl.h
  383. configure:4673: result: yes
  384. configure:4673: checking sys/mman.h usability
  385. -configure:4673: gcc -c -g -O2 conftest.c >&5
  386. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  387. configure:4673: $? = 0
  388. configure:4673: result: yes
  389. configure:4673: checking sys/mman.h presence
  390. -configure:4673: gcc -E conftest.c
  391. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  392. configure:4673: $? = 0
  393. configure:4673: result: yes
  394. configure:4673: checking for sys/mman.h
  395. configure:4673: result: yes
  396. configure:4673: checking linux/videodev.h usability
  397. -configure:4673: gcc -c -g -O2 conftest.c >&5
  398. -configure:4673: $? = 0
  399. -configure:4673: result: yes
  400. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  401. +conftest.c:62:28: fatal error: linux/videodev.h: No such file or directory
  402. +compilation terminated.
  403. +configure:4673: $? = 1
  404. +configure: failed program was:
  405. +| /* confdefs.h */
  406. +| #define PACKAGE_NAME "motion"
  407. +| #define PACKAGE_TARNAME "motion"
  408. +| #define PACKAGE_VERSION "trunkREV528"
  409. +| #define PACKAGE_STRING "motion trunkREV528"
  410. +| #define PACKAGE_BUGREPORT ""
  411. +| #define PACKAGE_URL ""
  412. +| #define HAVE_SDL 1
  413. +| #define HAVE_SQLITE3 1
  414. +| #define STDC_HEADERS 1
  415. +| #define HAVE_SYS_TYPES_H 1
  416. +| #define HAVE_SYS_STAT_H 1
  417. +| #define HAVE_STDLIB_H 1
  418. +| #define HAVE_STRING_H 1
  419. +| #define HAVE_MEMORY_H 1
  420. +| #define HAVE_STRINGS_H 1
  421. +| #define HAVE_INTTYPES_H 1
  422. +| #define HAVE_STDINT_H 1
  423. +| #define HAVE_UNISTD_H 1
  424. +| #define HAVE_STDIO_H 1
  425. +| #define HAVE_UNISTD_H 1
  426. +| #define HAVE_STDINT_H 1
  427. +| #define HAVE_FCNTL_H 1
  428. +| #define HAVE_TIME_H 1
  429. +| #define HAVE_SIGNAL_H 1
  430. +| #define HAVE_SYS_IOCTL_H 1
  431. +| #define HAVE_SYS_MMAN_H 1
  432. +| /* end confdefs.h. */
  433. +| #include <stdio.h>
  434. +| #ifdef HAVE_SYS_TYPES_H
  435. +| # include <sys/types.h>
  436. +| #endif
  437. +| #ifdef HAVE_SYS_STAT_H
  438. +| # include <sys/stat.h>
  439. +| #endif
  440. +| #ifdef STDC_HEADERS
  441. +| # include <stdlib.h>
  442. +| # include <stddef.h>
  443. +| #else
  444. +| # ifdef HAVE_STDLIB_H
  445. +| # include <stdlib.h>
  446. +| # endif
  447. +| #endif
  448. +| #ifdef HAVE_STRING_H
  449. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  450. +| # include <memory.h>
  451. +| # endif
  452. +| # include <string.h>
  453. +| #endif
  454. +| #ifdef HAVE_STRINGS_H
  455. +| # include <strings.h>
  456. +| #endif
  457. +| #ifdef HAVE_INTTYPES_H
  458. +| # include <inttypes.h>
  459. +| #endif
  460. +| #ifdef HAVE_STDINT_H
  461. +| # include <stdint.h>
  462. +| #endif
  463. +| #ifdef HAVE_UNISTD_H
  464. +| # include <unistd.h>
  465. +| #endif
  466. +| #include <linux/videodev.h>
  467. +configure:4673: result: no
  468. configure:4673: checking linux/videodev.h presence
  469. -configure:4673: gcc -E conftest.c
  470. -configure:4673: $? = 0
  471. -configure:4673: result: yes
  472. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  473. +conftest.c:29:28: fatal error: linux/videodev.h: No such file or directory
  474. +compilation terminated.
  475. +configure:4673: $? = 1
  476. +configure: failed program was:
  477. +| /* confdefs.h */
  478. +| #define PACKAGE_NAME "motion"
  479. +| #define PACKAGE_TARNAME "motion"
  480. +| #define PACKAGE_VERSION "trunkREV528"
  481. +| #define PACKAGE_STRING "motion trunkREV528"
  482. +| #define PACKAGE_BUGREPORT ""
  483. +| #define PACKAGE_URL ""
  484. +| #define HAVE_SDL 1
  485. +| #define HAVE_SQLITE3 1
  486. +| #define STDC_HEADERS 1
  487. +| #define HAVE_SYS_TYPES_H 1
  488. +| #define HAVE_SYS_STAT_H 1
  489. +| #define HAVE_STDLIB_H 1
  490. +| #define HAVE_STRING_H 1
  491. +| #define HAVE_MEMORY_H 1
  492. +| #define HAVE_STRINGS_H 1
  493. +| #define HAVE_INTTYPES_H 1
  494. +| #define HAVE_STDINT_H 1
  495. +| #define HAVE_UNISTD_H 1
  496. +| #define HAVE_STDIO_H 1
  497. +| #define HAVE_UNISTD_H 1
  498. +| #define HAVE_STDINT_H 1
  499. +| #define HAVE_FCNTL_H 1
  500. +| #define HAVE_TIME_H 1
  501. +| #define HAVE_SIGNAL_H 1
  502. +| #define HAVE_SYS_IOCTL_H 1
  503. +| #define HAVE_SYS_MMAN_H 1
  504. +| /* end confdefs.h. */
  505. +| #include <linux/videodev.h>
  506. +configure:4673: result: no
  507. configure:4673: checking for linux/videodev.h
  508. -configure:4673: result: yes
  509. +configure:4673: result: no
  510. configure:4673: checking linux/videodev2.h usability
  511. -configure:4673: gcc -c -g -O2 conftest.c >&5
  512. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  513. configure:4673: $? = 0
  514. configure:4673: result: yes
  515. configure:4673: checking linux/videodev2.h presence
  516. -configure:4673: gcc -E conftest.c
  517. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  518. configure:4673: $? = 0
  519. configure:4673: result: yes
  520. configure:4673: checking for linux/videodev2.h
  521. configure:4673: result: yes
  522. configure:4673: checking sys/param.h usability
  523. -configure:4673: gcc -c -g -O2 conftest.c >&5
  524. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  525. configure:4673: $? = 0
  526. configure:4673: result: yes
  527. configure:4673: checking sys/param.h presence
  528. -configure:4673: gcc -E conftest.c
  529. +configure:4673: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E -DNDEBUG conftest.c
  530. configure:4673: $? = 0
  531. configure:4673: result: yes
  532. configure:4673: checking for sys/param.h
  533. @@ -364,15 +442,13 @@ configure:4673: result: yes
  534. configure:4673: checking for sys/types.h
  535. configure:4673: result: yes
  536. configure:4686: checking for get_current_dir_name
  537. -configure:4686: gcc -o conftest -g -O2 conftest.c >&5
  538. +configure:4686: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -o conftest -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -L/sw/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c >&5
  539. configure:4686: $? = 0
  540. configure:4686: result: yes
  541. configure:4706: checking for struct v4l2_buffer
  542. -configure:4706: gcc -c -g -O2 conftest.c >&5
  543. -configure:4706: $? = 0
  544. -configure:4706: gcc -c -g -O2 conftest.c >&5
  545. -conftest.c: In function 'main':
  546. -conftest.c:40: error: expected expression before ')' token
  547. +configure:4706: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  548. +conftest.c:34:31: fatal error: linux/videodev.h: No such file or directory
  549. +compilation terminated.
  550. configure:4706: $? = 1
  551. configure: failed program was:
  552. | /* confdefs.h */
  553. @@ -402,7 +478,6 @@ configure: failed program was:
  554. | #define HAVE_SIGNAL_H 1
  555. | #define HAVE_SYS_IOCTL_H 1
  556. | #define HAVE_SYS_MMAN_H 1
  557. -| #define HAVE_LINUX_VIDEODEV_H 1
  558. | #define HAVE_LINUX_VIDEODEV2_H 1
  559. | #define HAVE_SYS_PARAM_H 1
  560. | #define HAVE_SYS_TYPES_H 1
  561. @@ -414,56 +489,1572 @@ configure: failed program was:
  562. | int
  563. | main ()
  564. | {
  565. -| if (sizeof ((struct v4l2_buffer)))
  566. -| return 0;
  567. +| if (sizeof (struct v4l2_buffer))
  568. +| return 0;
  569. | ;
  570. | return 0;
  571. | }
  572. -configure:4706: result: yes
  573. +configure:4706: result: no
  574. configure:4716: checking for V42L support
  575. -configure:4719: result: yes
  576. +configure:4723: result: no
  577. +configure:4729: checking for V42L *old* support
  578. +configure:4731: result: testing
  579. +configure:4735: checking for linux/videodev2.h
  580. +configure:4735: result: yes
  581. configure:4762: checking size of short
  582. -configure:4767: gcc -o conftest -g -O2 conftest.c >&5
  583. +configure:4767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  584. configure:4767: $? = 0
  585. -configure:4767: ./conftest
  586. +configure:4767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  587. +conftest.c: In function 'main':
  588. +conftest.c:70:12: error: size of array 'test_array' is negative
  589. +configure:4767: $? = 1
  590. +configure: failed program was:
  591. +| /* confdefs.h */
  592. +| #define PACKAGE_NAME "motion"
  593. +| #define PACKAGE_TARNAME "motion"
  594. +| #define PACKAGE_VERSION "trunkREV528"
  595. +| #define PACKAGE_STRING "motion trunkREV528"
  596. +| #define PACKAGE_BUGREPORT ""
  597. +| #define PACKAGE_URL ""
  598. +| #define HAVE_SDL 1
  599. +| #define HAVE_SQLITE3 1
  600. +| #define STDC_HEADERS 1
  601. +| #define HAVE_SYS_TYPES_H 1
  602. +| #define HAVE_SYS_STAT_H 1
  603. +| #define HAVE_STDLIB_H 1
  604. +| #define HAVE_STRING_H 1
  605. +| #define HAVE_MEMORY_H 1
  606. +| #define HAVE_STRINGS_H 1
  607. +| #define HAVE_INTTYPES_H 1
  608. +| #define HAVE_STDINT_H 1
  609. +| #define HAVE_UNISTD_H 1
  610. +| #define HAVE_STDIO_H 1
  611. +| #define HAVE_UNISTD_H 1
  612. +| #define HAVE_STDINT_H 1
  613. +| #define HAVE_FCNTL_H 1
  614. +| #define HAVE_TIME_H 1
  615. +| #define HAVE_SIGNAL_H 1
  616. +| #define HAVE_SYS_IOCTL_H 1
  617. +| #define HAVE_SYS_MMAN_H 1
  618. +| #define HAVE_LINUX_VIDEODEV2_H 1
  619. +| #define HAVE_SYS_PARAM_H 1
  620. +| #define HAVE_SYS_TYPES_H 1
  621. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  622. +| #define HAVE_LINUX_VIDEODEV2_H 1
  623. +| /* end confdefs.h. */
  624. +| #include <stdio.h>
  625. +| #ifdef HAVE_SYS_TYPES_H
  626. +| # include <sys/types.h>
  627. +| #endif
  628. +| #ifdef HAVE_SYS_STAT_H
  629. +| # include <sys/stat.h>
  630. +| #endif
  631. +| #ifdef STDC_HEADERS
  632. +| # include <stdlib.h>
  633. +| # include <stddef.h>
  634. +| #else
  635. +| # ifdef HAVE_STDLIB_H
  636. +| # include <stdlib.h>
  637. +| # endif
  638. +| #endif
  639. +| #ifdef HAVE_STRING_H
  640. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  641. +| # include <memory.h>
  642. +| # endif
  643. +| # include <string.h>
  644. +| #endif
  645. +| #ifdef HAVE_STRINGS_H
  646. +| # include <strings.h>
  647. +| #endif
  648. +| #ifdef HAVE_INTTYPES_H
  649. +| # include <inttypes.h>
  650. +| #endif
  651. +| #ifdef HAVE_STDINT_H
  652. +| # include <stdint.h>
  653. +| #endif
  654. +| #ifdef HAVE_UNISTD_H
  655. +| # include <unistd.h>
  656. +| #endif
  657. +| int
  658. +| main ()
  659. +| {
  660. +| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 0)];
  661. +| test_array [0] = 0
  662. +|
  663. +| ;
  664. +| return 0;
  665. +| }
  666. +configure:4767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  667. +conftest.c: In function 'main':
  668. +conftest.c:70:12: error: size of array 'test_array' is negative
  669. +configure:4767: $? = 1
  670. +configure: failed program was:
  671. +| /* confdefs.h */
  672. +| #define PACKAGE_NAME "motion"
  673. +| #define PACKAGE_TARNAME "motion"
  674. +| #define PACKAGE_VERSION "trunkREV528"
  675. +| #define PACKAGE_STRING "motion trunkREV528"
  676. +| #define PACKAGE_BUGREPORT ""
  677. +| #define PACKAGE_URL ""
  678. +| #define HAVE_SDL 1
  679. +| #define HAVE_SQLITE3 1
  680. +| #define STDC_HEADERS 1
  681. +| #define HAVE_SYS_TYPES_H 1
  682. +| #define HAVE_SYS_STAT_H 1
  683. +| #define HAVE_STDLIB_H 1
  684. +| #define HAVE_STRING_H 1
  685. +| #define HAVE_MEMORY_H 1
  686. +| #define HAVE_STRINGS_H 1
  687. +| #define HAVE_INTTYPES_H 1
  688. +| #define HAVE_STDINT_H 1
  689. +| #define HAVE_UNISTD_H 1
  690. +| #define HAVE_STDIO_H 1
  691. +| #define HAVE_UNISTD_H 1
  692. +| #define HAVE_STDINT_H 1
  693. +| #define HAVE_FCNTL_H 1
  694. +| #define HAVE_TIME_H 1
  695. +| #define HAVE_SIGNAL_H 1
  696. +| #define HAVE_SYS_IOCTL_H 1
  697. +| #define HAVE_SYS_MMAN_H 1
  698. +| #define HAVE_LINUX_VIDEODEV2_H 1
  699. +| #define HAVE_SYS_PARAM_H 1
  700. +| #define HAVE_SYS_TYPES_H 1
  701. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  702. +| #define HAVE_LINUX_VIDEODEV2_H 1
  703. +| /* end confdefs.h. */
  704. +| #include <stdio.h>
  705. +| #ifdef HAVE_SYS_TYPES_H
  706. +| # include <sys/types.h>
  707. +| #endif
  708. +| #ifdef HAVE_SYS_STAT_H
  709. +| # include <sys/stat.h>
  710. +| #endif
  711. +| #ifdef STDC_HEADERS
  712. +| # include <stdlib.h>
  713. +| # include <stddef.h>
  714. +| #else
  715. +| # ifdef HAVE_STDLIB_H
  716. +| # include <stdlib.h>
  717. +| # endif
  718. +| #endif
  719. +| #ifdef HAVE_STRING_H
  720. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  721. +| # include <memory.h>
  722. +| # endif
  723. +| # include <string.h>
  724. +| #endif
  725. +| #ifdef HAVE_STRINGS_H
  726. +| # include <strings.h>
  727. +| #endif
  728. +| #ifdef HAVE_INTTYPES_H
  729. +| # include <inttypes.h>
  730. +| #endif
  731. +| #ifdef HAVE_STDINT_H
  732. +| # include <stdint.h>
  733. +| #endif
  734. +| #ifdef HAVE_UNISTD_H
  735. +| # include <unistd.h>
  736. +| #endif
  737. +| int
  738. +| main ()
  739. +| {
  740. +| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 1)];
  741. +| test_array [0] = 0
  742. +|
  743. +| ;
  744. +| return 0;
  745. +| }
  746. +configure:4767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  747. +configure:4767: $? = 0
  748. +configure:4767: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  749. configure:4767: $? = 0
  750. configure:4781: result: 2
  751. configure:4795: checking size of int
  752. -configure:4800: gcc -o conftest -g -O2 conftest.c >&5
  753. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  754. configure:4800: $? = 0
  755. -configure:4800: ./conftest
  756. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  757. +conftest.c: In function 'main':
  758. +conftest.c:71:12: error: size of array 'test_array' is negative
  759. +configure:4800: $? = 1
  760. +configure: failed program was:
  761. +| /* confdefs.h */
  762. +| #define PACKAGE_NAME "motion"
  763. +| #define PACKAGE_TARNAME "motion"
  764. +| #define PACKAGE_VERSION "trunkREV528"
  765. +| #define PACKAGE_STRING "motion trunkREV528"
  766. +| #define PACKAGE_BUGREPORT ""
  767. +| #define PACKAGE_URL ""
  768. +| #define HAVE_SDL 1
  769. +| #define HAVE_SQLITE3 1
  770. +| #define STDC_HEADERS 1
  771. +| #define HAVE_SYS_TYPES_H 1
  772. +| #define HAVE_SYS_STAT_H 1
  773. +| #define HAVE_STDLIB_H 1
  774. +| #define HAVE_STRING_H 1
  775. +| #define HAVE_MEMORY_H 1
  776. +| #define HAVE_STRINGS_H 1
  777. +| #define HAVE_INTTYPES_H 1
  778. +| #define HAVE_STDINT_H 1
  779. +| #define HAVE_UNISTD_H 1
  780. +| #define HAVE_STDIO_H 1
  781. +| #define HAVE_UNISTD_H 1
  782. +| #define HAVE_STDINT_H 1
  783. +| #define HAVE_FCNTL_H 1
  784. +| #define HAVE_TIME_H 1
  785. +| #define HAVE_SIGNAL_H 1
  786. +| #define HAVE_SYS_IOCTL_H 1
  787. +| #define HAVE_SYS_MMAN_H 1
  788. +| #define HAVE_LINUX_VIDEODEV2_H 1
  789. +| #define HAVE_SYS_PARAM_H 1
  790. +| #define HAVE_SYS_TYPES_H 1
  791. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  792. +| #define HAVE_LINUX_VIDEODEV2_H 1
  793. +| #define SIZEOF_SHORT 2
  794. +| /* end confdefs.h. */
  795. +| #include <stdio.h>
  796. +| #ifdef HAVE_SYS_TYPES_H
  797. +| # include <sys/types.h>
  798. +| #endif
  799. +| #ifdef HAVE_SYS_STAT_H
  800. +| # include <sys/stat.h>
  801. +| #endif
  802. +| #ifdef STDC_HEADERS
  803. +| # include <stdlib.h>
  804. +| # include <stddef.h>
  805. +| #else
  806. +| # ifdef HAVE_STDLIB_H
  807. +| # include <stdlib.h>
  808. +| # endif
  809. +| #endif
  810. +| #ifdef HAVE_STRING_H
  811. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  812. +| # include <memory.h>
  813. +| # endif
  814. +| # include <string.h>
  815. +| #endif
  816. +| #ifdef HAVE_STRINGS_H
  817. +| # include <strings.h>
  818. +| #endif
  819. +| #ifdef HAVE_INTTYPES_H
  820. +| # include <inttypes.h>
  821. +| #endif
  822. +| #ifdef HAVE_STDINT_H
  823. +| # include <stdint.h>
  824. +| #endif
  825. +| #ifdef HAVE_UNISTD_H
  826. +| # include <unistd.h>
  827. +| #endif
  828. +| int
  829. +| main ()
  830. +| {
  831. +| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 0)];
  832. +| test_array [0] = 0
  833. +|
  834. +| ;
  835. +| return 0;
  836. +| }
  837. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  838. +conftest.c: In function 'main':
  839. +conftest.c:71:12: error: size of array 'test_array' is negative
  840. +configure:4800: $? = 1
  841. +configure: failed program was:
  842. +| /* confdefs.h */
  843. +| #define PACKAGE_NAME "motion"
  844. +| #define PACKAGE_TARNAME "motion"
  845. +| #define PACKAGE_VERSION "trunkREV528"
  846. +| #define PACKAGE_STRING "motion trunkREV528"
  847. +| #define PACKAGE_BUGREPORT ""
  848. +| #define PACKAGE_URL ""
  849. +| #define HAVE_SDL 1
  850. +| #define HAVE_SQLITE3 1
  851. +| #define STDC_HEADERS 1
  852. +| #define HAVE_SYS_TYPES_H 1
  853. +| #define HAVE_SYS_STAT_H 1
  854. +| #define HAVE_STDLIB_H 1
  855. +| #define HAVE_STRING_H 1
  856. +| #define HAVE_MEMORY_H 1
  857. +| #define HAVE_STRINGS_H 1
  858. +| #define HAVE_INTTYPES_H 1
  859. +| #define HAVE_STDINT_H 1
  860. +| #define HAVE_UNISTD_H 1
  861. +| #define HAVE_STDIO_H 1
  862. +| #define HAVE_UNISTD_H 1
  863. +| #define HAVE_STDINT_H 1
  864. +| #define HAVE_FCNTL_H 1
  865. +| #define HAVE_TIME_H 1
  866. +| #define HAVE_SIGNAL_H 1
  867. +| #define HAVE_SYS_IOCTL_H 1
  868. +| #define HAVE_SYS_MMAN_H 1
  869. +| #define HAVE_LINUX_VIDEODEV2_H 1
  870. +| #define HAVE_SYS_PARAM_H 1
  871. +| #define HAVE_SYS_TYPES_H 1
  872. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  873. +| #define HAVE_LINUX_VIDEODEV2_H 1
  874. +| #define SIZEOF_SHORT 2
  875. +| /* end confdefs.h. */
  876. +| #include <stdio.h>
  877. +| #ifdef HAVE_SYS_TYPES_H
  878. +| # include <sys/types.h>
  879. +| #endif
  880. +| #ifdef HAVE_SYS_STAT_H
  881. +| # include <sys/stat.h>
  882. +| #endif
  883. +| #ifdef STDC_HEADERS
  884. +| # include <stdlib.h>
  885. +| # include <stddef.h>
  886. +| #else
  887. +| # ifdef HAVE_STDLIB_H
  888. +| # include <stdlib.h>
  889. +| # endif
  890. +| #endif
  891. +| #ifdef HAVE_STRING_H
  892. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  893. +| # include <memory.h>
  894. +| # endif
  895. +| # include <string.h>
  896. +| #endif
  897. +| #ifdef HAVE_STRINGS_H
  898. +| # include <strings.h>
  899. +| #endif
  900. +| #ifdef HAVE_INTTYPES_H
  901. +| # include <inttypes.h>
  902. +| #endif
  903. +| #ifdef HAVE_STDINT_H
  904. +| # include <stdint.h>
  905. +| #endif
  906. +| #ifdef HAVE_UNISTD_H
  907. +| # include <unistd.h>
  908. +| #endif
  909. +| int
  910. +| main ()
  911. +| {
  912. +| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 1)];
  913. +| test_array [0] = 0
  914. +|
  915. +| ;
  916. +| return 0;
  917. +| }
  918. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  919. +conftest.c: In function 'main':
  920. +conftest.c:71:12: error: size of array 'test_array' is negative
  921. +configure:4800: $? = 1
  922. +configure: failed program was:
  923. +| /* confdefs.h */
  924. +| #define PACKAGE_NAME "motion"
  925. +| #define PACKAGE_TARNAME "motion"
  926. +| #define PACKAGE_VERSION "trunkREV528"
  927. +| #define PACKAGE_STRING "motion trunkREV528"
  928. +| #define PACKAGE_BUGREPORT ""
  929. +| #define PACKAGE_URL ""
  930. +| #define HAVE_SDL 1
  931. +| #define HAVE_SQLITE3 1
  932. +| #define STDC_HEADERS 1
  933. +| #define HAVE_SYS_TYPES_H 1
  934. +| #define HAVE_SYS_STAT_H 1
  935. +| #define HAVE_STDLIB_H 1
  936. +| #define HAVE_STRING_H 1
  937. +| #define HAVE_MEMORY_H 1
  938. +| #define HAVE_STRINGS_H 1
  939. +| #define HAVE_INTTYPES_H 1
  940. +| #define HAVE_STDINT_H 1
  941. +| #define HAVE_UNISTD_H 1
  942. +| #define HAVE_STDIO_H 1
  943. +| #define HAVE_UNISTD_H 1
  944. +| #define HAVE_STDINT_H 1
  945. +| #define HAVE_FCNTL_H 1
  946. +| #define HAVE_TIME_H 1
  947. +| #define HAVE_SIGNAL_H 1
  948. +| #define HAVE_SYS_IOCTL_H 1
  949. +| #define HAVE_SYS_MMAN_H 1
  950. +| #define HAVE_LINUX_VIDEODEV2_H 1
  951. +| #define HAVE_SYS_PARAM_H 1
  952. +| #define HAVE_SYS_TYPES_H 1
  953. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  954. +| #define HAVE_LINUX_VIDEODEV2_H 1
  955. +| #define SIZEOF_SHORT 2
  956. +| /* end confdefs.h. */
  957. +| #include <stdio.h>
  958. +| #ifdef HAVE_SYS_TYPES_H
  959. +| # include <sys/types.h>
  960. +| #endif
  961. +| #ifdef HAVE_SYS_STAT_H
  962. +| # include <sys/stat.h>
  963. +| #endif
  964. +| #ifdef STDC_HEADERS
  965. +| # include <stdlib.h>
  966. +| # include <stddef.h>
  967. +| #else
  968. +| # ifdef HAVE_STDLIB_H
  969. +| # include <stdlib.h>
  970. +| # endif
  971. +| #endif
  972. +| #ifdef HAVE_STRING_H
  973. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  974. +| # include <memory.h>
  975. +| # endif
  976. +| # include <string.h>
  977. +| #endif
  978. +| #ifdef HAVE_STRINGS_H
  979. +| # include <strings.h>
  980. +| #endif
  981. +| #ifdef HAVE_INTTYPES_H
  982. +| # include <inttypes.h>
  983. +| #endif
  984. +| #ifdef HAVE_STDINT_H
  985. +| # include <stdint.h>
  986. +| #endif
  987. +| #ifdef HAVE_UNISTD_H
  988. +| # include <unistd.h>
  989. +| #endif
  990. +| int
  991. +| main ()
  992. +| {
  993. +| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 3)];
  994. +| test_array [0] = 0
  995. +|
  996. +| ;
  997. +| return 0;
  998. +| }
  999. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1000. +configure:4800: $? = 0
  1001. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1002. +configure:4800: $? = 0
  1003. +configure:4800: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1004. configure:4800: $? = 0
  1005. configure:4814: result: 4
  1006. configure:4828: checking size of long int
  1007. -configure:4833: gcc -o conftest -g -O2 conftest.c >&5
  1008. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1009. configure:4833: $? = 0
  1010. -configure:4833: ./conftest
  1011. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1012. +conftest.c: In function 'main':
  1013. +conftest.c:72:12: error: size of array 'test_array' is negative
  1014. +configure:4833: $? = 1
  1015. +configure: failed program was:
  1016. +| /* confdefs.h */
  1017. +| #define PACKAGE_NAME "motion"
  1018. +| #define PACKAGE_TARNAME "motion"
  1019. +| #define PACKAGE_VERSION "trunkREV528"
  1020. +| #define PACKAGE_STRING "motion trunkREV528"
  1021. +| #define PACKAGE_BUGREPORT ""
  1022. +| #define PACKAGE_URL ""
  1023. +| #define HAVE_SDL 1
  1024. +| #define HAVE_SQLITE3 1
  1025. +| #define STDC_HEADERS 1
  1026. +| #define HAVE_SYS_TYPES_H 1
  1027. +| #define HAVE_SYS_STAT_H 1
  1028. +| #define HAVE_STDLIB_H 1
  1029. +| #define HAVE_STRING_H 1
  1030. +| #define HAVE_MEMORY_H 1
  1031. +| #define HAVE_STRINGS_H 1
  1032. +| #define HAVE_INTTYPES_H 1
  1033. +| #define HAVE_STDINT_H 1
  1034. +| #define HAVE_UNISTD_H 1
  1035. +| #define HAVE_STDIO_H 1
  1036. +| #define HAVE_UNISTD_H 1
  1037. +| #define HAVE_STDINT_H 1
  1038. +| #define HAVE_FCNTL_H 1
  1039. +| #define HAVE_TIME_H 1
  1040. +| #define HAVE_SIGNAL_H 1
  1041. +| #define HAVE_SYS_IOCTL_H 1
  1042. +| #define HAVE_SYS_MMAN_H 1
  1043. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1044. +| #define HAVE_SYS_PARAM_H 1
  1045. +| #define HAVE_SYS_TYPES_H 1
  1046. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1047. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1048. +| #define SIZEOF_SHORT 2
  1049. +| #define SIZEOF_INT 4
  1050. +| /* end confdefs.h. */
  1051. +| #include <stdio.h>
  1052. +| #ifdef HAVE_SYS_TYPES_H
  1053. +| # include <sys/types.h>
  1054. +| #endif
  1055. +| #ifdef HAVE_SYS_STAT_H
  1056. +| # include <sys/stat.h>
  1057. +| #endif
  1058. +| #ifdef STDC_HEADERS
  1059. +| # include <stdlib.h>
  1060. +| # include <stddef.h>
  1061. +| #else
  1062. +| # ifdef HAVE_STDLIB_H
  1063. +| # include <stdlib.h>
  1064. +| # endif
  1065. +| #endif
  1066. +| #ifdef HAVE_STRING_H
  1067. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1068. +| # include <memory.h>
  1069. +| # endif
  1070. +| # include <string.h>
  1071. +| #endif
  1072. +| #ifdef HAVE_STRINGS_H
  1073. +| # include <strings.h>
  1074. +| #endif
  1075. +| #ifdef HAVE_INTTYPES_H
  1076. +| # include <inttypes.h>
  1077. +| #endif
  1078. +| #ifdef HAVE_STDINT_H
  1079. +| # include <stdint.h>
  1080. +| #endif
  1081. +| #ifdef HAVE_UNISTD_H
  1082. +| # include <unistd.h>
  1083. +| #endif
  1084. +| int
  1085. +| main ()
  1086. +| {
  1087. +| static int test_array [1 - 2 * !(((long int) (sizeof (long int))) <= 0)];
  1088. +| test_array [0] = 0
  1089. +|
  1090. +| ;
  1091. +| return 0;
  1092. +| }
  1093. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1094. +conftest.c: In function 'main':
  1095. +conftest.c:72:12: error: size of array 'test_array' is negative
  1096. +configure:4833: $? = 1
  1097. +configure: failed program was:
  1098. +| /* confdefs.h */
  1099. +| #define PACKAGE_NAME "motion"
  1100. +| #define PACKAGE_TARNAME "motion"
  1101. +| #define PACKAGE_VERSION "trunkREV528"
  1102. +| #define PACKAGE_STRING "motion trunkREV528"
  1103. +| #define PACKAGE_BUGREPORT ""
  1104. +| #define PACKAGE_URL ""
  1105. +| #define HAVE_SDL 1
  1106. +| #define HAVE_SQLITE3 1
  1107. +| #define STDC_HEADERS 1
  1108. +| #define HAVE_SYS_TYPES_H 1
  1109. +| #define HAVE_SYS_STAT_H 1
  1110. +| #define HAVE_STDLIB_H 1
  1111. +| #define HAVE_STRING_H 1
  1112. +| #define HAVE_MEMORY_H 1
  1113. +| #define HAVE_STRINGS_H 1
  1114. +| #define HAVE_INTTYPES_H 1
  1115. +| #define HAVE_STDINT_H 1
  1116. +| #define HAVE_UNISTD_H 1
  1117. +| #define HAVE_STDIO_H 1
  1118. +| #define HAVE_UNISTD_H 1
  1119. +| #define HAVE_STDINT_H 1
  1120. +| #define HAVE_FCNTL_H 1
  1121. +| #define HAVE_TIME_H 1
  1122. +| #define HAVE_SIGNAL_H 1
  1123. +| #define HAVE_SYS_IOCTL_H 1
  1124. +| #define HAVE_SYS_MMAN_H 1
  1125. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1126. +| #define HAVE_SYS_PARAM_H 1
  1127. +| #define HAVE_SYS_TYPES_H 1
  1128. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1129. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1130. +| #define SIZEOF_SHORT 2
  1131. +| #define SIZEOF_INT 4
  1132. +| /* end confdefs.h. */
  1133. +| #include <stdio.h>
  1134. +| #ifdef HAVE_SYS_TYPES_H
  1135. +| # include <sys/types.h>
  1136. +| #endif
  1137. +| #ifdef HAVE_SYS_STAT_H
  1138. +| # include <sys/stat.h>
  1139. +| #endif
  1140. +| #ifdef STDC_HEADERS
  1141. +| # include <stdlib.h>
  1142. +| # include <stddef.h>
  1143. +| #else
  1144. +| # ifdef HAVE_STDLIB_H
  1145. +| # include <stdlib.h>
  1146. +| # endif
  1147. +| #endif
  1148. +| #ifdef HAVE_STRING_H
  1149. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1150. +| # include <memory.h>
  1151. +| # endif
  1152. +| # include <string.h>
  1153. +| #endif
  1154. +| #ifdef HAVE_STRINGS_H
  1155. +| # include <strings.h>
  1156. +| #endif
  1157. +| #ifdef HAVE_INTTYPES_H
  1158. +| # include <inttypes.h>
  1159. +| #endif
  1160. +| #ifdef HAVE_STDINT_H
  1161. +| # include <stdint.h>
  1162. +| #endif
  1163. +| #ifdef HAVE_UNISTD_H
  1164. +| # include <unistd.h>
  1165. +| #endif
  1166. +| int
  1167. +| main ()
  1168. +| {
  1169. +| static int test_array [1 - 2 * !(((long int) (sizeof (long int))) <= 1)];
  1170. +| test_array [0] = 0
  1171. +|
  1172. +| ;
  1173. +| return 0;
  1174. +| }
  1175. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1176. +conftest.c: In function 'main':
  1177. +conftest.c:72:12: error: size of array 'test_array' is negative
  1178. +configure:4833: $? = 1
  1179. +configure: failed program was:
  1180. +| /* confdefs.h */
  1181. +| #define PACKAGE_NAME "motion"
  1182. +| #define PACKAGE_TARNAME "motion"
  1183. +| #define PACKAGE_VERSION "trunkREV528"
  1184. +| #define PACKAGE_STRING "motion trunkREV528"
  1185. +| #define PACKAGE_BUGREPORT ""
  1186. +| #define PACKAGE_URL ""
  1187. +| #define HAVE_SDL 1
  1188. +| #define HAVE_SQLITE3 1
  1189. +| #define STDC_HEADERS 1
  1190. +| #define HAVE_SYS_TYPES_H 1
  1191. +| #define HAVE_SYS_STAT_H 1
  1192. +| #define HAVE_STDLIB_H 1
  1193. +| #define HAVE_STRING_H 1
  1194. +| #define HAVE_MEMORY_H 1
  1195. +| #define HAVE_STRINGS_H 1
  1196. +| #define HAVE_INTTYPES_H 1
  1197. +| #define HAVE_STDINT_H 1
  1198. +| #define HAVE_UNISTD_H 1
  1199. +| #define HAVE_STDIO_H 1
  1200. +| #define HAVE_UNISTD_H 1
  1201. +| #define HAVE_STDINT_H 1
  1202. +| #define HAVE_FCNTL_H 1
  1203. +| #define HAVE_TIME_H 1
  1204. +| #define HAVE_SIGNAL_H 1
  1205. +| #define HAVE_SYS_IOCTL_H 1
  1206. +| #define HAVE_SYS_MMAN_H 1
  1207. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1208. +| #define HAVE_SYS_PARAM_H 1
  1209. +| #define HAVE_SYS_TYPES_H 1
  1210. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1211. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1212. +| #define SIZEOF_SHORT 2
  1213. +| #define SIZEOF_INT 4
  1214. +| /* end confdefs.h. */
  1215. +| #include <stdio.h>
  1216. +| #ifdef HAVE_SYS_TYPES_H
  1217. +| # include <sys/types.h>
  1218. +| #endif
  1219. +| #ifdef HAVE_SYS_STAT_H
  1220. +| # include <sys/stat.h>
  1221. +| #endif
  1222. +| #ifdef STDC_HEADERS
  1223. +| # include <stdlib.h>
  1224. +| # include <stddef.h>
  1225. +| #else
  1226. +| # ifdef HAVE_STDLIB_H
  1227. +| # include <stdlib.h>
  1228. +| # endif
  1229. +| #endif
  1230. +| #ifdef HAVE_STRING_H
  1231. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1232. +| # include <memory.h>
  1233. +| # endif
  1234. +| # include <string.h>
  1235. +| #endif
  1236. +| #ifdef HAVE_STRINGS_H
  1237. +| # include <strings.h>
  1238. +| #endif
  1239. +| #ifdef HAVE_INTTYPES_H
  1240. +| # include <inttypes.h>
  1241. +| #endif
  1242. +| #ifdef HAVE_STDINT_H
  1243. +| # include <stdint.h>
  1244. +| #endif
  1245. +| #ifdef HAVE_UNISTD_H
  1246. +| # include <unistd.h>
  1247. +| #endif
  1248. +| int
  1249. +| main ()
  1250. +| {
  1251. +| static int test_array [1 - 2 * !(((long int) (sizeof (long int))) <= 3)];
  1252. +| test_array [0] = 0
  1253. +|
  1254. +| ;
  1255. +| return 0;
  1256. +| }
  1257. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1258. configure:4833: $? = 0
  1259. -configure:4847: result: 8
  1260. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1261. +configure:4833: $? = 0
  1262. +configure:4833: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1263. +configure:4833: $? = 0
  1264. +configure:4847: result: 4
  1265. configure:4861: checking size of long long
  1266. -configure:4866: gcc -o conftest -g -O2 conftest.c >&5
  1267. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1268. configure:4866: $? = 0
  1269. -configure:4866: ./conftest
  1270. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1271. +conftest.c: In function 'main':
  1272. +conftest.c:73:12: error: size of array 'test_array' is negative
  1273. +configure:4866: $? = 1
  1274. +configure: failed program was:
  1275. +| /* confdefs.h */
  1276. +| #define PACKAGE_NAME "motion"
  1277. +| #define PACKAGE_TARNAME "motion"
  1278. +| #define PACKAGE_VERSION "trunkREV528"
  1279. +| #define PACKAGE_STRING "motion trunkREV528"
  1280. +| #define PACKAGE_BUGREPORT ""
  1281. +| #define PACKAGE_URL ""
  1282. +| #define HAVE_SDL 1
  1283. +| #define HAVE_SQLITE3 1
  1284. +| #define STDC_HEADERS 1
  1285. +| #define HAVE_SYS_TYPES_H 1
  1286. +| #define HAVE_SYS_STAT_H 1
  1287. +| #define HAVE_STDLIB_H 1
  1288. +| #define HAVE_STRING_H 1
  1289. +| #define HAVE_MEMORY_H 1
  1290. +| #define HAVE_STRINGS_H 1
  1291. +| #define HAVE_INTTYPES_H 1
  1292. +| #define HAVE_STDINT_H 1
  1293. +| #define HAVE_UNISTD_H 1
  1294. +| #define HAVE_STDIO_H 1
  1295. +| #define HAVE_UNISTD_H 1
  1296. +| #define HAVE_STDINT_H 1
  1297. +| #define HAVE_FCNTL_H 1
  1298. +| #define HAVE_TIME_H 1
  1299. +| #define HAVE_SIGNAL_H 1
  1300. +| #define HAVE_SYS_IOCTL_H 1
  1301. +| #define HAVE_SYS_MMAN_H 1
  1302. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1303. +| #define HAVE_SYS_PARAM_H 1
  1304. +| #define HAVE_SYS_TYPES_H 1
  1305. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1306. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1307. +| #define SIZEOF_SHORT 2
  1308. +| #define SIZEOF_INT 4
  1309. +| #define SIZEOF_LONG_INT 4
  1310. +| /* end confdefs.h. */
  1311. +| #include <stdio.h>
  1312. +| #ifdef HAVE_SYS_TYPES_H
  1313. +| # include <sys/types.h>
  1314. +| #endif
  1315. +| #ifdef HAVE_SYS_STAT_H
  1316. +| # include <sys/stat.h>
  1317. +| #endif
  1318. +| #ifdef STDC_HEADERS
  1319. +| # include <stdlib.h>
  1320. +| # include <stddef.h>
  1321. +| #else
  1322. +| # ifdef HAVE_STDLIB_H
  1323. +| # include <stdlib.h>
  1324. +| # endif
  1325. +| #endif
  1326. +| #ifdef HAVE_STRING_H
  1327. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1328. +| # include <memory.h>
  1329. +| # endif
  1330. +| # include <string.h>
  1331. +| #endif
  1332. +| #ifdef HAVE_STRINGS_H
  1333. +| # include <strings.h>
  1334. +| #endif
  1335. +| #ifdef HAVE_INTTYPES_H
  1336. +| # include <inttypes.h>
  1337. +| #endif
  1338. +| #ifdef HAVE_STDINT_H
  1339. +| # include <stdint.h>
  1340. +| #endif
  1341. +| #ifdef HAVE_UNISTD_H
  1342. +| # include <unistd.h>
  1343. +| #endif
  1344. +| int
  1345. +| main ()
  1346. +| {
  1347. +| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 0)];
  1348. +| test_array [0] = 0
  1349. +|
  1350. +| ;
  1351. +| return 0;
  1352. +| }
  1353. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1354. +conftest.c: In function 'main':
  1355. +conftest.c:73:12: error: size of array 'test_array' is negative
  1356. +configure:4866: $? = 1
  1357. +configure: failed program was:
  1358. +| /* confdefs.h */
  1359. +| #define PACKAGE_NAME "motion"
  1360. +| #define PACKAGE_TARNAME "motion"
  1361. +| #define PACKAGE_VERSION "trunkREV528"
  1362. +| #define PACKAGE_STRING "motion trunkREV528"
  1363. +| #define PACKAGE_BUGREPORT ""
  1364. +| #define PACKAGE_URL ""
  1365. +| #define HAVE_SDL 1
  1366. +| #define HAVE_SQLITE3 1
  1367. +| #define STDC_HEADERS 1
  1368. +| #define HAVE_SYS_TYPES_H 1
  1369. +| #define HAVE_SYS_STAT_H 1
  1370. +| #define HAVE_STDLIB_H 1
  1371. +| #define HAVE_STRING_H 1
  1372. +| #define HAVE_MEMORY_H 1
  1373. +| #define HAVE_STRINGS_H 1
  1374. +| #define HAVE_INTTYPES_H 1
  1375. +| #define HAVE_STDINT_H 1
  1376. +| #define HAVE_UNISTD_H 1
  1377. +| #define HAVE_STDIO_H 1
  1378. +| #define HAVE_UNISTD_H 1
  1379. +| #define HAVE_STDINT_H 1
  1380. +| #define HAVE_FCNTL_H 1
  1381. +| #define HAVE_TIME_H 1
  1382. +| #define HAVE_SIGNAL_H 1
  1383. +| #define HAVE_SYS_IOCTL_H 1
  1384. +| #define HAVE_SYS_MMAN_H 1
  1385. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1386. +| #define HAVE_SYS_PARAM_H 1
  1387. +| #define HAVE_SYS_TYPES_H 1
  1388. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1389. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1390. +| #define SIZEOF_SHORT 2
  1391. +| #define SIZEOF_INT 4
  1392. +| #define SIZEOF_LONG_INT 4
  1393. +| /* end confdefs.h. */
  1394. +| #include <stdio.h>
  1395. +| #ifdef HAVE_SYS_TYPES_H
  1396. +| # include <sys/types.h>
  1397. +| #endif
  1398. +| #ifdef HAVE_SYS_STAT_H
  1399. +| # include <sys/stat.h>
  1400. +| #endif
  1401. +| #ifdef STDC_HEADERS
  1402. +| # include <stdlib.h>
  1403. +| # include <stddef.h>
  1404. +| #else
  1405. +| # ifdef HAVE_STDLIB_H
  1406. +| # include <stdlib.h>
  1407. +| # endif
  1408. +| #endif
  1409. +| #ifdef HAVE_STRING_H
  1410. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1411. +| # include <memory.h>
  1412. +| # endif
  1413. +| # include <string.h>
  1414. +| #endif
  1415. +| #ifdef HAVE_STRINGS_H
  1416. +| # include <strings.h>
  1417. +| #endif
  1418. +| #ifdef HAVE_INTTYPES_H
  1419. +| # include <inttypes.h>
  1420. +| #endif
  1421. +| #ifdef HAVE_STDINT_H
  1422. +| # include <stdint.h>
  1423. +| #endif
  1424. +| #ifdef HAVE_UNISTD_H
  1425. +| # include <unistd.h>
  1426. +| #endif
  1427. +| int
  1428. +| main ()
  1429. +| {
  1430. +| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 1)];
  1431. +| test_array [0] = 0
  1432. +|
  1433. +| ;
  1434. +| return 0;
  1435. +| }
  1436. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1437. +conftest.c: In function 'main':
  1438. +conftest.c:73:12: error: size of array 'test_array' is negative
  1439. +configure:4866: $? = 1
  1440. +configure: failed program was:
  1441. +| /* confdefs.h */
  1442. +| #define PACKAGE_NAME "motion"
  1443. +| #define PACKAGE_TARNAME "motion"
  1444. +| #define PACKAGE_VERSION "trunkREV528"
  1445. +| #define PACKAGE_STRING "motion trunkREV528"
  1446. +| #define PACKAGE_BUGREPORT ""
  1447. +| #define PACKAGE_URL ""
  1448. +| #define HAVE_SDL 1
  1449. +| #define HAVE_SQLITE3 1
  1450. +| #define STDC_HEADERS 1
  1451. +| #define HAVE_SYS_TYPES_H 1
  1452. +| #define HAVE_SYS_STAT_H 1
  1453. +| #define HAVE_STDLIB_H 1
  1454. +| #define HAVE_STRING_H 1
  1455. +| #define HAVE_MEMORY_H 1
  1456. +| #define HAVE_STRINGS_H 1
  1457. +| #define HAVE_INTTYPES_H 1
  1458. +| #define HAVE_STDINT_H 1
  1459. +| #define HAVE_UNISTD_H 1
  1460. +| #define HAVE_STDIO_H 1
  1461. +| #define HAVE_UNISTD_H 1
  1462. +| #define HAVE_STDINT_H 1
  1463. +| #define HAVE_FCNTL_H 1
  1464. +| #define HAVE_TIME_H 1
  1465. +| #define HAVE_SIGNAL_H 1
  1466. +| #define HAVE_SYS_IOCTL_H 1
  1467. +| #define HAVE_SYS_MMAN_H 1
  1468. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1469. +| #define HAVE_SYS_PARAM_H 1
  1470. +| #define HAVE_SYS_TYPES_H 1
  1471. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1472. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1473. +| #define SIZEOF_SHORT 2
  1474. +| #define SIZEOF_INT 4
  1475. +| #define SIZEOF_LONG_INT 4
  1476. +| /* end confdefs.h. */
  1477. +| #include <stdio.h>
  1478. +| #ifdef HAVE_SYS_TYPES_H
  1479. +| # include <sys/types.h>
  1480. +| #endif
  1481. +| #ifdef HAVE_SYS_STAT_H
  1482. +| # include <sys/stat.h>
  1483. +| #endif
  1484. +| #ifdef STDC_HEADERS
  1485. +| # include <stdlib.h>
  1486. +| # include <stddef.h>
  1487. +| #else
  1488. +| # ifdef HAVE_STDLIB_H
  1489. +| # include <stdlib.h>
  1490. +| # endif
  1491. +| #endif
  1492. +| #ifdef HAVE_STRING_H
  1493. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1494. +| # include <memory.h>
  1495. +| # endif
  1496. +| # include <string.h>
  1497. +| #endif
  1498. +| #ifdef HAVE_STRINGS_H
  1499. +| # include <strings.h>
  1500. +| #endif
  1501. +| #ifdef HAVE_INTTYPES_H
  1502. +| # include <inttypes.h>
  1503. +| #endif
  1504. +| #ifdef HAVE_STDINT_H
  1505. +| # include <stdint.h>
  1506. +| #endif
  1507. +| #ifdef HAVE_UNISTD_H
  1508. +| # include <unistd.h>
  1509. +| #endif
  1510. +| int
  1511. +| main ()
  1512. +| {
  1513. +| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 3)];
  1514. +| test_array [0] = 0
  1515. +|
  1516. +| ;
  1517. +| return 0;
  1518. +| }
  1519. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1520. +conftest.c: In function 'main':
  1521. +conftest.c:73:12: error: size of array 'test_array' is negative
  1522. +configure:4866: $? = 1
  1523. +configure: failed program was:
  1524. +| /* confdefs.h */
  1525. +| #define PACKAGE_NAME "motion"
  1526. +| #define PACKAGE_TARNAME "motion"
  1527. +| #define PACKAGE_VERSION "trunkREV528"
  1528. +| #define PACKAGE_STRING "motion trunkREV528"
  1529. +| #define PACKAGE_BUGREPORT ""
  1530. +| #define PACKAGE_URL ""
  1531. +| #define HAVE_SDL 1
  1532. +| #define HAVE_SQLITE3 1
  1533. +| #define STDC_HEADERS 1
  1534. +| #define HAVE_SYS_TYPES_H 1
  1535. +| #define HAVE_SYS_STAT_H 1
  1536. +| #define HAVE_STDLIB_H 1
  1537. +| #define HAVE_STRING_H 1
  1538. +| #define HAVE_MEMORY_H 1
  1539. +| #define HAVE_STRINGS_H 1
  1540. +| #define HAVE_INTTYPES_H 1
  1541. +| #define HAVE_STDINT_H 1
  1542. +| #define HAVE_UNISTD_H 1
  1543. +| #define HAVE_STDIO_H 1
  1544. +| #define HAVE_UNISTD_H 1
  1545. +| #define HAVE_STDINT_H 1
  1546. +| #define HAVE_FCNTL_H 1
  1547. +| #define HAVE_TIME_H 1
  1548. +| #define HAVE_SIGNAL_H 1
  1549. +| #define HAVE_SYS_IOCTL_H 1
  1550. +| #define HAVE_SYS_MMAN_H 1
  1551. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1552. +| #define HAVE_SYS_PARAM_H 1
  1553. +| #define HAVE_SYS_TYPES_H 1
  1554. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1555. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1556. +| #define SIZEOF_SHORT 2
  1557. +| #define SIZEOF_INT 4
  1558. +| #define SIZEOF_LONG_INT 4
  1559. +| /* end confdefs.h. */
  1560. +| #include <stdio.h>
  1561. +| #ifdef HAVE_SYS_TYPES_H
  1562. +| # include <sys/types.h>
  1563. +| #endif
  1564. +| #ifdef HAVE_SYS_STAT_H
  1565. +| # include <sys/stat.h>
  1566. +| #endif
  1567. +| #ifdef STDC_HEADERS
  1568. +| # include <stdlib.h>
  1569. +| # include <stddef.h>
  1570. +| #else
  1571. +| # ifdef HAVE_STDLIB_H
  1572. +| # include <stdlib.h>
  1573. +| # endif
  1574. +| #endif
  1575. +| #ifdef HAVE_STRING_H
  1576. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1577. +| # include <memory.h>
  1578. +| # endif
  1579. +| # include <string.h>
  1580. +| #endif
  1581. +| #ifdef HAVE_STRINGS_H
  1582. +| # include <strings.h>
  1583. +| #endif
  1584. +| #ifdef HAVE_INTTYPES_H
  1585. +| # include <inttypes.h>
  1586. +| #endif
  1587. +| #ifdef HAVE_STDINT_H
  1588. +| # include <stdint.h>
  1589. +| #endif
  1590. +| #ifdef HAVE_UNISTD_H
  1591. +| # include <unistd.h>
  1592. +| #endif
  1593. +| int
  1594. +| main ()
  1595. +| {
  1596. +| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 7)];
  1597. +| test_array [0] = 0
  1598. +|
  1599. +| ;
  1600. +| return 0;
  1601. +| }
  1602. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1603. +configure:4866: $? = 0
  1604. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1605. +configure:4866: $? = 0
  1606. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1607. +configure:4866: $? = 0
  1608. +configure:4866: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1609. configure:4866: $? = 0
  1610. configure:4880: result: 8
  1611. configure:4894: checking size of int *
  1612. -configure:4899: gcc -o conftest -g -O2 conftest.c >&5
  1613. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1614. configure:4899: $? = 0
  1615. -configure:4899: ./conftest
  1616. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1617. +conftest.c: In function 'main':
  1618. +conftest.c:74:12: error: size of array 'test_array' is negative
  1619. +configure:4899: $? = 1
  1620. +configure: failed program was:
  1621. +| /* confdefs.h */
  1622. +| #define PACKAGE_NAME "motion"
  1623. +| #define PACKAGE_TARNAME "motion"
  1624. +| #define PACKAGE_VERSION "trunkREV528"
  1625. +| #define PACKAGE_STRING "motion trunkREV528"
  1626. +| #define PACKAGE_BUGREPORT ""
  1627. +| #define PACKAGE_URL ""
  1628. +| #define HAVE_SDL 1
  1629. +| #define HAVE_SQLITE3 1
  1630. +| #define STDC_HEADERS 1
  1631. +| #define HAVE_SYS_TYPES_H 1
  1632. +| #define HAVE_SYS_STAT_H 1
  1633. +| #define HAVE_STDLIB_H 1
  1634. +| #define HAVE_STRING_H 1
  1635. +| #define HAVE_MEMORY_H 1
  1636. +| #define HAVE_STRINGS_H 1
  1637. +| #define HAVE_INTTYPES_H 1
  1638. +| #define HAVE_STDINT_H 1
  1639. +| #define HAVE_UNISTD_H 1
  1640. +| #define HAVE_STDIO_H 1
  1641. +| #define HAVE_UNISTD_H 1
  1642. +| #define HAVE_STDINT_H 1
  1643. +| #define HAVE_FCNTL_H 1
  1644. +| #define HAVE_TIME_H 1
  1645. +| #define HAVE_SIGNAL_H 1
  1646. +| #define HAVE_SYS_IOCTL_H 1
  1647. +| #define HAVE_SYS_MMAN_H 1
  1648. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1649. +| #define HAVE_SYS_PARAM_H 1
  1650. +| #define HAVE_SYS_TYPES_H 1
  1651. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1652. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1653. +| #define SIZEOF_SHORT 2
  1654. +| #define SIZEOF_INT 4
  1655. +| #define SIZEOF_LONG_INT 4
  1656. +| #define SIZEOF_LONG_LONG 8
  1657. +| /* end confdefs.h. */
  1658. +| #include <stdio.h>
  1659. +| #ifdef HAVE_SYS_TYPES_H
  1660. +| # include <sys/types.h>
  1661. +| #endif
  1662. +| #ifdef HAVE_SYS_STAT_H
  1663. +| # include <sys/stat.h>
  1664. +| #endif
  1665. +| #ifdef STDC_HEADERS
  1666. +| # include <stdlib.h>
  1667. +| # include <stddef.h>
  1668. +| #else
  1669. +| # ifdef HAVE_STDLIB_H
  1670. +| # include <stdlib.h>
  1671. +| # endif
  1672. +| #endif
  1673. +| #ifdef HAVE_STRING_H
  1674. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1675. +| # include <memory.h>
  1676. +| # endif
  1677. +| # include <string.h>
  1678. +| #endif
  1679. +| #ifdef HAVE_STRINGS_H
  1680. +| # include <strings.h>
  1681. +| #endif
  1682. +| #ifdef HAVE_INTTYPES_H
  1683. +| # include <inttypes.h>
  1684. +| #endif
  1685. +| #ifdef HAVE_STDINT_H
  1686. +| # include <stdint.h>
  1687. +| #endif
  1688. +| #ifdef HAVE_UNISTD_H
  1689. +| # include <unistd.h>
  1690. +| #endif
  1691. +| int
  1692. +| main ()
  1693. +| {
  1694. +| static int test_array [1 - 2 * !(((long int) (sizeof (int *))) <= 0)];
  1695. +| test_array [0] = 0
  1696. +|
  1697. +| ;
  1698. +| return 0;
  1699. +| }
  1700. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1701. +conftest.c: In function 'main':
  1702. +conftest.c:74:12: error: size of array 'test_array' is negative
  1703. +configure:4899: $? = 1
  1704. +configure: failed program was:
  1705. +| /* confdefs.h */
  1706. +| #define PACKAGE_NAME "motion"
  1707. +| #define PACKAGE_TARNAME "motion"
  1708. +| #define PACKAGE_VERSION "trunkREV528"
  1709. +| #define PACKAGE_STRING "motion trunkREV528"
  1710. +| #define PACKAGE_BUGREPORT ""
  1711. +| #define PACKAGE_URL ""
  1712. +| #define HAVE_SDL 1
  1713. +| #define HAVE_SQLITE3 1
  1714. +| #define STDC_HEADERS 1
  1715. +| #define HAVE_SYS_TYPES_H 1
  1716. +| #define HAVE_SYS_STAT_H 1
  1717. +| #define HAVE_STDLIB_H 1
  1718. +| #define HAVE_STRING_H 1
  1719. +| #define HAVE_MEMORY_H 1
  1720. +| #define HAVE_STRINGS_H 1
  1721. +| #define HAVE_INTTYPES_H 1
  1722. +| #define HAVE_STDINT_H 1
  1723. +| #define HAVE_UNISTD_H 1
  1724. +| #define HAVE_STDIO_H 1
  1725. +| #define HAVE_UNISTD_H 1
  1726. +| #define HAVE_STDINT_H 1
  1727. +| #define HAVE_FCNTL_H 1
  1728. +| #define HAVE_TIME_H 1
  1729. +| #define HAVE_SIGNAL_H 1
  1730. +| #define HAVE_SYS_IOCTL_H 1
  1731. +| #define HAVE_SYS_MMAN_H 1
  1732. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1733. +| #define HAVE_SYS_PARAM_H 1
  1734. +| #define HAVE_SYS_TYPES_H 1
  1735. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1736. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1737. +| #define SIZEOF_SHORT 2
  1738. +| #define SIZEOF_INT 4
  1739. +| #define SIZEOF_LONG_INT 4
  1740. +| #define SIZEOF_LONG_LONG 8
  1741. +| /* end confdefs.h. */
  1742. +| #include <stdio.h>
  1743. +| #ifdef HAVE_SYS_TYPES_H
  1744. +| # include <sys/types.h>
  1745. +| #endif
  1746. +| #ifdef HAVE_SYS_STAT_H
  1747. +| # include <sys/stat.h>
  1748. +| #endif
  1749. +| #ifdef STDC_HEADERS
  1750. +| # include <stdlib.h>
  1751. +| # include <stddef.h>
  1752. +| #else
  1753. +| # ifdef HAVE_STDLIB_H
  1754. +| # include <stdlib.h>
  1755. +| # endif
  1756. +| #endif
  1757. +| #ifdef HAVE_STRING_H
  1758. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1759. +| # include <memory.h>
  1760. +| # endif
  1761. +| # include <string.h>
  1762. +| #endif
  1763. +| #ifdef HAVE_STRINGS_H
  1764. +| # include <strings.h>
  1765. +| #endif
  1766. +| #ifdef HAVE_INTTYPES_H
  1767. +| # include <inttypes.h>
  1768. +| #endif
  1769. +| #ifdef HAVE_STDINT_H
  1770. +| # include <stdint.h>
  1771. +| #endif
  1772. +| #ifdef HAVE_UNISTD_H
  1773. +| # include <unistd.h>
  1774. +| #endif
  1775. +| int
  1776. +| main ()
  1777. +| {
  1778. +| static int test_array [1 - 2 * !(((long int) (sizeof (int *))) <= 1)];
  1779. +| test_array [0] = 0
  1780. +|
  1781. +| ;
  1782. +| return 0;
  1783. +| }
  1784. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1785. +conftest.c: In function 'main':
  1786. +conftest.c:74:12: error: size of array 'test_array' is negative
  1787. +configure:4899: $? = 1
  1788. +configure: failed program was:
  1789. +| /* confdefs.h */
  1790. +| #define PACKAGE_NAME "motion"
  1791. +| #define PACKAGE_TARNAME "motion"
  1792. +| #define PACKAGE_VERSION "trunkREV528"
  1793. +| #define PACKAGE_STRING "motion trunkREV528"
  1794. +| #define PACKAGE_BUGREPORT ""
  1795. +| #define PACKAGE_URL ""
  1796. +| #define HAVE_SDL 1
  1797. +| #define HAVE_SQLITE3 1
  1798. +| #define STDC_HEADERS 1
  1799. +| #define HAVE_SYS_TYPES_H 1
  1800. +| #define HAVE_SYS_STAT_H 1
  1801. +| #define HAVE_STDLIB_H 1
  1802. +| #define HAVE_STRING_H 1
  1803. +| #define HAVE_MEMORY_H 1
  1804. +| #define HAVE_STRINGS_H 1
  1805. +| #define HAVE_INTTYPES_H 1
  1806. +| #define HAVE_STDINT_H 1
  1807. +| #define HAVE_UNISTD_H 1
  1808. +| #define HAVE_STDIO_H 1
  1809. +| #define HAVE_UNISTD_H 1
  1810. +| #define HAVE_STDINT_H 1
  1811. +| #define HAVE_FCNTL_H 1
  1812. +| #define HAVE_TIME_H 1
  1813. +| #define HAVE_SIGNAL_H 1
  1814. +| #define HAVE_SYS_IOCTL_H 1
  1815. +| #define HAVE_SYS_MMAN_H 1
  1816. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1817. +| #define HAVE_SYS_PARAM_H 1
  1818. +| #define HAVE_SYS_TYPES_H 1
  1819. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1820. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1821. +| #define SIZEOF_SHORT 2
  1822. +| #define SIZEOF_INT 4
  1823. +| #define SIZEOF_LONG_INT 4
  1824. +| #define SIZEOF_LONG_LONG 8
  1825. +| /* end confdefs.h. */
  1826. +| #include <stdio.h>
  1827. +| #ifdef HAVE_SYS_TYPES_H
  1828. +| # include <sys/types.h>
  1829. +| #endif
  1830. +| #ifdef HAVE_SYS_STAT_H
  1831. +| # include <sys/stat.h>
  1832. +| #endif
  1833. +| #ifdef STDC_HEADERS
  1834. +| # include <stdlib.h>
  1835. +| # include <stddef.h>
  1836. +| #else
  1837. +| # ifdef HAVE_STDLIB_H
  1838. +| # include <stdlib.h>
  1839. +| # endif
  1840. +| #endif
  1841. +| #ifdef HAVE_STRING_H
  1842. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1843. +| # include <memory.h>
  1844. +| # endif
  1845. +| # include <string.h>
  1846. +| #endif
  1847. +| #ifdef HAVE_STRINGS_H
  1848. +| # include <strings.h>
  1849. +| #endif
  1850. +| #ifdef HAVE_INTTYPES_H
  1851. +| # include <inttypes.h>
  1852. +| #endif
  1853. +| #ifdef HAVE_STDINT_H
  1854. +| # include <stdint.h>
  1855. +| #endif
  1856. +| #ifdef HAVE_UNISTD_H
  1857. +| # include <unistd.h>
  1858. +| #endif
  1859. +| int
  1860. +| main ()
  1861. +| {
  1862. +| static int test_array [1 - 2 * !(((long int) (sizeof (int *))) <= 3)];
  1863. +| test_array [0] = 0
  1864. +|
  1865. +| ;
  1866. +| return 0;
  1867. +| }
  1868. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1869. configure:4899: $? = 0
  1870. -configure:4913: result: 8
  1871. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1872. +configure:4899: $? = 0
  1873. +configure:4899: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1874. +configure:4899: $? = 0
  1875. +configure:4913: result: 4
  1876. configure:4927: checking size of void *
  1877. -configure:4932: gcc -o conftest -g -O2 conftest.c >&5
  1878. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1879. configure:4932: $? = 0
  1880. -configure:4932: ./conftest
  1881. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1882. +conftest.c: In function 'main':
  1883. +conftest.c:75:12: error: size of array 'test_array' is negative
  1884. +configure:4932: $? = 1
  1885. +configure: failed program was:
  1886. +| /* confdefs.h */
  1887. +| #define PACKAGE_NAME "motion"
  1888. +| #define PACKAGE_TARNAME "motion"
  1889. +| #define PACKAGE_VERSION "trunkREV528"
  1890. +| #define PACKAGE_STRING "motion trunkREV528"
  1891. +| #define PACKAGE_BUGREPORT ""
  1892. +| #define PACKAGE_URL ""
  1893. +| #define HAVE_SDL 1
  1894. +| #define HAVE_SQLITE3 1
  1895. +| #define STDC_HEADERS 1
  1896. +| #define HAVE_SYS_TYPES_H 1
  1897. +| #define HAVE_SYS_STAT_H 1
  1898. +| #define HAVE_STDLIB_H 1
  1899. +| #define HAVE_STRING_H 1
  1900. +| #define HAVE_MEMORY_H 1
  1901. +| #define HAVE_STRINGS_H 1
  1902. +| #define HAVE_INTTYPES_H 1
  1903. +| #define HAVE_STDINT_H 1
  1904. +| #define HAVE_UNISTD_H 1
  1905. +| #define HAVE_STDIO_H 1
  1906. +| #define HAVE_UNISTD_H 1
  1907. +| #define HAVE_STDINT_H 1
  1908. +| #define HAVE_FCNTL_H 1
  1909. +| #define HAVE_TIME_H 1
  1910. +| #define HAVE_SIGNAL_H 1
  1911. +| #define HAVE_SYS_IOCTL_H 1
  1912. +| #define HAVE_SYS_MMAN_H 1
  1913. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1914. +| #define HAVE_SYS_PARAM_H 1
  1915. +| #define HAVE_SYS_TYPES_H 1
  1916. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  1917. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1918. +| #define SIZEOF_SHORT 2
  1919. +| #define SIZEOF_INT 4
  1920. +| #define SIZEOF_LONG_INT 4
  1921. +| #define SIZEOF_LONG_LONG 8
  1922. +| #define SIZEOF_INT_P 4
  1923. +| /* end confdefs.h. */
  1924. +| #include <stdio.h>
  1925. +| #ifdef HAVE_SYS_TYPES_H
  1926. +| # include <sys/types.h>
  1927. +| #endif
  1928. +| #ifdef HAVE_SYS_STAT_H
  1929. +| # include <sys/stat.h>
  1930. +| #endif
  1931. +| #ifdef STDC_HEADERS
  1932. +| # include <stdlib.h>
  1933. +| # include <stddef.h>
  1934. +| #else
  1935. +| # ifdef HAVE_STDLIB_H
  1936. +| # include <stdlib.h>
  1937. +| # endif
  1938. +| #endif
  1939. +| #ifdef HAVE_STRING_H
  1940. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1941. +| # include <memory.h>
  1942. +| # endif
  1943. +| # include <string.h>
  1944. +| #endif
  1945. +| #ifdef HAVE_STRINGS_H
  1946. +| # include <strings.h>
  1947. +| #endif
  1948. +| #ifdef HAVE_INTTYPES_H
  1949. +| # include <inttypes.h>
  1950. +| #endif
  1951. +| #ifdef HAVE_STDINT_H
  1952. +| # include <stdint.h>
  1953. +| #endif
  1954. +| #ifdef HAVE_UNISTD_H
  1955. +| # include <unistd.h>
  1956. +| #endif
  1957. +| int
  1958. +| main ()
  1959. +| {
  1960. +| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 0)];
  1961. +| test_array [0] = 0
  1962. +|
  1963. +| ;
  1964. +| return 0;
  1965. +| }
  1966. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  1967. +conftest.c: In function 'main':
  1968. +conftest.c:75:12: error: size of array 'test_array' is negative
  1969. +configure:4932: $? = 1
  1970. +configure: failed program was:
  1971. +| /* confdefs.h */
  1972. +| #define PACKAGE_NAME "motion"
  1973. +| #define PACKAGE_TARNAME "motion"
  1974. +| #define PACKAGE_VERSION "trunkREV528"
  1975. +| #define PACKAGE_STRING "motion trunkREV528"
  1976. +| #define PACKAGE_BUGREPORT ""
  1977. +| #define PACKAGE_URL ""
  1978. +| #define HAVE_SDL 1
  1979. +| #define HAVE_SQLITE3 1
  1980. +| #define STDC_HEADERS 1
  1981. +| #define HAVE_SYS_TYPES_H 1
  1982. +| #define HAVE_SYS_STAT_H 1
  1983. +| #define HAVE_STDLIB_H 1
  1984. +| #define HAVE_STRING_H 1
  1985. +| #define HAVE_MEMORY_H 1
  1986. +| #define HAVE_STRINGS_H 1
  1987. +| #define HAVE_INTTYPES_H 1
  1988. +| #define HAVE_STDINT_H 1
  1989. +| #define HAVE_UNISTD_H 1
  1990. +| #define HAVE_STDIO_H 1
  1991. +| #define HAVE_UNISTD_H 1
  1992. +| #define HAVE_STDINT_H 1
  1993. +| #define HAVE_FCNTL_H 1
  1994. +| #define HAVE_TIME_H 1
  1995. +| #define HAVE_SIGNAL_H 1
  1996. +| #define HAVE_SYS_IOCTL_H 1
  1997. +| #define HAVE_SYS_MMAN_H 1
  1998. +| #define HAVE_LINUX_VIDEODEV2_H 1
  1999. +| #define HAVE_SYS_PARAM_H 1
  2000. +| #define HAVE_SYS_TYPES_H 1
  2001. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  2002. +| #define HAVE_LINUX_VIDEODEV2_H 1
  2003. +| #define SIZEOF_SHORT 2
  2004. +| #define SIZEOF_INT 4
  2005. +| #define SIZEOF_LONG_INT 4
  2006. +| #define SIZEOF_LONG_LONG 8
  2007. +| #define SIZEOF_INT_P 4
  2008. +| /* end confdefs.h. */
  2009. +| #include <stdio.h>
  2010. +| #ifdef HAVE_SYS_TYPES_H
  2011. +| # include <sys/types.h>
  2012. +| #endif
  2013. +| #ifdef HAVE_SYS_STAT_H
  2014. +| # include <sys/stat.h>
  2015. +| #endif
  2016. +| #ifdef STDC_HEADERS
  2017. +| # include <stdlib.h>
  2018. +| # include <stddef.h>
  2019. +| #else
  2020. +| # ifdef HAVE_STDLIB_H
  2021. +| # include <stdlib.h>
  2022. +| # endif
  2023. +| #endif
  2024. +| #ifdef HAVE_STRING_H
  2025. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2026. +| # include <memory.h>
  2027. +| # endif
  2028. +| # include <string.h>
  2029. +| #endif
  2030. +| #ifdef HAVE_STRINGS_H
  2031. +| # include <strings.h>
  2032. +| #endif
  2033. +| #ifdef HAVE_INTTYPES_H
  2034. +| # include <inttypes.h>
  2035. +| #endif
  2036. +| #ifdef HAVE_STDINT_H
  2037. +| # include <stdint.h>
  2038. +| #endif
  2039. +| #ifdef HAVE_UNISTD_H
  2040. +| # include <unistd.h>
  2041. +| #endif
  2042. +| int
  2043. +| main ()
  2044. +| {
  2045. +| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 1)];
  2046. +| test_array [0] = 0
  2047. +|
  2048. +| ;
  2049. +| return 0;
  2050. +| }
  2051. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  2052. +conftest.c: In function 'main':
  2053. +conftest.c:75:12: error: size of array 'test_array' is negative
  2054. +configure:4932: $? = 1
  2055. +configure: failed program was:
  2056. +| /* confdefs.h */
  2057. +| #define PACKAGE_NAME "motion"
  2058. +| #define PACKAGE_TARNAME "motion"
  2059. +| #define PACKAGE_VERSION "trunkREV528"
  2060. +| #define PACKAGE_STRING "motion trunkREV528"
  2061. +| #define PACKAGE_BUGREPORT ""
  2062. +| #define PACKAGE_URL ""
  2063. +| #define HAVE_SDL 1
  2064. +| #define HAVE_SQLITE3 1
  2065. +| #define STDC_HEADERS 1
  2066. +| #define HAVE_SYS_TYPES_H 1
  2067. +| #define HAVE_SYS_STAT_H 1
  2068. +| #define HAVE_STDLIB_H 1
  2069. +| #define HAVE_STRING_H 1
  2070. +| #define HAVE_MEMORY_H 1
  2071. +| #define HAVE_STRINGS_H 1
  2072. +| #define HAVE_INTTYPES_H 1
  2073. +| #define HAVE_STDINT_H 1
  2074. +| #define HAVE_UNISTD_H 1
  2075. +| #define HAVE_STDIO_H 1
  2076. +| #define HAVE_UNISTD_H 1
  2077. +| #define HAVE_STDINT_H 1
  2078. +| #define HAVE_FCNTL_H 1
  2079. +| #define HAVE_TIME_H 1
  2080. +| #define HAVE_SIGNAL_H 1
  2081. +| #define HAVE_SYS_IOCTL_H 1
  2082. +| #define HAVE_SYS_MMAN_H 1
  2083. +| #define HAVE_LINUX_VIDEODEV2_H 1
  2084. +| #define HAVE_SYS_PARAM_H 1
  2085. +| #define HAVE_SYS_TYPES_H 1
  2086. +| #define HAVE_GET_CURRENT_DIR_NAME 1
  2087. +| #define HAVE_LINUX_VIDEODEV2_H 1
  2088. +| #define SIZEOF_SHORT 2
  2089. +| #define SIZEOF_INT 4
  2090. +| #define SIZEOF_LONG_INT 4
  2091. +| #define SIZEOF_LONG_LONG 8
  2092. +| #define SIZEOF_INT_P 4
  2093. +| /* end confdefs.h. */
  2094. +| #include <stdio.h>
  2095. +| #ifdef HAVE_SYS_TYPES_H
  2096. +| # include <sys/types.h>
  2097. +| #endif
  2098. +| #ifdef HAVE_SYS_STAT_H
  2099. +| # include <sys/stat.h>
  2100. +| #endif
  2101. +| #ifdef STDC_HEADERS
  2102. +| # include <stdlib.h>
  2103. +| # include <stddef.h>
  2104. +| #else
  2105. +| # ifdef HAVE_STDLIB_H
  2106. +| # include <stdlib.h>
  2107. +| # endif
  2108. +| #endif
  2109. +| #ifdef HAVE_STRING_H
  2110. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2111. +| # include <memory.h>
  2112. +| # endif
  2113. +| # include <string.h>
  2114. +| #endif
  2115. +| #ifdef HAVE_STRINGS_H
  2116. +| # include <strings.h>
  2117. +| #endif
  2118. +| #ifdef HAVE_INTTYPES_H
  2119. +| # include <inttypes.h>
  2120. +| #endif
  2121. +| #ifdef HAVE_STDINT_H
  2122. +| # include <stdint.h>
  2123. +| #endif
  2124. +| #ifdef HAVE_UNISTD_H
  2125. +| # include <unistd.h>
  2126. +| #endif
  2127. +| int
  2128. +| main ()
  2129. +| {
  2130. +| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 3)];
  2131. +| test_array [0] = 0
  2132. +|
  2133. +| ;
  2134. +| return 0;
  2135. +| }
  2136. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  2137. configure:4932: $? = 0
  2138. -configure:4946: result: 8
  2139. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  2140. +configure:4932: $? = 0
  2141. +configure:4932: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  2142. +configure:4932: $? = 0
  2143. +configure:4946: result: 4
  2144. configure:4991: checking for an ANSI C-conforming const
  2145. -configure:5056: gcc -c -g -O2 conftest.c >&5
  2146. +configure:5056: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -c -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG conftest.c >&5
  2147. configure:5056: $? = 0
  2148. configure:5063: result: yes
  2149. configure:5293: checking for bswap instruction
  2150. -configure:5310: gcc -o conftest -g -O2 conftest.c >&5
  2151. +configure:5310: /Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -o conftest -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -DNDEBUG -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -L/sw/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib conftest.c >&5
  2152. configure:5310: $? = 0
  2153. configure:5313: result: yes
  2154. configure:5461: creating ./config.status
  2155. @@ -481,19 +2072,21 @@ generated by GNU Autoconf 2.67. Invocat
  2156. CONFIG_COMMANDS =
  2157. $ ./config.status
  2158. -on chrom
  2159. +on neon.localdomain
  2160. -config.status:841: creating thread1.conf
  2161. -config.status:841: creating thread2.conf
  2162. -config.status:841: creating thread3.conf
  2163. -config.status:841: creating thread4.conf
  2164. -config.status:841: creating motion-dist.conf
  2165. -config.status:841: creating motion.init-FreeBSD.sh
  2166. -config.status:841: creating motion.init-Debian
  2167. -config.status:841: creating motion.init-Fedora
  2168. -config.status:841: creating motion.spec
  2169. -config.status:841: creating Makefile
  2170. -config.status:841: creating config.h
  2171. +config.status:844: creating thread1.conf
  2172. +config.status:844: creating thread2.conf
  2173. +config.status:844: creating thread3.conf
  2174. +config.status:844: creating thread4.conf
  2175. +config.status:844: creating motion-dist.conf
  2176. +config.status:844: creating motion.init-FreeBSD.sh
  2177. +config.status:844: creating motion.init-Debian
  2178. +config.status:844: creating motion.init-Fedora
  2179. +config.status:844: creating motion.spec
  2180. +config.status:844: creating Makefile
  2181. +config.status:844: creating config.h
  2182. +config.status:1013: config.h is unchanged
  2183. +configure:6632: WARNING: unrecognized options: --enable-shared, --enable-static, --disable-dependency-tracking, --disable-libtool-lock, --disable-nls, --without-sqlite
  2184. ## ---------------- ##
  2185. ## Cache variables. ##
  2186. @@ -501,29 +2094,31 @@ config.status:841: creating config.h
  2187. ac_cv_c_compiler_gnu=yes
  2188. ac_cv_c_const=yes
  2189. -ac_cv_env_CC_set=
  2190. -ac_cv_env_CC_value=
  2191. -ac_cv_env_CFLAGS_set=
  2192. -ac_cv_env_CFLAGS_value=
  2193. -ac_cv_env_CPPFLAGS_set=
  2194. -ac_cv_env_CPPFLAGS_value=
  2195. +ac_cv_env_CC_set=set
  2196. +ac_cv_env_CC_value=/Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc
  2197. +ac_cv_env_CFLAGS_set=set
  2198. +ac_cv_env_CFLAGS_value='-fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe'
  2199. +ac_cv_env_CPPFLAGS_set=set
  2200. +ac_cv_env_CPPFLAGS_value=-DNDEBUG
  2201. ac_cv_env_CPP_set=
  2202. ac_cv_env_CPP_value=
  2203. -ac_cv_env_LDFLAGS_set=
  2204. -ac_cv_env_LDFLAGS_value=
  2205. +ac_cv_env_LDFLAGS_set=set
  2206. +ac_cv_env_LDFLAGS_value='-L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib'
  2207. ac_cv_env_LIBS_set=
  2208. ac_cv_env_LIBS_value=
  2209. -ac_cv_env_build_alias_set=
  2210. -ac_cv_env_build_alias_value=
  2211. -ac_cv_env_host_alias_set=
  2212. -ac_cv_env_host_alias_value=
  2213. -ac_cv_env_target_alias_set=
  2214. -ac_cv_env_target_alias_value=
  2215. +ac_cv_env_build_alias_set=set
  2216. +ac_cv_env_build_alias_value=i686-apple-darwin10
  2217. +ac_cv_env_host_alias_set=set
  2218. +ac_cv_env_host_alias_value=mipsel-openadk-linux
  2219. +ac_cv_env_target_alias_set=set
  2220. +ac_cv_env_target_alias_value=mipsel-openadk-linux
  2221. ac_cv_func_get_current_dir_name=yes
  2222. +ac_cv_func_malloc_0_nonnull=yes
  2223. +ac_cv_func_realloc_0_nonnull=yes
  2224. ac_cv_header_fcntl_h=yes
  2225. ac_cv_header_inttypes_h=yes
  2226. ac_cv_header_linux_videodev2_h=yes
  2227. -ac_cv_header_linux_videodev_h=yes
  2228. +ac_cv_header_linux_videodev_h=no
  2229. ac_cv_header_memory_h=yes
  2230. ac_cv_header_signal_h=yes
  2231. ac_cv_header_stdc=yes
  2232. @@ -542,40 +2137,40 @@ ac_cv_header_unistd_h=yes
  2233. ac_cv_lib_jpeg_jpeg_set_defaults=yes
  2234. ac_cv_lib_sqlite3_sqlite3_open=yes
  2235. ac_cv_objext=o
  2236. -ac_cv_path_EGREP='/bin/grep -E'
  2237. -ac_cv_path_GREP=/bin/grep
  2238. -ac_cv_prog_CPP='gcc -E'
  2239. -ac_cv_prog_ac_ct_CC=gcc
  2240. +ac_cv_path_EGREP='/usr/bin/grep -E'
  2241. +ac_cv_path_GREP=/usr/bin/grep
  2242. +ac_cv_prog_CC=/Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc
  2243. +ac_cv_prog_CPP='/Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E'
  2244. ac_cv_prog_cc_c89=
  2245. ac_cv_prog_cc_g=yes
  2246. ac_cv_sizeof_int=4
  2247. -ac_cv_sizeof_int_p=8
  2248. -ac_cv_sizeof_long_int=8
  2249. +ac_cv_sizeof_int_p=4
  2250. +ac_cv_sizeof_long_int=4
  2251. ac_cv_sizeof_long_long=8
  2252. ac_cv_sizeof_short=2
  2253. -ac_cv_sizeof_void_p=8
  2254. -ac_cv_type_struct_v4l2_buffer=yes
  2255. +ac_cv_sizeof_void_p=4
  2256. +ac_cv_type_struct_v4l2_buffer=no
  2257. ## ----------------- ##
  2258. ## Output variables. ##
  2259. ## ----------------- ##
  2260. -BIN_PATH='/usr/local/bin'
  2261. -CC='gcc'
  2262. -CFLAGS=' -g -O2 -D_REENTRANT -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DHAVE_FFMPEG -I/usr/include -DFFMPEG_NEW_INCLUDES -DHAVE_FFMPEG_NEW -DMOTION_V4L2 -DTYPE_32BIT="int" -DHAVE_BSWAP '
  2263. -CPP='gcc -E'
  2264. -CPPFLAGS=''
  2265. +BIN_PATH='/usr/bin'
  2266. +CC='/Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc'
  2267. +CFLAGS='-fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/sw/include -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -D_REENTRANT -I/Volumes/adk/openadk/target_mipsel_uclibc/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -DMOTION_V4L2 -DMOTION_V4L2_OLD -DTYPE_32BIT="int" -DHAVE_BSWAP '
  2268. +CPP='/Volumes/adk/openadk/host_mipsel_uclibc/bin/mipsel-openadk-linux-uclibc-gcc -E'
  2269. +CPPFLAGS='-DNDEBUG'
  2270. DEFS='-DHAVE_CONFIG_H'
  2271. ECHO_C=''
  2272. ECHO_N='-n'
  2273. ECHO_T=''
  2274. -EGREP='/bin/grep -E'
  2275. +EGREP='/usr/bin/grep -E'
  2276. EXEEXT=''
  2277. -FFMPEG_OBJ='ffmpeg.o'
  2278. -GREP='/bin/grep'
  2279. -LDFLAGS=' -L/usr/lib64'
  2280. +FFMPEG_OBJ=''
  2281. +GREP='/usr/bin/grep'
  2282. +LDFLAGS='-L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -L/sw/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/lib -L/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/Volumes/adk/openadk/target_mipsel_uclibc/usr/lib'
  2283. LIBOBJS=''
  2284. -LIBS='-lm -lpthread -L/usr/lib -lSDL -ljpeg -L/usr/lib64 -lavformat -lavcodec -lavutil -lm -lz -lsqlite3'
  2285. +LIBS='-lm -L/sw/lib -lpthread -lSDL -lpthread -ljpeg -lsqlite3'
  2286. LTLIBOBJS=''
  2287. OBJEXT='o'
  2288. PACKAGE_BUGREPORT=''
  2289. @@ -586,34 +2181,34 @@ PACKAGE_URL=''
  2290. PACKAGE_VERSION='trunkREV528'
  2291. PATH_SEPARATOR=':'
  2292. SDL_OBJ='sdl.o'
  2293. -SHELL='/bin/sh'
  2294. -VIDEO='video.o video2.o video_common.o'
  2295. -ac_ct_CC='gcc'
  2296. -bindir='${exec_prefix}/bin'
  2297. -build_alias=''
  2298. -datadir='${datarootdir}'
  2299. +SHELL='/bin/bash'
  2300. +VIDEO='video_freebsd.o'
  2301. +ac_ct_CC=''
  2302. +bindir='/usr/bin'
  2303. +build_alias='i686-apple-darwin10'
  2304. +datadir='/usr/share'
  2305. datarootdir='${prefix}/share'
  2306. docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
  2307. dvidir='${docdir}'
  2308. exec_prefix='${prefix}'
  2309. -host_alias=''
  2310. +host_alias='mipsel-openadk-linux'
  2311. htmldir='${docdir}'
  2312. includedir='${prefix}/include'
  2313. infodir='${datarootdir}/info'
  2314. libdir='${exec_prefix}/lib'
  2315. -libexecdir='${exec_prefix}/libexec'
  2316. +libexecdir='/usr/libexec'
  2317. localedir='${datarootdir}/locale'
  2318. -localstatedir='${prefix}/var'
  2319. -mandir='${datarootdir}/man'
  2320. +localstatedir='/var'
  2321. +mandir='/usr/share/man'
  2322. oldincludedir='/usr/include'
  2323. pdfdir='${docdir}'
  2324. -prefix='/usr/local'
  2325. +prefix='/usr'
  2326. program_transform_name='s,x,x,'
  2327. psdir='${docdir}'
  2328. sbindir='${exec_prefix}/sbin'
  2329. sharedstatedir='${prefix}/com'
  2330. -sysconfdir='${prefix}/etc'
  2331. -target_alias=''
  2332. +sysconfdir='/etc'
  2333. +target_alias='mipsel-openadk-linux'
  2334. ## ----------- ##
  2335. ## confdefs.h. ##
  2336. @@ -646,16 +2241,16 @@ target_alias=''
  2337. #define HAVE_SIGNAL_H 1
  2338. #define HAVE_SYS_IOCTL_H 1
  2339. #define HAVE_SYS_MMAN_H 1
  2340. -#define HAVE_LINUX_VIDEODEV_H 1
  2341. #define HAVE_LINUX_VIDEODEV2_H 1
  2342. #define HAVE_SYS_PARAM_H 1
  2343. #define HAVE_SYS_TYPES_H 1
  2344. #define HAVE_GET_CURRENT_DIR_NAME 1
  2345. +#define HAVE_LINUX_VIDEODEV2_H 1
  2346. #define SIZEOF_SHORT 2
  2347. #define SIZEOF_INT 4
  2348. -#define SIZEOF_LONG_INT 8
  2349. +#define SIZEOF_LONG_INT 4
  2350. #define SIZEOF_LONG_LONG 8
  2351. -#define SIZEOF_INT_P 8
  2352. -#define SIZEOF_VOID_P 8
  2353. +#define SIZEOF_INT_P 4
  2354. +#define SIZEOF_VOID_P 4
  2355. configure: exit 0