xref: /btstack/port/daemon/configure.ac (revision d0755cd68c7d82f6713367799f0b509019f3d942)
13edc84c5SMatthias Ringwald#                                               -*- Autoconf -*-
23edc84c5SMatthias Ringwald# Process this file with autoconf to produce a configure script.
33edc84c5SMatthias Ringwald
43edc84c5SMatthias RingwaldAC_PREREQ(2.60)
53edc84c5SMatthias RingwaldAC_INIT([BTstack], 0.1)
63edc84c5SMatthias RingwaldAC_CONFIG_AUX_DIR(config)
73edc84c5SMatthias RingwaldAM_INIT_AUTOMAKE
83edc84c5SMatthias Ringwald
93edc84c5SMatthias RingwaldAC_ARG_WITH(hci-transport, [AS_HELP_STRING([--with-hci-transport=transportType], [Specify BT type to use: h4, usb])], HCI_TRANSPORT=$withval, HCI_TRANSPORT="h4")
103edc84c5SMatthias RingwaldAC_ARG_WITH(uart-device, [AS_HELP_STRING([--with-uart-device=uartDevice], [Specify BT UART device to use])], UART_DEVICE=$withval, UART_DEVICE="DEFAULT")
113edc84c5SMatthias RingwaldAC_ARG_WITH(uart-speed, [AS_HELP_STRING([--with-uart-speed=uartSpeed], [Specify BT UART speed to use])], UART_SPEED=$withval, UART_SPEED="115200")
123edc84c5SMatthias RingwaldAC_ARG_ENABLE(launchd, [AS_HELP_STRING([--enable-launchd],[Compiles BTdaemon for use by launchd])], USE_LAUNCHD=$enableval, USE_LAUNCHD="no")
133edc84c5SMatthias RingwaldAC_ARG_WITH(vendor-id, [AS_HELP_STRING([--with-vendor-id=vendorID], [Specify USB BT Dongle vendorID])], USB_VENDOR_ID=$withval, USB_VENDOR_ID="0")
143edc84c5SMatthias RingwaldAC_ARG_WITH(product-id, [AS_HELP_STRING([--with-product-id=productID], [Specify USB BT Dongle productID])], USB_PRODUCT_ID=$withval, USB_PRODUCT_ID="0")
153edc84c5SMatthias Ringwald
163edc84c5SMatthias Ringwald# BUILD/HOST/TARGET
173edc84c5SMatthias RingwaldAC_CANONICAL_HOST
183edc84c5SMatthias Ringwald
193edc84c5SMatthias Ringwald# Checks for programs.
203edc84c5SMatthias RingwaldAC_PROG_CC
213edc84c5SMatthias RingwaldAC_PROG_CPP
223edc84c5SMatthias RingwaldAC_PROG_OBJC
233edc84c5SMatthias RingwaldAC_PROG_INSTALL
243edc84c5SMatthias RingwaldAC_PROG_LN_S
253edc84c5SMatthias RingwaldAC_PROG_MAKE_SET
263edc84c5SMatthias Ringwald
273edc84c5SMatthias Ringwald# iPhone/iPod touch cross-compilation uses theos
283edc84c5SMatthias RingwaldSDK_PATH="$DEVELOPER_PATH/SDKs/iPhoneOS$SDK_VERSION.sdk"
293edc84c5SMatthias Ringwaldif test "x$target" = xiphone; then
303edc84c5SMatthias Ringwald    echo "Cross-compiling for iPhone/iPod touch uses theos"
313edc84c5SMatthias Ringwald    ./config-iphone.sh
323edc84c5SMatthias Ringwald    exit 0
333edc84c5SMatthias Ringwaldfi
343edc84c5SMatthias Ringwald
353edc84c5SMatthias Ringwald# use capitals for transport type
363edc84c5SMatthias Ringwaldif test "x$HCI_TRANSPORT" = xusb; then
373edc84c5SMatthias Ringwald    HCI_TRANSPORT="USB"
383edc84c5SMatthias Ringwaldfi
393edc84c5SMatthias Ringwaldif test "x$HCI_TRANSPORT" = xh4; then
403edc84c5SMatthias Ringwald    HCI_TRANSPORT="H4"
413edc84c5SMatthias Ringwaldfi
423edc84c5SMatthias Ringwald
433edc84c5SMatthias Ringwald# validate USB support
443edc84c5SMatthias Ringwaldif test "x$HCI_TRANSPORT" = xUSB; then
453edc84c5SMatthias Ringwald    # pkg-config needed
463edc84c5SMatthias Ringwald    PKG_PROG_PKG_CONFIG
473edc84c5SMatthias Ringwald    # libusb installed?
483edc84c5SMatthias Ringwald    PKG_CHECK_MODULES([LIBUSB], [libusb-1.0], HAVE_LIBUSB="yes", HAVE_LIBUSB="no")
493edc84c5SMatthias Ringwald    if test "$HAVE_LIBUSB" == "no" ; then
503edc84c5SMatthias Ringwald        AC_MSG_ERROR(USB Transport requested but libusb-1.0 not found using pkg-config. Please set PKG_CONFIG_PATH correctly and/or install libusb-1.0 from your distribution or from http://libusb.sourceforge.net/api-1.0/)
513edc84c5SMatthias Ringwald    fi
523edc84c5SMatthias Ringwald    LIBUSB_LDFLAGS=$LIBUSB_LIBS
533edc84c5SMatthias Ringwaldfi
543edc84c5SMatthias RingwaldAM_CONDITIONAL(HAVE_LIBUSB, [test "x$HAVE_LIBUSB" == "xyes"])
553edc84c5SMatthias Ringwald
563edc84c5SMatthias Ringwaldecho
573edc84c5SMatthias Ringwaldecho "BTstack configured for HCI $HCI_TRANSPORT Transport"
583edc84c5SMatthias Ringwald
59528a4a3bSMatthias Ringwaldbtstack_run_loop_SOURCES="btstack_run_loop_posix.c"
603edc84c5SMatthias Ringwaldcase "$host_os" in
613edc84c5SMatthias Ringwald    darwin*)
62f8d88472SMatthias Ringwald        btstack_run_loop_SOURCES="$btstack_run_loop_SOURCES btstack_run_loop_corefoundation.m"
633edc84c5SMatthias Ringwald        LDFLAGS="$LDFLAGS -framework CoreFoundation -framework Foundation"
643edc84c5SMatthias Ringwald        BTSTACK_LIB_LDFLAGS="-dynamiclib -install_name \$(prefix)/lib/libBTstack.dylib"
653edc84c5SMatthias Ringwald        BTSTACK_LIB_EXTENSION="dylib"
66f8d88472SMatthias Ringwald        REMOTE_DEVICE_DB_SOURCES="btstack_link_key_db_corefoundation.m btstack_device_name_db_corefoundation.m rfcomm_service_db_corefoundation.m"
67f8d88472SMatthias Ringwald        BTSTACK_LINK_KEY_DB_INSTANCE="btstack_link_key_db_corefoundation_instance"
68f8d88472SMatthias Ringwald        BTSTACK_DEVICE_NAME_DB_INSTANCE="btstack_device_name_db_corefoundation_instance"
693edc84c5SMatthias Ringwald        ;;
703edc84c5SMatthias Ringwald    mingw*)
713edc84c5SMatthias Ringwald        echo "Building on mingw32"
723edc84c5SMatthias Ringwald        LDFLAGS="$LDFLAGS -lws2_32"
733edc84c5SMatthias Ringwald        BTSTACK_LIB_LDFLAGS="-shared"
743edc84c5SMatthias Ringwald        BTSTACK_LIB_EXTENSION="dll"
75a98592bcSMatthias Ringwald        REMOTE_DEVICE_DB_SOURCES="btstack_link_key_db_memory.c rfcomm_service_db_memory.c"
76af204097SMatthias Ringwald        BTSTACK_LINK_KEY_DB_INSTANCE="btstack_link_key_db_memory_instance"
77af204097SMatthias Ringwald        # BTSTACK_DEVICE_NAME_DB_INSTANCE="btstack_device_name_db_memory_instance"
783edc84c5SMatthias Ringwald        ;;
793edc84c5SMatthias Ringwald    *)
803edc84c5SMatthias Ringwald        BTSTACK_LIB_LDFLAGS="-shared -Wl,-rpath,\$(prefix)/lib"
813edc84c5SMatthias Ringwald        BTSTACK_LIB_EXTENSION="so"
828c274258SMatthias Ringwald        REMOTE_DEVICE_DB_SOURCES="btstack_link_key_db_memory.c rfcomm_service_db_memory.c"
83af204097SMatthias Ringwald        BTSTACK_LINK_KEY_DB_INSTANCE="btstack_link_key_db_memory_instance"
848c274258SMatthias Ringwald        # BTSTACK_DEVICE_NAME_DB_INSTANCE="btstack_device_name_db_fs_instance"
853edc84c5SMatthias Ringwald    ;;
863edc84c5SMatthias Ringwaldesac
873edc84c5SMatthias Ringwald
883edc84c5SMatthias Ringwald# treat warnings seriously
893edc84c5SMatthias RingwaldCFLAGS="$CFLAGS -Werror -Wall -Wpointer-arith"
903edc84c5SMatthias Ringwald
913edc84c5SMatthias Ringwald# 64-bit compilation requires position independent code (PIC) for libraries
923edc84c5SMatthias RingwaldBTSTACK_LIB_LDFLAGS+=" -fpic"
933edc84c5SMatthias Ringwald
943edc84c5SMatthias Ringwald# summary
953edc84c5SMatthias Ringwald
963edc84c5SMatthias Ringwaldecho "CC:                  $CC"
973edc84c5SMatthias Ringwaldecho "CFLAGS:              $CFLAGS"
983edc84c5SMatthias Ringwaldecho "LDFLAGS:             $LDFLAGS"
993edc84c5SMatthias Ringwaldecho "BTSTACK_LIB_LDFLAGS: $BTSTACK_LIB_LDFLAGS"
1003edc84c5SMatthias Ringwald
1013edc84c5SMatthias Ringwaldif test "x$HCI_TRANSPORT" = xUSB; then
1023edc84c5SMatthias Ringwald    echo "USB_PRODUCT_ID:      $USB_PRODUCT_ID"
1033edc84c5SMatthias Ringwald    echo "USB_VENDOR_ID:       $USB_VENDOR_ID"
1043edc84c5SMatthias Ringwald    echo "LIBUSB_CFLAGS:       $LIBUSB_CFLAGS"
1053edc84c5SMatthias Ringwald    echo "LIBUSB_LDFLAGS:      $LIBUSB_LDFLAGS"
1063edc84c5SMatthias Ringwaldelse
1073edc84c5SMatthias Ringwald    echo "UART_DEVICE:         $UART_DEVICE"
1083edc84c5SMatthias Ringwald    echo "UART_SPEED:          $UART_SPEED"
1093edc84c5SMatthias Ringwaldfi
1103edc84c5SMatthias Ringwald
111af204097SMatthias Ringwaldecho "BTSTACK_LINK_KEY_DB:     $BTSTACK_LINK_KEY_DB_INSTANCE"
112af204097SMatthias Ringwaldecho "BTSTACK_DEVICE_NAME_DB:  $BTSTACK_DEVICE_NAME_DB_INSTANCE"
1133edc84c5SMatthias Ringwaldecho
1143edc84c5SMatthias Ringwaldecho
1153edc84c5SMatthias Ringwald
1167907f069SMatthias Ringwald# create btstack_config.h
1177907f069SMatthias Ringwaldrm -f btstack_config.h
1187907f069SMatthias Ringwaldecho "//"                                       >> btstack_config.h
1197907f069SMatthias Ringwaldecho "// btstack_config.h"                      >> btstack_config.h
1207907f069SMatthias Ringwaldecho "// created by configure for BTstack "     >> btstack_config.h
1217907f069SMatthias Ringwaldecho "//" `date`                                >> btstack_config.h
1227907f069SMatthias Ringwaldecho "//"                                       >> btstack_config.h
1237907f069SMatthias Ringwaldecho                                            >> btstack_config.h
1247907f069SMatthias Ringwaldecho "#ifndef __BTSTACK_CONFIG"                 >> btstack_config.h
1257907f069SMatthias Ringwaldecho "#define __BTSTACK_CONFIG"                 >> btstack_config.h
1267907f069SMatthias Ringwaldecho                                            >> btstack_config.h
1274fd8b166SMatthias Ringwald
1287907f069SMatthias Ringwaldecho "// Port related features"                 >> btstack_config.h
129*d0755cd6SMatthias Ringwaldecho "#define HAVE_POSIX_TIME"                        >> btstack_config.h
1307907f069SMatthias Ringwaldecho "#define HAVE_MALLOC"                      >> btstack_config.h
1317907f069SMatthias Ringwaldecho                                            >> btstack_config.h
1324fd8b166SMatthias Ringwald
1334fd8b166SMatthias Ringwald# todo: HAVE -> ENABLE in features below
1344fd8b166SMatthias Ringwald
1357907f069SMatthias Ringwaldecho "// BTstack features that can be enabled"  >> btstack_config.h
1367907f069SMatthias Ringwaldecho "#define ENABLE_BLE"                       >> btstack_config.h
13780b9a8caSMatthias Ringwaldecho "#define ENABLE_CLASSIC"                   >> btstack_config.h
1387907f069SMatthias Ringwaldecho "#define ENABLE_LOG_ERROR"                 >> btstack_config.h
1397907f069SMatthias Ringwaldecho "#define ENABLE_LOG_INFO "                 >> btstack_config.h
1407907f069SMatthias Ringwaldecho "#define ENABLE_RFCOMM"                    >> btstack_config.h
1417907f069SMatthias Ringwaldecho "#define ENABLE_SDP"                       >> btstack_config.h
1427907f069SMatthias Ringwaldecho "#define ENABLE_SDP_DES_DUMP"              >> btstack_config.h
1437907f069SMatthias Ringwaldecho                                            >> btstack_config.h
1444fd8b166SMatthias Ringwald
1457907f069SMatthias Ringwaldecho "// BTstack configuration. buffers, sizes, .." >> btstack_config.h
1467907f069SMatthias Ringwaldecho "#define HCI_ACL_PAYLOAD_SIZE 1021" >> btstack_config.h
1477907f069SMatthias Ringwaldecho                                            >> btstack_config.h
1484fd8b166SMatthias Ringwald
1497907f069SMatthias Ringwaldecho "// Daemon configuration" >> btstack_config.h
1503edc84c5SMatthias Ringwaldif test "x$HCI_TRANSPORT" = xUSB; then
1513edc84c5SMatthias Ringwald    USB_SOURCES=hci_transport_h2_libusb.c
1527907f069SMatthias Ringwald    echo "#define HAVE_TRANSPORT_USB" >> btstack_config.h
1537907f069SMatthias Ringwald    echo "#define USB_PRODUCT_ID $USB_PRODUCT_ID" >> btstack_config.h
1547907f069SMatthias Ringwald    echo "#define USB_VENDOR_ID $USB_VENDOR_ID" >> btstack_config.h
1553edc84c5SMatthias Ringwaldelse
1567907f069SMatthias Ringwald    echo "#define HAVE_TRANSPORT_H4" >> btstack_config.h
1577907f069SMatthias Ringwald    echo "#define UART_DEVICE \"$UART_DEVICE\"" >> btstack_config.h
1587907f069SMatthias Ringwald    echo "#define UART_SPEED $UART_SPEED" >> btstack_config.h
1593edc84c5SMatthias Ringwaldfi
160af204097SMatthias Ringwaldif test ! -z "$BTSTACK_LINK_KEY_DB_INSTANCE" ; then
161af204097SMatthias Ringwald    echo "#define BTSTACK_LINK_KEY_DB_INSTANCE $BTSTACK_LINK_KEY_DB_INSTANCE" >> btstack_config.h
162af204097SMatthias Ringwaldfi
163af204097SMatthias Ringwaldif test ! -z "$BTSTACK_DEVICE_NAME_DB_INSTANCE" ; then
164af204097SMatthias Ringwald    echo "#define BTSTACK_DEVICE_NAME_DB_INSTANCE $BTSTACK_DEVICE_NAME_DB_INSTANCE" >> btstack_config.h
1653edc84c5SMatthias Ringwaldfi
1663edc84c5SMatthias Ringwald
1677907f069SMatthias Ringwaldecho                        >> btstack_config.h
1687907f069SMatthias Ringwaldecho "#endif"               >> btstack_config.h
1693edc84c5SMatthias Ringwald
1703edc84c5SMatthias RingwaldAC_SUBST(HAVE_LIBUSB)
1713edc84c5SMatthias RingwaldAC_SUBST(REMOTE_DEVICE_DB_SOURCES)
1723edc84c5SMatthias RingwaldAC_SUBST(USB_SOURCES)
173528a4a3bSMatthias RingwaldAC_SUBST(btstack_run_loop_SOURCES)
1743edc84c5SMatthias RingwaldAC_SUBST(CFLAGS)
1753edc84c5SMatthias RingwaldAC_SUBST(CPPFLAGS)
1763edc84c5SMatthias RingwaldAC_SUBST(BTSTACK_LIB_LDFLAGS)
1773edc84c5SMatthias RingwaldAC_SUBST(BTSTACK_LIB_EXTENSION)
1783edc84c5SMatthias RingwaldAC_SUBST(LIBUSB_CFLAGS)
1793edc84c5SMatthias RingwaldAC_SUBST(LIBUSB_LDFLAGS)
1803edc84c5SMatthias RingwaldAC_OUTPUT(Makefile src/Makefile example/Makefile)
181