📄 configure.in
字号:
# -*- Autoconf -*-# Process this file with autoconf to produce a configure script.AC_PREREQ(2.57)AC_INIT(main.cpp)AM_INIT_AUTOMAKE(cameraShow,1.0)# Checks for programs.AC_PROG_CXXAC_PROG_CC# Checks for libraries.# Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS(fcntl.h malloc.h stdint.h stdlib.h string.h sys/ioctl.h unistd.h)# Checks for typedefs, structures, and compiler characteristics.# Checks for library functions.AC_PROG_GCC_TRADITIONALAC_FUNC_MALLOCAC_FUNC_MMAPAC_TYPE_SIGNALAC_CHECK_FUNCS(memset munmap)AC_OUTPUT(Makefile)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -