configure.in
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:11k
源码类别:

Windows CE

开发平台:

C/C++

  1. #  FLAC - Free Lossless Audio Codec
  2. #  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
  3. #
  4. #  This file is part the FLAC project.  FLAC is comprised of several
  5. #  components distributed under difference licenses.  The codec libraries
  6. #  are distributed under Xiph.Org's BSD-like license (see the file
  7. #  COPYING.Xiph in this distribution).  All other programs, libraries, and
  8. #  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
  9. #  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
  10. #  FLAC distribution contains at the top the terms under which it may be
  11. #  distributed.
  12. #
  13. #  Since this particular file is relevant to all components of FLAC,
  14. #  it may be distributed under the Xiph.Org license, which is the least
  15. #  restrictive of those mentioned above.  See the file COPYING.Xiph in this
  16. #  distribution.
  17. # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
  18. # instead of FLAC__ since autoconf triggers off 'AC_' in strings
  19. AC_INIT(src/flac/main.c)
  20. AM_INIT_AUTOMAKE(flac, 1.1.2)
  21. # Don't automagically regenerate autoconf/automake generated files unless
  22. # explicitly requested.  Eases autobuilding -mdz
  23. AM_MAINTAINER_MODE
  24. # We need two libtools, one that builds both shared and static, and
  25. # one that builds only static.  This is because the resulting libtool
  26. # does not allow us to choose which to build at runtime.
  27. AM_PROG_LIBTOOL
  28. sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
  29. chmod +x libtool-disable-static
  30. AM_PROG_AS
  31. AC_PROG_CXX
  32. AC_PROG_MAKE_SET
  33. AC_CHECK_TYPES(socklen_t, [], [])
  34. dnl check for getopt in standard library
  35. dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
  36. AC_CHECK_FUNCS(getopt_long, [], [])
  37. case "$host_cpu" in
  38. i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
  39. powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
  40. sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
  41. esac
  42. AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
  43. AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
  44. AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
  45. case "$host" in
  46. i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
  47. *) OBJ_FORMAT=elf ;;
  48. esac
  49. AC_SUBST(OBJ_FORMAT)
  50. case "$host" in
  51. *-pc-linux-gnu) sys_linux=true ; AC_DEFINE(FLAC__SYS_LINUX) ;;
  52. *-*-darwin*) sys_darwin=true ; AC_DEFINE(FLAC__SYS_DARWIN) ;;
  53. esac
  54. AM_CONDITIONAL(FLaC__SYS_DARWIN, test x$sys_darwin = xtrue)
  55. AM_CONDITIONAL(FLaC__SYS_LINUX, test x$sys_linux = xtrue)
  56. if test x$cpu_ia32 = xtrue ; then
  57. AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
  58. fi
  59. AC_ARG_ENABLE(asm-optimizations, [  --disable-asm-optimizations    Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
  60. AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
  61. if test x$asm_opt = xno ; then
  62. AC_DEFINE(FLAC__NO_ASM)
  63. fi
  64. AC_ARG_ENABLE(debug,
  65. [  --enable-debug                 Turn on debugging],
  66. [case "${enableval}" in
  67. yes) debug=true ;;
  68. no)  debug=false ;;
  69. *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
  70. esac],[debug=false])
  71. AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
  72. AC_ARG_ENABLE(sse,
  73. [  --enable-sse                   Enable SSE support by asserting that the OS supports SSE instructions],
  74. [case "${enableval}" in
  75. yes) sse_os=true ;;
  76. no)  sse_os=false ;;
  77. *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
  78. esac],[sse_os=false])
  79. AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
  80. if test x$sse_os = xtrue ; then
  81. AC_DEFINE(FLAC__SSE_OS)
  82. fi
  83. AC_ARG_ENABLE(3dnow,
  84. [  --disable-3dnow                Disable 3DNOW! optimizations],
  85. [case "${enableval}" in
  86. yes) use_3dnow=true ;;
  87. no)  use_3dnow=false ;;
  88. *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
  89. esac],[use_3dnow=true])
  90. AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
  91. if test x$use_3dnow = xtrue ; then
  92. AC_DEFINE(FLAC__USE_3DNOW)
  93. fi
  94. AC_ARG_ENABLE(altivec,
  95. [  --disable-altivec              Disable Altivec optimizations],
  96. [case "${enableval}" in
  97. yes) use_altivec=true ;;
  98. no)  use_altivec=false ;;
  99. *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
  100. esac],[use_altivec=true])
  101. AM_CONDITIONAL(FLaC__USE_ALTIVEC, test x$use_altivec = xtrue)
  102. if test x$use_altivec = xtrue ; then
  103. AC_DEFINE(FLAC__USE_ALTIVEC)
  104. fi
  105. AC_ARG_ENABLE(local-xmms-plugin,
  106. [  --enable-local-xmms-plugin     Install XMMS plugin to ~/.xmms/Plugins instead of system location],
  107. [case "${enableval}" in
  108. yes) install_xmms_plugin_locally=true ;;
  109. no)  install_xmms_plugin_locally=false ;;
  110. *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
  111. esac],[install_xmms_plugin_locally=false])
  112. AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test x$install_xmms_plugin_locally = xtrue)
  113. AC_ARG_ENABLE(exhaustive-tests,
  114. [  --enable-exhaustive-tests      Enable exhaustive testing],
  115. [case "${enableval}" in
  116. yes) exhaustive_tests=true ;;
  117. no)  exhaustive_tests=false ;;
  118. *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
  119. esac],[exhaustive_tests=false])
  120. AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
  121. if test x$exhaustive_tests = xtrue ; then
  122. AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
  123. fi
  124. AC_ARG_ENABLE(valgrind-testing,
  125. [  --enable-valgrind-testing      Run all tests inside Valgrind],
  126. [case "${enableval}" in
  127. yes) valgrind_testing=true ;;
  128. no)  valgrind_testing=false ;;
  129. *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
  130. esac],[valgrind_testing=false])
  131. AM_CONDITIONAL(FLaC__VALGRIND_TESTING, test x$valgrind_testing = xtrue)
  132. if test x$valgrind_testing = xtrue ; then
  133. AC_DEFINE(FLAC__VALGRIND_TESTING)
  134. fi
  135. dnl check for ogg library
  136. XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
  137. AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
  138. if test x$have_ogg = xyes ; then
  139. AC_DEFINE(FLAC__HAS_OGG)
  140. fi
  141. AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
  142. AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
  143. dnl check for i18n(internationalization); these are from libiconv/gettext
  144. AM_ICONV
  145. AM_LANGINFO_CODESET
  146. AC_CHECK_PROGS(DOXYGEN, doxygen)
  147. AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
  148. if test -n "$DOXYGEN" ; then
  149. AC_DEFINE(FLAC__HAS_DOXYGEN)
  150. fi
  151. AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
  152. AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
  153. if test -n "$DOCBOOK_TO_MAN" ; then
  154. AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
  155. fi
  156. # only matters for x86
  157. AC_CHECK_PROGS(NASM, nasm)
  158. AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
  159. if test -n "$NASM" ; then
  160. AC_DEFINE(FLAC__HAS_NASM)
  161. fi
  162. # only matters for PowerPC
  163. AC_CHECK_PROGS(AS, as)
  164. AC_CHECK_PROGS(GAS, gas)
  165. AM_CONDITIONAL(FLaC__HAS_AS, test -n "$AS")
  166. AM_CONDITIONAL(FLaC__HAS_GAS, test -n "$GAS")
  167. if test -n "$AS" ; then
  168. AC_DEFINE(FLAC__HAS_AS)
  169. fi
  170. if test -n "$GAS" ; then
  171. # funniest. macro. ever.
  172. AC_DEFINE(FLAC__HAS_GAS)
  173. fi
  174. OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
  175. if test x$debug = xtrue; then
  176. OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG"
  177. else
  178. OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
  179. if test x$GCC = xyes; then
  180. OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
  181. fi
  182. fi
  183. CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS"
  184. CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS"
  185. #@@@@@@
  186. AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
  187. AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
  188. AM_CONFIG_HEADER(config.h)
  189. AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA,  [define to align allocated memory on 32-byte boundaries])
  190. AH_TEMPLATE(FLAC__CPU_IA32,  [define if building for ia32/i386])
  191. AH_TEMPLATE(FLAC__CPU_PPC,  [define if building for PowerPC])
  192. AH_TEMPLATE(FLAC__CPU_SPARC,  [define if building for SPARC])
  193. AH_TEMPLATE(FLAC__SYS_DARWIN,  [define if building for Darwin / MacOS X])
  194. AH_TEMPLATE(FLAC__SYS_LINUX,  [define if building for Linux])
  195. AH_TEMPLATE(FLAC__EXHAUSTIVE_TESTS,  [define to run even more tests])
  196. AH_TEMPLATE(FLAC__VALGRIND_TESTING,  [define to enable use of Valgrind in testers])
  197. AH_TEMPLATE(FLAC__HAS_DOXYGEN,  [define if you have Doxygen])
  198. AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN,  [define if you have docbook-to-man or docbook2man])
  199. AH_TEMPLATE(FLAC__HAS_NASM,  [define if you are compiling for x86 and have the NASM assembler])
  200. AH_TEMPLATE(FLAC__HAS_AS,  [define if you are compiling for PowerPC and have the 'as' assembler])
  201. AH_TEMPLATE(FLAC__HAS_GAS,  [define if you are compiling for PowerPC and have the 'gas' assembler])
  202. AH_TEMPLATE(FLAC__HAS_OGG,  [define if you have the ogg library])
  203. AH_TEMPLATE(FLAC__NO_ASM,  [define to disable use of assembly code])
  204. AH_TEMPLATE(FLAC__SSE_OS,  [define if your operating system supports SSE instructions])
  205. AH_TEMPLATE(FLAC__USE_3DNOW,  [define to enable use of 3Dnow! instructions])
  206. AH_TEMPLATE(FLAC__USE_ALTIVEC,  [define to enable use of Altivec instructions])
  207. AC_OUTPUT( 
  208. Makefile 
  209. src/Makefile 
  210. src/libFLAC/Makefile 
  211. src/libFLAC/ia32/Makefile 
  212. src/libFLAC/ppc/Makefile 
  213. src/libFLAC/ppc/as/Makefile 
  214. src/libFLAC/ppc/gas/Makefile 
  215. src/libFLAC/include/Makefile 
  216. src/libFLAC/include/private/Makefile 
  217. src/libFLAC/include/protected/Makefile 
  218. src/libFLAC++/Makefile 
  219. src/libOggFLAC/Makefile 
  220. src/libOggFLAC/include/Makefile 
  221. src/libOggFLAC/include/private/Makefile 
  222. src/libOggFLAC/include/protected/Makefile 
  223. src/libOggFLAC++/Makefile 
  224. src/flac/Makefile 
  225. src/metaflac/Makefile 
  226. src/monkeys_audio_utilities/Makefile 
  227. src/monkeys_audio_utilities/flac_mac/Makefile 
  228. src/monkeys_audio_utilities/flac_ren/Makefile 
  229. src/plugin_common/Makefile 
  230. src/plugin_winamp2/Makefile 
  231. src/plugin_winamp2/include/Makefile 
  232. src/plugin_winamp2/include/winamp2/Makefile 
  233. src/plugin_xmms/Makefile 
  234. src/share/Makefile 
  235. src/share/getopt/Makefile 
  236. src/share/grabbag/Makefile 
  237. src/share/replaygain_analysis/Makefile 
  238. src/share/replaygain_synthesis/Makefile 
  239. src/share/replaygain_synthesis/include/Makefile 
  240. src/share/replaygain_synthesis/include/private/Makefile 
  241. src/share/utf8/Makefile 
  242. src/test_grabbag/Makefile 
  243. src/test_grabbag/cuesheet/Makefile 
  244. src/test_libFLAC/Makefile 
  245. src/test_libFLAC++/Makefile 
  246. src/test_libOggFLAC/Makefile 
  247. src/test_libOggFLAC++/Makefile 
  248. src/test_seeking/Makefile 
  249. src/test_streams/Makefile 
  250. include/Makefile 
  251. include/FLAC/Makefile 
  252. include/FLAC++/Makefile 
  253. include/OggFLAC/Makefile 
  254. include/OggFLAC++/Makefile 
  255. include/share/Makefile 
  256. include/share/grabbag/Makefile 
  257. doc/Makefile 
  258. doc/html/Makefile 
  259. doc/html/images/Makefile 
  260. doc/html/ru/Makefile 
  261. man/Makefile 
  262. test/Makefile 
  263. test/cuesheets/Makefile 
  264. build/Makefile 
  265. obj/Makefile 
  266. obj/debug/Makefile 
  267. obj/debug/bin/Makefile 
  268. obj/debug/lib/Makefile 
  269. obj/release/Makefile 
  270. obj/release/bin/Makefile 
  271. obj/release/lib/Makefile 
  272. flac.pbproj/Makefile 
  273. )