configure.in
来自「蓝牙的各种编程接口和各种按理介绍,还有一些例子和说明」· IN 代码 · 共 51 行
IN
51 行
dnldnl $Id: configure.in,v 1.33 2003/08/21 14:51:10 jscrane Exp $dnldnl Process this file with autoconf to produce a configure script.dnlAC_INIT()AM_MAINTAINER_MODEAM_INIT_AUTOMAKE(bluez-sdp, 1.4)AC_PREFIX_DEFAULT(/usr)CFLAGS="-Wall -g -O2"AC_PROG_CCAC_PROG_INSTALLAC_CHECK_TOOL(LD, ld, ld)AC_CHECK_TOOL(AR, ar, ar)AM_PROG_LIBTOOLAC_ARG_WITH(bluez-libs, --with-bluez-libs=DIR BlueZ libraries, BLUEZ_LIBDIR="$withval", BLUEZ_LIBDIR='../libs/src /usr/lib')AC_ARG_WITH(bluez-includes, --with-bluez-includes=DIR BlueZ header files, BLUEZ_INCDIR="$withval", BLUEZ_INCDIR='../libs/include /usr/include')AC_SEARCH_HEADERS(bluetooth/bluetooth.h, $BLUEZ_INCDIR,, AC_MSG_ERROR(Bluetooth headers not found. Please install bluez-libs package.))AC_SEARCH_LIB(bluetooth, hci_open_dev, $BLUEZ_LIBDIR,, AC_MSG_ERROR(Bluetooth library not found. Please compile and install bluez-libs package.))AC_ARG_ENABLE(debug, --enable-debug Enable debugging, AC_DEFINE(SDP_DEBUG, 1)) AC_OUTPUT(Makefile include/Makefile libs/Makefile sdpd/Makefile tools/Makefile)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?