Remove obsolete files

This commit is contained in:
Nedko Arnaudov 2009-07-12 14:51:23 +03:00
parent 37bae0048f
commit 9175804c2f
2 changed files with 0 additions and 40 deletions

18
TODO
View File

@ -1,18 +0,0 @@
* Clean up memory better
* A decent logging system with verbosity levels
* Lose projects?
* preset saving/loading, similar to configs?
* use AAF format for project's files?
* save midi instrument setups with sysex?
* use OSC for comms?
in 0.4:
* Clean up the messy client/conn structures in liblash
* use client name dirs in save/restore events
* xml project description files
* use IPv6 rather than IPv4
* Ensure project directories stay clean
in 0.2:
* Make stores safer
* Protocol versioning

View File

@ -1,22 +0,0 @@
# This is template code you can put in your configure.ac to check
# for LASH support
############
### LASH ###
############
build_lash="yes"
AC_ARG_ENABLE(lash,
[AS_HELP_STRING(--enable-lash, [Enable LASH session management support (true)])],
[ if test x$enable_lash = xno ; then build_lash=no ; fi ])
if test "$build_lash" = "yes"; then
PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.0, build_lash="yes", build_lash="no")
fi
if test "$build_lash" = "yes"; then
AC_DEFINE(HAVE_LASH, 1, [Has lash.h])
AC_SUBST(LASH_CFLAGS)
AC_SUBST(LASH_LIBS)
else
AC_MSG_WARN([LASH not found, session support will not be built.])
fi
AM_CONDITIONAL(HAVE_LASH, [test "$build_lash" = "yes"])