1 Star 0 Fork 1

guoyuqing/shairplay

forked from chengleicm01/shairplay 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
configure.ac 1.71 KB
一键复制 编辑 原始数据 按行查看 历史
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([shairplay], [0.9.0], [juhovh@iki.fi])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/shairplay.c])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([foreign])
# Checks for programs.
AC_PROG_CC
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
# Checks for libraries.
LT_LIB_DLLOAD
LT_LIB_M
# Checks for header files.
AC_HEADER_STDC
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CHECK_LIB([socket],[connect])
AC_CHECK_LIB([pthread],[pthread_create])
# Custom check for os, similar to webkit
AC_MSG_CHECKING([for native Win32])
case "$host" in
*-*-mingw*)
os_win32=yes
;;
*)
os_win32=no
;;
esac
AC_MSG_RESULT([$os_win32])
case "$host" in
*-*-linux*)
os_linux=yes
;;
*-*-freebsd*)
os_freebsd=yes
;;
*-*-darwin*)
os_darwin=yes
;;
esac
case "$host_os" in
gnu* | linux* | k*bsd*-gnu)
os_gnu=yes
;;
*)
os_gnu=no
;;
esac
# OS conditionals
AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
AM_CONDITIONAL([OS_GNU],[test "$os_gnu" = "yes"])
AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
# Custom check for libao
PKG_CHECK_MODULES([libao], [ao >= 1.1.0], [have_libao=1], [have_libao=0])
AM_CONDITIONAL([HAVE_LIBAO], [test "$have_libao" -eq 1])
AC_CONFIG_FILES(
[Makefile]
[include/Makefile]
[src/Makefile]
[src/lib/Makefile]
[src/lib/alac/Makefile]
[src/lib/crypto/Makefile]
)
AC_OUTPUT
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/guoguoyuqing/shairplay.git
git@gitee.com:guoguoyuqing/shairplay.git
guoguoyuqing
shairplay
shairplay
master

搜索帮助