⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.in

📁 open source for car navigation in linux
💻 IN
字号:
dnl Configure template for the LinuxCar package.dnl Process this file with autoconf to produce a configure script.#if you want to force configure to use the default C compiler cc## then uncomment the following line.#CC=ccAC_INIT(recGPS/recGPS.c)AM_INIT_AUTOMAKE(LinuxCar, 0.0.1)dnl Checks for programs.AC_PROG_CCAC_PROG_RANLIBdnl Checks for libraries.AC_CHECK_LIB(jeeps, GPS_Init)AC_CHECK_LIB(pthread, pthread_create)dnl Checks for header files.AC_HEADER_STDCAC_CHECK_HEADERS(syslog.h unistd.h)dnl Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTdnl Checks for library functions.AC_CHECK_FUNCS(strerror)CFLAGS="-O"dnl Test if --enable-debug givenAC_ARG_ENABLE(debug,[  --enable-debug          debug (-g option on compiler)])if test "${enable_debug}" = "yes" ; then  CFLAGS="-g"fidnl Test if --enable-debug givenAC_ARG_ENABLE(warnings,[  --enable-warnings          warnings (-Wall option on compiler)])if test "${enable_warnings}" = "yes" ; then  CFLAGS="$CFLAGS -Wall"fidnl Set extra needed compiler flagsAC_CANONICAL_HOSTif test "$CC" = "cc"; then  case "$host" in    alpha*-dec-osf*) CFLAGS="$CFLAGS -ieee";;  esacfiAC_OUTPUT(liblc_common/Makefile recGPS/Makefile GPSdisp/Makefile Makefile)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -