More build system fixes, everything now builds against the local copy if toplevel scripts are used.

git-svn-id: http://svn.drobilla.net/lad@158 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-10-05 02:40:43 +00:00
parent 302d40ec04
commit 698d4b8a18
17 changed files with 97 additions and 94 deletions

4
README
View File

@ -10,6 +10,10 @@ project.
listing of all configure options which you can pass to the top level
configure script to build everything however you like.
NOTE: if you use the top-level configure/make, everything will be built
against the local copies in this tree, but if you compile the packages
yourself, they will build against the libraries installed on your system.
Enjoy,
-Dave

View File

@ -16,6 +16,11 @@ cd flowcanvas
./autogen.sh
cd $top
echo -n "* patchage * \t"
cd patchage
./autogen.sh
cd $top
echo -n "* libslv2 * \t"
cd libslv2
./autogen.sh

View File

@ -1,5 +1,5 @@
AC_PREREQ(2.59)
AC_INIT([ingen],[svn],[drobilla@connect.carleton.ca])
AC_INIT([codesonnet],[svn],[drobilla@connect.carleton.ca])
AM_INIT_AUTOMAKE
AC_CONFIG_SUBDIRS([raul])
@ -11,6 +11,23 @@ AC_CONFIG_SUBDIRS([ingen])
AC_CONFIG_FILES([Makefile])
abs_srcdir=`pwd`
export PKG_CONFIG_PATH="$abs_srcdir/flowcanvas:$abs_srcdir/raul:$abs_srcdir/libslv2:$PKG_CONFIG_PATH"
export RAUL_CFLAGS="-I$abs_srcdir/raul"
export RAUL_LIBS=""
export FLOWCANVAS_CFLAGS="-I$abs_srcdir/flowcanvas"
export FLOWCANVAS_LIBS="-L$abs_srcdir/flowcanvas/src/.libs -lflowcanvas"
export SLV2_CFLAGS="-I$abs_srcdir/libslv2"
export SLV2_LIBS="-L$abs_srcdir/libslv2/src/.libs -lslv2"
AC_MSG_NOTICE([])
AC_MSG_NOTICE([Note: PKG_CONFIG_PATH value changed to build against local libraries])
AC_MSG_NOTICE([PKG_CONFIG_PATH = $PKG_CONFIG_PATH])
AC_MSG_NOTICE([])
AC_OUTPUT
AC_MSG_NOTICE([])

View File

@ -50,15 +50,8 @@ if test "$pointer_debug" = "yes"; then
CXXFLAGS+=" -DBOOST_SP_ENABLE_DEBUG_HOOKS"
fi
# Check for GTKMM
PKG_CHECK_MODULES(GTKMM, gtkmm-2.4)
AC_SUBST(GTKMM_CFLAGS)
AC_SUBST(GTKMM_LIBS)
# Check for gnomecanvasmm
PKG_CHECK_MODULES(GNOMECANVASMM, libgnomecanvasmm-2.6)
AC_SUBST(GNOMECANVASMM_CFLAGS)
AC_SUBST(GNOMECANVASMM_LIBS)
# Check for boost smart pointers
AC_CHECK_HEADERS([boost/shared_ptr.hpp], [],
@ -80,10 +73,20 @@ else
[sed 's/\(\/\*CANVASBASE\*\/\).*/\1Gnome::Canvas::Canvas/' -i flowcanvas/FlowCanvas.h])
fi
# Write it!
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([flowcanvas/Makefile])
AC_CONFIG_FILES([doc/Makefile])
AC_CONFIG_FILES([flowcanvas.pc])
AC_OUTPUT
AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([FlowCanvas build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([Anti-Aliasing: $anti_alias])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])

View File

