From 7fdefb05bfc3dd769d1938e041b91be7b39e4c88 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald" Date: Tue, 22 Sep 2009 22:31:58 +0000 Subject: [PATCH] build BTstack libraries, create Framework --- TODO.txt | 9 +++++++-- aclocal.m4 | 1 + configure.in | 3 ++- src/{Makefile.am => Makefile.am.disabled} | 0 4 files changed, 10 insertions(+), 3 deletions(-) rename src/{Makefile.am => Makefile.am.disabled} (100%) diff --git a/TODO.txt b/TODO.txt index beef32215..a6ff90bb6 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,13 +4,18 @@ Last milestone reached: BTdaemon uses SpringBoardAccess to show status bar icons NEXT: +- replace Makefile.am in example and . by Makefile.in and drop automake + +- sign iPhone binaries + - add option to use ldid on the linked binaries + - autodetect ldid on host + - decide on error reporting from BTdaemon - command_status_event with custom errors - hci open failed - btstack error - + - add svn revision to package.sh tool for SpringBoardAccess -- create dylib of client library - create script to build APT package for BTdeamon, Resources, and BTstack client library - create new pgp key for gmail account and sign APT package - provide test version by setting up APT repository within BTstack SVN diff --git a/aclocal.m4 b/aclocal.m4 index 1306e82d9..8fe6e66af 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1022,3 +1022,4 @@ AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR +m4_include([acinclude.m4]) diff --git a/configure.in b/configure.in index 229ac30a8..1bf499ea9 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,6 @@ AC_ARG_WITH(product-id, [AS_HELP_STRING([--with-product-id=productID], [Specify # BUILD/HOST/TARGET AC_CANONICAL_HOST - # Checks for programs. AC_PROG_CC AC_PROG_CPP @@ -98,6 +97,7 @@ if test "x$target" = xiphone; then if test "x$USE_SPRINGBOARD" = xDEFAULT ; then USE_SPRINGBOARD="yes" echo "USE_SPRINGBOARD: $USE_SPRINGBOARD" + SPRINGBOARD_ACCESS_SOURCES="../SpringBoardAccess/SpringBoardAccess.c" fi echo "USE_LAUNCHD: $USE_LAUNCHD" @@ -143,4 +143,5 @@ fi AC_SUBST(IPHONE_IP) AC_SUBST(HAVE_LIBUSB) +AC_SUBST(SPRINGBOARD_ACCESS_SOURCES) AC_OUTPUT(Makefile src/Makefile example/Makefile SpringBoardAccess/Makefile) diff --git a/src/Makefile.am b/src/Makefile.am.disabled similarity index 100% rename from src/Makefile.am rename to src/Makefile.am.disabled