加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
configure.ac 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
# Initial Version Copyright (C) 2010 eZuce, Inc., All Rights Reserved.
# Licensed to the User under the LGPL license.
#
#
# Copyright (C) Homer Project 2012-2015 (http://www.sipcapture.org).
# Licensed to the User under the GPL license.
#
#
AC_PREREQ(2.61)
AC_INIT(homer,5.0.5,support@sipcapture.org,,http://www.sipcapture.org)
# Pass standard and project common params to ./configure switches on all sub-projects.
# Doesn't have to handle ./configure vars because those can be passed handled
OPTIONS=
for a in $@; do
case $a in
--prefix*)OPTIONS+=" $a" ;;
--disable-dep-check*)OPTIONS+=" $a" ;;
--enable-debug*)OPTIONS+=" $a" ;;
PACKAGE_REVISION*)OPTIONS+=" $a" ;;
esac
done
AC_SUBST(OPTIONS)
m4_include([config/projectlib2.m4])
m4_include([mak/rpm.m4])
m4_include([mak/deb.m4])
m4_sinclude([custom/custom.m4])
m4_include([mak/iso.m4])
m4_include([mak/deps.m4])
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([mak/05-build.mk:mak/build.mk.in])
AC_CONFIG_FILES([mak/40-modules.mk:mak/modules.mk.in])
AC_CONFIG_FILES([mak/20-list-dependencies.mk:mak/list-dependencies.mk.in])
AC_CONFIG_FILES([mak/30-setup.mk:mak/setup.mk.in])
AC_OUTPUT
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化