@ -52,7 +52,7 @@ class Module;
* \ingroup FlowCanvas
*/
class FlowCanvas : public boost::enable_shared_from_this<FlowCanvas>
, public /*CANVASBASE*/Gnome::Canvas::Canvas
, public /*CANVASBASE*/Gnome::Canvas::CanvasAA
// (CANVASBASE is a hook for a sed script in configure.ac)
{
public:

View File

@ -88,9 +88,9 @@ protected:
bool is_within(const Gnome::Canvas::Rect& rect);
virtual void on_double_click(GdkEventButton* ev) {}
virtual void on_middle_click(GdkEventButton* ev) {}
virtual void on_right_click(GdkEventButton* ev) {}
virtual void on_double_click(GdkEventButton*) {}
virtual void on_middle_click(GdkEventButton*) {}
virtual void on_right_click(GdkEventButton*) {}
double m_border_width;
double m_width;

View File

@ -33,8 +33,6 @@ AC_HEADER_DIRENT
# Check for liblo
PKG_CHECK_MODULES(LOSC, liblo >= 0.22)
AC_SUBST(LOSC_LIBS)
AC_SUBST(LOSC_CFLAGS)
# Check for pthreads
AC_CHECK_LIB(pthread, pthread_create, [],
@ -53,8 +51,6 @@ if test "$build_lash" = "yes"; then
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
@ -223,8 +219,6 @@ if test "$build_server" = "yes" -o "$monolothic_ingenuity"; then
# Check for Jack
PKG_CHECK_MODULES(JACK, jack >= 0.99.0)
AC_SUBST(JACK_LIBS)
AC_SUBST(JACK_CFLAGS)
# Check for Jack MIDI
if test "$build_jack_midi" = "yes"; then
@ -238,8 +232,6 @@ if test "$build_server" = "yes" -o "$monolothic_ingenuity"; then
# Check for ALSA
if test "$build_alsa_midi" = "yes" -o "$build_dssi" = "yes"; then
PKG_CHECK_MODULES(ALSA, alsa >= 1.0.0, [have_alsa_midi="yes"], [have_alsa_midi="no"])
AC_SUBST(ALSA_CFLAGS)
AC_SUBST(ALSA_LIBS)
fi
if test "$build_alsa_midi" = "yes"; then
@ -266,8 +258,6 @@ if test "$build_server" = "yes" -o "$monolothic_ingenuity"; then
if test "$build_lv2" = "yes"; then
build_lv2="no"
PKG_CHECK_MODULES(SLV2, libslv2 >= 0.0.1, [build_lv2="yes"], [build_lv2="no"])
AC_SUBST(SLV2_CFLAGS)
AC_SUBST(SLV2_LIBS)
fi
if test "$build_lv2" = "yes"; then
AC_DEFINE(HAVE_SLV2, 1, [Has libslv2])
@ -313,23 +303,15 @@ if test "$build_console_clients" = "yes"; then
# Check for libxml2 # FIXME: deprecated, make optional
PKG_CHECK_MODULES(LXML2, libxml-2.0 >= 2.6.0)
AC_SUBST(LXML2_LIBS)
AC_SUBST(LXML2_CFLAGS)
# Check for raptor (for RDF serialization)
PKG_CHECK_MODULES(RAPTOR, raptor >= 0.21, build_raptor="yes", build_raptor="no")
AC_SUBST(RAPTOR_CFLAGS)
AC_SUBST(RAPTOR_LIBS)
# Check for rasqal (for RDF querying)
#PKG_CHECK_MODULES(RASQAL, rasqal >= 0.9.11, build_rasqal="yes", build_rasqal="no")
#AC_SUBST(RASQAL_CFLAGS)
#AC_SUBST(RASQAL_LIBS)
# Check for sigc++ (FIXME: make this only necessary where.. uh.. necessary)
PKG_CHECK_MODULES(LSIGCPP, sigc++-2.0)
AC_SUBST(LSIGCPP_CFLAGS)
AC_SUBST(LSIGCPP_LIBS)
else
AC_MSG_WARN([Console clients will be built!])
fi
@ -353,20 +335,9 @@ if test "$build_gtk_client" = "yes"; then
AC_CHECK_FUNCS([gettimeofday mkdir strcasecmp strchr strdup strtol])
PKG_CHECK_MODULES(GTKMM, gtkmm-2.4)
AC_SUBST(GTKMM_CFLAGS)
AC_SUBST(GTKMM_LIBS)
PKG_CHECK_MODULES(GNOMECANVASMM, libgnomecanvasmm-2.6)
AC_SUBST(GNOMECANVASMM_CFLAGS)
AC_SUBST(GNOMECANVASMM_LIBS)
PKG_CHECK_MODULES(LIBGLADEMM, libglademm-2.4)
AC_SUBST(LIBGLADEMM_CFLAGS)
AC_SUBST(LIBGLADEMM_LIBS)
PKG_CHECK_MODULES(FLOWCANVAS, flowcanvas >= 0.1.0)
AC_SUBST(FLOWCANVAS_CFLAGS)
AC_SUBST(FLOWCANVAS_LIBS)
if test "$monolithic_ingenuity" = "yes"; then
AC_DEFINE(MONOLITHIC_INGENUITY, 1, [Whether to build an internal engine into Ingenuity])
@ -402,10 +373,11 @@ AC_CONFIG_FILES([src/progs/patch_loader/Makefile])
AC_CONFIG_FILES([src/progs/ingenuity/Makefile])
AC_CONFIG_FILES([patches/Makefile])
AC_CONFIG_FILES([doc/Doxyfile])
AC_OUTPUT
# Display summary
AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([Ingen build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([Building server: $build_engine])
@ -425,5 +397,6 @@ AC_MSG_RESULT([ Monolithic: $monolithic_ingenuity])
AC_MSG_RESULT([])
AC_MSG_RESULT([])
AC_MSG_RESULT([Building with flags: $CXXFLAGS])
AC_MSG_RESULT([])
AC_MSG_RESULT([Please note the above and see README for performance information.])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])

View File

@ -6,8 +6,8 @@ MAINTAINERCLEANFILES = Makefile.in
sharefilesdir = $(pkgdatadir)
dist_sharefiles_DATA = ingenuity.glade om-icon.png
ingenuity_CXXFLAGS = -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -I$(top_srcdir)/src/common -I$(top_srcdir)/src/libs/client -DPKGDATADIR=\"$(pkgdatadir)\" @GTKMM_CFLAGS@ @LIBGLADEMM_CFLAGS@ @GNOMECANVASMM_CFLAGS@ @LOSC_CFLAGS@ @LASH_CFLAGS@ @FLOWCANVAS_CFLAGS@
ingenuity_LDADD = @GTKMM_LIBS@ @LIBGLADEMM_LIBS@ @GNOMECANVASMM_LIBS@ @LOSC_LIBS@ @LASH_LIBS@ @FLOWCANVAS_LIBS@ ../../libs/client/libingenclient.la
ingenuity_CXXFLAGS = -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -I$(top_srcdir)/src/common -I$(top_srcdir)/src/libs/client -DPKGDATADIR=\"$(pkgdatadir)\" @GTKMM_CFLAGS@ @LIBGLADEMM_CFLAGS@ @GNOMECANVASMM_CFLAGS@ @LOSC_CFLAGS@ @LASH_CFLAGS@ @FLOWCANVAS_CFLAGS@ @RAUL_CFLAGS@
ingenuity_LDADD = @GTKMM_LIBS@ @LIBGLADEMM_LIBS@ @GNOMECANVASMM_LIBS@ @LOSC_LIBS@ @LASH_LIBS@ @FLOWCANVAS_LIBS@ @RAUL_LIBS@ ../../libs/client/libingenclient.la
ingenuity_DEPENDENCIES = ../../libs/client/libingenclient.la
# FIXME: make engine have a separate include dir

View File

@ -1,7 +1,7 @@
EXTRA_DIST = README
ingen_load_CXXFLAGS = -I$(top_srcdir)/src/libs/client -I$(top_srcdir)/src/common @LSIGCPP_CFLAGS@
ingen_load_LDADD = ../../libs/client/libingenclient.la
ingen_load_CXXFLAGS = -I$(top_srcdir)/src/libs/client -I$(top_srcdir)/src/common @LSIGCPP_CFLAGS@ @RAUL_CFLAGS@
ingen_load_LDADD = ../../libs/client/libingenclient.la @RAUL_LIBS@ @LSIGCPP_LIBS@
bin_PROGRAMS = ingen_load

View File

@ -1,4 +1,4 @@
AM_CXXFLAGS = @JACK_CFLAGS@ @LOSC_CFLAGS@ @ALSA_CFLAGS@ @LASH_CFLAGS@ @SLV2_CFLAGS@ -I$(top_srcdir)/src/common -I$(top_srcdir)/src/libs/engine -I$(top_srcdir)/src/libs/engine/events
AM_CXXFLAGS = @RAUL_CFLAGS@ @JACK_CFLAGS@ @LOSC_CFLAGS@ @ALSA_CFLAGS@ @LASH_CFLAGS@ @SLV2_CFLAGS@ -I$(top_srcdir)/src/common -I$(top_srcdir)/src/libs/engine -I$(top_srcdir)/src/libs/engine/events
MAINTAINERCLEANFILES = Makefile.in

View File

@ -54,8 +54,6 @@ AC_SUBST(lv2dir)
# Check for RASQAL
PKG_CHECK_MODULES(RASQAL, rasqal >= 0.9.11, build_rasqal="yes", build_rasqal="no")
AC_SUBST(RASQAL_CFLAGS)
AC_SUBST(RASQAL_LIBS)
# Check for JACK
build_jack="yes"
@ -67,8 +65,6 @@ if test "$build_jack" = "yes"; then
fi
if test "$build_jack" = "yes"; then
AC_DEFINE(HAVE_JACK, 1, [Has JACK])
AC_SUBST(JACK_CFLAGS)
AC_SUBST(JACK_LIBS)
else
AC_MSG_WARN([JACK not found, JACK clients will not be built.])
fi
@ -86,11 +82,14 @@ AC_CONFIG_FILES([examples/hosts/Makefile])
AC_CONFIG_FILES([libslv2.pc])
AC_CONFIG_FILES([doc/Makefile])
AC_CONFIG_FILES([doc/reference.doxygen])
AC_OUTPUT
# Display summary message
AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([SLV2 build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([Building JACK client: $build_jack])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])

View File

@ -64,8 +64,17 @@ fi
CFLAGS="$CFLAGS -pipe -fmessage-length=139 -fdiagnostics-show-location=every-line"
# Write it!
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_OUTPUT
AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([Omins build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([Install directory: $ladspadir])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])

View File

@ -5,10 +5,9 @@ AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
# Checks for compilers
AC_PROG_CXX
AC_LANG([C++])
# Check other stuff..
AC_PROG_CXX
AC_TYPE_SIZE_T
AC_CHECK_FUNCS([strerror])
@ -21,8 +20,6 @@ PKG_CHECK_MODULES(RAUL, raul >= 0.0.0)
# Check for FlowCanvas
PKG_CHECK_MODULES(FLOWCANVAS, flowcanvas >= 0.1.0)
AC_SUBST(FLOWCANVAS_CFLAGS)
AC_SUBST(FLOWCANVAS_LIBS)
# Check for Jack
PKG_CHECK_MODULES(JACK, jack >= 0.100.0)
@ -61,8 +58,6 @@ if test "$build_lash" = "yes"; then
fi
if test "$have_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
@ -98,22 +93,21 @@ fi
CXXFLAGS="$CXXFLAGS -pipe -Wall -fmessage-length=139 -fdiagnostics-show-location=every-line"
CFLAGS="$CFLAGS -pipe -Wall -fmessage-length=139 -fdiagnostics-show-location=every-line"
# Check for GTKMM
PKG_CHECK_MODULES(GTKMM, gtkmm-2.4)
AC_SUBST(GTKMM_CFLAGS)
AC_SUBST(GTKMM_LIBS)
# Check for gnomecanvasmm
PKG_CHECK_MODULES(GNOMECANVASMM, libgnomecanvasmm-2.6)
AC_SUBST(GNOMECANVASMM_CFLAGS)
AC_SUBST(GNOMECANVASMM_LIBS)
# Check for libglademm
PKG_CHECK_MODULES(LIBGLADEMM, libglademm-2.4)
AC_SUBST(LIBGLADEMM_CFLAGS)
AC_SUBST(LIBGLADEMM_LIBS)
# Write it!
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_OUTPUT
AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([Patchage build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([Alsa support: $ALSA_FOUND])
AC_MSG_RESULT([Lash support: $have_lash])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])

View File

@ -21,7 +21,7 @@
#include <string>
#include <boost/shared_ptr.hpp>
#include <jack/jack.h>
#include "Mutex.h"
#include <raul/Mutex.h>
#include "Driver.h"
class Patchage;
class PatchageFlowCanvas;

View File

@ -1,5 +1,5 @@
AM_CXXFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\" @LIBGLADEMM_CFLAGS@ @GNOMECANVASMM_CFLAGS@ @JACK_CFLAGS@ @ALSA_CFLAGS@ @LASH_CFLAGS@ @FLOWCANVAS_CFLAGS@
patchage_LDADD = @LIBGLADEMM_LIBS@ @GNOMECANVASMM_LIBS@ @JACK_LIBS@ @ALSA_LIBS@ @LASH_LIBS@ @FLOWCANVAS_LIBS@
AM_CXXFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\" @LIBGLADEMM_CFLAGS@ @GNOMECANVASMM_CFLAGS@ @JACK_CFLAGS@ @ALSA_CFLAGS@ @LASH_CFLAGS@ @FLOWCANVAS_CFLAGS@ @RAUL_CFLAGS@
patchage_LDADD = @LIBGLADEMM_LIBS@ @GNOMECANVASMM_LIBS@ @JACK_LIBS@ @ALSA_LIBS@ @LASH_LIBS@ @FLOWCANVAS_LIBS@ @RAUL_CFLAGS@
EXTRA_DIST = patchage.gladep

View File

@ -44,8 +44,6 @@ AC_ARG_ENABLE(raptor,
if test "$build_raptor" = "yes"; then
PKG_CHECK_MODULES(RAPTOR, raptor >= 1.4.0, [],
AC_MSG_ERROR([RDF support requires raptor (>= 1.4.0)]))
AC_SUBST(RAPTOR_CFLAGS)
AC_SUBST(RAPTOR_LIBS)
fi
AM_CONDITIONAL(WITH_RAPTOR, [test "$build_raptor" = "yes"])
@ -57,8 +55,6 @@ AC_ARG_ENABLE(liblo,
if test "$build_liblo" = "yes"; then
PKG_CHECK_MODULES(LIBLO, liblo >= 0.22, [],
AC_MSG_ERROR([OSC support requires liblo (>= 0.22)]))
AC_SUBST(LIBLO_LIBS)
AC_SUBST(LIBLO_CFLAGS)
fi
AM_CONDITIONAL(WITH_LIBLO, [test "$build_liblo" = "yes"])
@ -71,9 +67,12 @@ AC_CONFIG_FILES([raul.pc])
AC_OUTPUT
AC_MSG_RESULT([])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([Raul build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([OSC supprt: $build_liblo])
AC_MSG_RESULT([RDF supprt: $build_raptor])
AC_MSG_RESULT([Smart Pointers: $build_smart_pointers])
AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])

View File

@ -62,21 +62,21 @@ HEADERS = $(raulinclude_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = ${SHELL} /home/dave/code/codesonnet/raul/missing --run aclocal-1.9
ACLOCAL = ${SHELL} /home/dave/code/codesonnet/missing --run aclocal-1.9
AMDEP_FALSE = #
AMDEP_TRUE =
AMTAR = ${SHELL} /home/dave/code/codesonnet/raul/missing --run tar
AUTOCONF = ${SHELL} /home/dave/code/codesonnet/raul/missing --run autoconf
AUTOHEADER = ${SHELL} /home/dave/code/codesonnet/raul/missing --run autoheader
AUTOMAKE = ${SHELL} /home/dave/code/codesonnet/raul/missing --run automake-1.9
AMTAR = ${SHELL} /home/dave/code/codesonnet/missing --run tar
AUTOCONF = ${SHELL} /home/dave/code/codesonnet/missing --run autoconf
AUTOHEADER = ${SHELL} /home/dave/code/codesonnet/missing --run autoheader
AUTOMAKE = ${SHELL} /home/dave/code/codesonnet/missing --run automake-1.9
AWK = gawk
BOOST_CFLAGS =
BOOST_LIBS =
CPPFLAGS =
CXX = g++
CXXCPP = g++ -E
CXXDEPMODE = depmode=none
CXXFLAGS = -pipe -O2 -march=pentium4 -msse -msse2 -mfpmath=sse -ffast-math -ftree-vectorize -DNDEBUG -finline-functions -fomit-frame-pointer -fmessage-length=139 -fdiagnostics-show-location=every-line
CXXDEPMODE = depmode=gcc3
CXXFLAGS = -O2 -march=athlon64 -fomit-frame-pointer
CYGPATH_W = echo
DEFS = -DPACKAGE_NAME=\"raul\" -DPACKAGE_TARNAME=\"raul\" -DPACKAGE_VERSION=\"0.0.0\" -DPACKAGE_STRING=\"raul\ 0.0.0\" -DPACKAGE_BUGREPORT=\"drobilla@connect.carleton.ca\" -DPACKAGE=\"raul\" -DVERSION=\"0.0.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_STDLIB_H=1 -DHAVE_MALLOC=1 -DHAVE_STRDUP=1 -DHAVE_STRERROR=1
DEPDIR = .deps
@ -96,7 +96,7 @@ LIBLO_LIBS = -L/usr/local/lib -llo -lpthread
LIBOBJS =
LIBS =
LTLIBOBJS =
MAKEINFO = ${SHELL} /home/dave/code/codesonnet/raul/missing --run makeinfo
MAKEINFO = ${SHELL} /home/dave/code/codesonnet/missing --run makeinfo
OBJEXT = o
PACKAGE = raul
PACKAGE_BUGREPORT = drobilla@connect.carleton.ca
@ -119,8 +119,8 @@ WITH_LIBLO_TRUE =
WITH_RAPTOR_FALSE = #
WITH_RAPTOR_TRUE =
ac_ct_CXX = g++
am__fastdepCXX_FALSE =
am__fastdepCXX_TRUE = #
am__fastdepCXX_FALSE = #
am__fastdepCXX_TRUE =
am__include = include
am__leading_dot = .
am__quote =
@ -137,7 +137,7 @@ host_alias =
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
install_sh = /home/dave/code/codesonnet/raul/install-sh
install_sh = /home/dave/code/codesonnet/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale