small fixes

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@430 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2006-12-04 20:08:58 +00:00
parent d537337cb0
commit 6b3f216a82
6 changed files with 1572 additions and 73 deletions

View File

@@ -1,3 +1,16 @@
2006-12-04 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* Makefile.am:
added ladspa-1.1.h to source-file-list
* plugins/ladspa_effect/caps/basics.h:
include shipped LADSPA-header if none was found during configure
2006-12-03 Alexey Kouznetsov <alexey/dot/kouznetsov/at/gmail/dot/com>
* data/locale/ru.ts:
updated Russian translation
2006-11-19 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* plugins/vst_base/lvsl_server.c:

View File

@@ -348,6 +348,7 @@ lmms_SOURCES = \
$(srcdir)/include/rack_view.h \
$(srcdir)/include/effect_select_dialog.h \
$(srcdir)/include/dummy_effect.h \
$(srcdir)/include/ladspa-1.1.h \
$(srcdir)/include/meter_dialog.h \
$(srcdir)/include/qxembed.h

View File

@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
AC_INIT(lmms, 0.2.1-svn20061119, lmms-devel/at/lists/dot/sf/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.2.1-svn20061119)
AC_INIT(lmms, 0.2.1-svn20061204, lmms-devel/at/lists/dot/sf/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.2.1-svn20061204)
AM_CONFIG_HEADER(config.h)

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -46,7 +46,15 @@
#include <assert.h>
#include <stdio.h>
#include "ladspa.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_LADSPA_H
#include <ladspa.h>
#else
#include "ladspa-1.1.h"
#endif
#define BOUNDED (LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE)
#define INTEGER LADSPA_HINT_INTEGER