📄 configure.in
字号:
dnl Process this file with autoconf to produce a configure script.AC_INIT(src/mpc_decoder.c)AC_CONFIG_AUX_DIR(config)AM_INIT_AUTOMAKE(libmusepack,1.1.1)AM_CONFIG_HEADER(include/config.h)AM_PROG_LIBTOOLCFLAGS="$CFLAGS -O3 -fomit-frame-pointer -fPIC"AC_C_BIGENDIAN(,CFLAGS="$CFLAGS -DMPC_LITTLE_ENDIAN",)AC_HEADER_STDCAC_CHECK_HEADERS([inttypes.h string.h])AC_HEADER_STDBOOLAC_C_CONSTAC_C_INLINEAC_TYPE_OFF_TAC_TYPE_SIZE_TAC_CHECK_TYPES([ptrdiff_t])AC_FUNC_MEMCMPAC_CHECK_FUNCS([memmove memset sqrt])AC_MSG_CHECKING(for int16_t)AC_CACHE_VAL(has_int16_t,[AC_TRY_RUN([int16_t foo;int main() {return 0;}],has_int16_t=yes,has_int16_t=no,has_int16_t=no)])AC_MSG_RESULT($has_int16_t)AC_MSG_CHECKING(for int32_t)AC_CACHE_VAL(has_int32_t,[AC_TRY_RUN([int32_t foo;int main() {return 0;}],has_int32_t=yes,has_int32_t=no,has_int32_t=no)])AC_MSG_RESULT($has_int32_t)AC_MSG_CHECKING(for uint32_t)AC_CACHE_VAL(has_uint32_t,[AC_TRY_RUN([uint32_t foo;int main() {return 0;}],has_uint32_t=yes,has_uint32_t=no,has_uint32_t=no)])AC_MSG_RESULT($has_uint32_t)AC_MSG_CHECKING(for uint16_t)AC_CACHE_VAL(has_uint16_t,[AC_TRY_RUN([uint16_t foo;int main() {return 0;}],has_uint16_t=yes,has_uint16_t=no,has_uint16_t=no)])AC_MSG_RESULT($has_uint16_t)AC_MSG_CHECKING(for u_int32_t)AC_CACHE_VAL(has_u_int32_t,[AC_TRY_RUN([u_int32_t foo;int main() {return 0;}],has_u_int32_t=yes,has_u_int32_t=no,has_u_int32_t=no)])AC_MSG_RESULT($has_u_int32_t)AC_MSG_CHECKING(for u_int16_t)AC_CACHE_VAL(has_u_int16_t,[AC_TRY_RUN([u_int16_t foo;int main() {return 0;}],has_u_int16_t=yes,has_u_int16_t=no,has_u_int16_t=no)])AC_MSG_RESULT($has_u_int16_t)AC_MSG_CHECKING(for int64_t)AC_CACHE_VAL(has_int64_t,[AC_TRY_RUN([int64_t foo;int main() {return 0;}],has_int64_t=yes,has_int64_t=no,has_int64_t=no)])AC_MSG_RESULT($has_int64_t)AC_CHECK_SIZEOF(short)AC_CHECK_SIZEOF(int)AC_CHECK_SIZEOF(long)AC_CHECK_SIZEOF(long long)if test x$has_int16_t = "xyes" ; then SIZE16="int16_t"else case 2 in $ac_cv_sizeof_short) SIZE16="short";; $ac_cv_sizeof_int) SIZE16="int";; esacfiif test x$has_int32_t = "xyes" ; then SIZE32="int32_t"else case 4 in $ac_cv_sizeof_short) SIZE32="short";; $ac_cv_sizeof_int) SIZE32="int";; $ac_cv_sizeof_long) SIZE32="long";; esacfiif test x$has_uint32_t = "xyes" ; then USIZE32="uint32_t"else if test x$has_u_int32_t = "xyes" ; then USIZE32="u_int32_t" else case 4 in $ac_cv_sizeof_short) USIZE32="unsigned short";; $ac_cv_sizeof_int) USIZE32="unsigned int";; $ac_cv_sizeof_long) USIZE32="unsigned long";; esac fifiif test x$has_uint16_t = "xyes" ; then USIZE16="uint16_t"else if test x$has_u_int16_t = "xyes" ; then USIZE16="u_int16_t" else case 2 in $ac_cv_sizeof_short) USIZE16="unsigned short";; $ac_cv_sizeof_int) USIZE16="unsigned int";; $ac_cv_sizeof_long) USIZE16="unsigned long";; esac fifiif test x$has_int64_t = "xyes" ; then SIZE64="int64_t"elsecase 8 in $ac_cv_sizeof_int) SIZE64="int";; $ac_cv_sizeof_long) SIZE64="long";; $ac_cv_sizeof_long_long) SIZE64="long long";;esacfiif test -z "$SIZE16"; then AC_MSG_ERROR(No 16 bit type found on this platform!)fiif test -z "$USIZE16"; then AC_MSG_ERROR(No unsigned 16 bit type found on this platform!)fiif test -z "$SIZE32"; then AC_MSG_ERROR(No 32 bit type found on this platform!)fiif test -z "$USIZE32"; then AC_MSG_ERROR(No unsigned 32 bit type found on this platform!)fiif test -z "$SIZE64"; then AC_MSG_WARN(No 64 bit type found on this platform!)fidnl Make substitutionsAC_SUBST(VERSION)AC_SUBST(LIBTOOL_DEPS)AC_SUBST(SIZE16)AC_SUBST(USIZE16)AC_SUBST(SIZE32)AC_SUBST(USIZE32)AC_SUBST(SIZE64)AC_SUBST(OPT)AC_SUBST(LIBS)AC_OUTPUT(Makefile src/Makefile include/Makefile include/musepack/config_types.h)AC_MSG_RESULT([ libmusepack $VERSION configured successfully.])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -