build BTstack libraries, create Framework

This commit is contained in:
matthias.ringwald 2009-09-22 22:31:58 +00:00
parent 942671929b
commit 7fdefb05bf
4 changed files with 10 additions and 3 deletions

View File

@ -4,13 +4,18 @@ Last milestone reached: BTdaemon uses SpringBoardAccess to show status bar icons
NEXT: 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 - decide on error reporting from BTdaemon
- command_status_event with custom errors - command_status_event with custom errors
- hci open failed - hci open failed
- btstack error - btstack error
- add svn revision to package.sh tool for SpringBoardAccess - 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 script to build APT package for BTdeamon, Resources, and BTstack client library
- create new pgp key for gmail account and sign APT package - create new pgp key for gmail account and sign APT package
- provide test version by setting up APT repository within BTstack SVN - provide test version by setting up APT repository within BTstack SVN

1
aclocal.m4 vendored
View File

@ -1022,3 +1022,4 @@ AC_SUBST([am__tar])
AC_SUBST([am__untar]) AC_SUBST([am__untar])
]) # _AM_PROG_TAR ]) # _AM_PROG_TAR
m4_include([acinclude.m4])

View File

@ -20,7 +20,6 @@ AC_ARG_WITH(product-id, [AS_HELP_STRING([--with-product-id=productID], [Specify
# BUILD/HOST/TARGET # BUILD/HOST/TARGET
AC_CANONICAL_HOST AC_CANONICAL_HOST
# Checks for programs. # Checks for programs.
AC_PROG_CC AC_PROG_CC
AC_PROG_CPP AC_PROG_CPP
@ -98,6 +97,7 @@ if test "x$target" = xiphone; then
if test "x$USE_SPRINGBOARD" = xDEFAULT ; then if test "x$USE_SPRINGBOARD" = xDEFAULT ; then
USE_SPRINGBOARD="yes" USE_SPRINGBOARD="yes"
echo "USE_SPRINGBOARD: $USE_SPRINGBOARD" echo "USE_SPRINGBOARD: $USE_SPRINGBOARD"
SPRINGBOARD_ACCESS_SOURCES="../SpringBoardAccess/SpringBoardAccess.c"
fi fi
echo "USE_LAUNCHD: $USE_LAUNCHD" echo "USE_LAUNCHD: $USE_LAUNCHD"
@ -143,4 +143,5 @@ fi
AC_SUBST(IPHONE_IP) AC_SUBST(IPHONE_IP)
AC_SUBST(HAVE_LIBUSB) AC_SUBST(HAVE_LIBUSB)
AC_SUBST(SPRINGBOARD_ACCESS_SOURCES)
AC_OUTPUT(Makefile src/Makefile example/Makefile SpringBoardAccess/Makefile) AC_OUTPUT(Makefile src/Makefile example/Makefile SpringBoardAccess/Makefile)