加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
configure.in 670 Bytes
一键复制 编辑 原始数据 按行查看 历史
Robin Bird 提交于 2018-11-11 19:37 . Add files via upload
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
#AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AC_INIT(gSTCISP, 0.1)
AM_INIT_AUTOMAKE(gSTCISP, 0.1)
AC_CONFIG_SRCDIR([src/main.h])
#AC_CONFIG_HEADER([config.h])
AM_CONFIG_HEADER([config.h])
# Checks for programs.
#AC_PROG_CC
AM_PROG_CC_C_O
# Checks for libraries.
AM_PATH_GTK_2_0(2.0.0,,AC_MSG_ERROR( GTK+ 2.0.0 is required, but not found.))
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_OUTPUT([
Makefile
src/Makefile
])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化