git-svn-id: http://svn.drobilla.net/lad@72 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-06-21 04:30:27 +00:00
parent 3b653980f2
commit aacb39b7f4
6 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
Om NEWS file
Ingen NEWS file
0.2.1:
* Node cloning (plugin only for now) (gtk client)

View File

@ -1,6 +1,6 @@
Om is a realtime modular synthesizer and/or effects processor for
Ingen is a realtime modular synthesizer and/or effects processor for
Jack/Alsa/LADSPA/DSSI/LV2/etc (ie GNU/Linux audio systems). More information
may be found at http://om-synth.nongnu.org
may be found at http://codeson.net/ingen
To build, do the typical "./configure; make; make install" routine.
@ -11,7 +11,7 @@ build clients only, build monolithic clients, etc. etc)
*** Optimization ***
Om's configure script, by default, does not clobber your CFLAGS or CXXFLAGS
Ingen's configure script, by default, does not clobber your CFLAGS or CXXFLAGS
environment variables (which is the proper behaviour), though it does add a
few flags that should be turned on in any case (as described in this file).
If you want to submit usable bug reports (for segfaults and the like),
@ -28,7 +28,7 @@ SSE) through your CXXFLAGS environment variable. The performance improvement
*** Debugging ***
Om makes very heavy use of assertions to catch bugs. Assertions have a
Ingen makes very heavy use of assertions to catch bugs. Assertions have a
(minor) performance hit unless the preprocessor symbol NDEBUG is defined.
By default the configure script will add this to the end of your flags,
but it's worth noting. You really don't want assertions turned on in a
@ -40,7 +40,7 @@ I can fix the problem.
*** Bugs ***
If Om crashes, PLEASE REPORT THE BUG. This isn't software from some faceless
If Ingen crashes, PLEASE REPORT THE BUG. This isn't software from some faceless
corporation, I'm a real person, and I'm usually on IRC (#lad on freenode.net)
if you want to talk to me. Things can't get fixed if I don't know about them,
and if you report it, it will get fixed - probably immediately.

View File

@ -1,4 +1,4 @@
Om TODO list
Ingen TODO list
** This is horribly out of date. I'll keep it around since some things in
** here are still relevant.

View File

@ -1,5 +1,5 @@
AC_PREREQ(2.59)
AC_INIT([om],[0.3.0pre],[drobilla@connect.carleton.ca])
AC_INIT([ingen],[0.4.0pre],[drobilla@connect.carleton.ca])
AC_CONFIG_SRCDIR([src/common/util/CountedPtr.h])
AC_CONFIG_SRCDIR([src/common/interface/EngineInterface.h])
AC_CONFIG_SRCDIR([src/libs/engine/JackAudioDriver.cpp])
@ -39,7 +39,7 @@ AC_SUBST(LOSC_CFLAGS)
# Check for pthreads
AC_CHECK_LIB(pthread, pthread_create, [],
AC_MSG_ERROR([*** Om requires POSIX threads support]))
AC_MSG_ERROR([*** Ingen requires POSIX threads support]))
AC_CHECK_HEADER(pthread.h)
# Check for POSIX semaphores in rt library
@ -188,7 +188,7 @@ if test "$build_engine" = "yes" -o "$build_in_process_engine" = "yes"; then
if test "$build_ladspa" = "yes"; then
build_ladspa="no"
AC_CHECK_HEADER(ladspa.h, [build_ladspa="yes"],
[AC_MSG_WARN([You don't seem to build ladspa.h, Om will not be very useful!])])
[AC_MSG_WARN([You don't seem to build ladspa.h, Ingen will not be very useful!])])
fi
if test "$build_ladspa" = "yes"; then
AC_DEFINE(HAVE_LADSPA, 1, [Has ladspa.h])
@ -217,7 +217,7 @@ if test "$build_engine" = "yes" -o "$build_in_process_engine" = "yes"; then
if test "$build_dssi" = "yes"; then
build_dssi="no"
AC_CHECK_HEADER(dssi.h, [build_dssi="yes"],
[AC_MSG_WARN([You do not seem to have dssi.h, Om will be built without DSSI support])])
[AC_MSG_WARN([You do not seem to have dssi.h, Ingen will be built without DSSI support])])
if test "$build_dssi" = "yes"; then
AC_DEFINE(HAVE_DSSI, 1, [Has dssi.h])
fi
@ -352,7 +352,7 @@ AC_OUTPUT
# Display summary
AC_MSG_NOTICE([])
AC_MSG_NOTICE([Om build configuration:])
AC_MSG_NOTICE([Ingen build configuration:])
AC_MSG_NOTICE([])
AC_MSG_NOTICE([Building engine: $build_engine])
AC_MSG_NOTICE([ Jack MIDI support: $build_jack_midi])

View File

@ -17,7 +17,7 @@
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
PROJECT_NAME = Om
PROJECT_NAME = Ingen
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or

View File

@ -1,5 +1,5 @@
Summary: A realtime modular synthesizer for GNU/Linux audio systems with support Jack and LADSPA or DSSI plugins.
Name: om
Name: ingen
Version: 0.3.0pre
Release: 1
License: GPL
@ -11,8 +11,8 @@ Requires: liblo jackit libxml2 libalsa2 ladspa libdssi0 libgtkmm2.4_1 libglademm
BuildRequires: liblo-devel libjack0-devel libxml2-devel libalsa2-devel ladspa-devel libdssi0-devel libgtkmm2.4_1-devel libglademm2.4_1-devel libgnomecanvasmm2.6_1-devel
%description
Om is a modular synthesizer for GNU/Linux audio systems with:
Completely OSC controlled engine, (meaning you can control Om over a network, from any number of clients),
Ingen is a modular synthesizer for GNU/Linux audio systems with:
Completely OSC controlled engine, (meaning you can control Ingen over a network, from any number of clients),
LADSPA and DSSI plugin support, A minimal number of special internal "plugins" (MIDI in, audio outputs, transport, etc.), Polyphony, Multiple top-level patches, with subpatching (unlimited depth).
%prep
%setup -q