mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-03-11 03:12:41 +00:00
remove deprecated autotools build system
This commit is contained in:
parent
199a4d28f2
commit
3939941c5f
17 changed files with 0 additions and 1768 deletions
11
Makefile.am
11
Makefile.am
|
@ -1,11 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
ACLOCAL_AMFLAGS=-I m4
|
||||
|
||||
SUBDIRS = src doc include cmake_admin
|
||||
EXTRA_DIST = TODO acinclude.m4 autogen.sh fluidsynth.pc.in \
|
||||
fluidsynth.spec.in fluidsynth.spec fluidsynth.anjuta README-OSX \
|
||||
README.cmake CMakeLists.txt
|
||||
DISTCLEANFILES = fluidsynth.pc
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = fluidsynth.pc
|
126
acinclude.m4
126
acinclude.m4
|
@ -1,126 +0,0 @@
|
|||
dnl Some additional autoconf macros
|
||||
|
||||
AC_DEFUN([AC_MIDISHARE],
|
||||
[
|
||||
AC_ARG_ENABLE(midishare, AS_HELP_STRING([--enable-midishare],
|
||||
[Compile MIDISHARE support (default=auto)]),
|
||||
midishare=$enableval, midishare=yes)
|
||||
|
||||
MIDISHARE_SUPPORT=0
|
||||
|
||||
if test "x$midishare" != "xno"; then
|
||||
|
||||
AC_CHECK_HEADERS(MidiShare.h)
|
||||
|
||||
if test "${ac_cv_header_MidiShare_h}" = "yes"; then
|
||||
|
||||
MIDISHARE_SUPPORT=1
|
||||
|
||||
midishare_found=yes
|
||||
AC_CHECK_LIB([MidiShare], [MidiOpen],, [midishare_found=no])
|
||||
|
||||
if test "x$midishare_found" = "xyes" ; then
|
||||
MIDISHARE_SUPPORT=1
|
||||
AC_DEFINE(MIDISHARE_SUPPORT, 1, [Define to enable MidiShare driver])
|
||||
fi
|
||||
|
||||
if test "x$midishare_found" = "xno" ; then
|
||||
AC_MSG_WARN([ *** Could not find the required MidiShare library])
|
||||
fi dnl midishare_found = yes test
|
||||
|
||||
else
|
||||
AC_MSG_WARN([ *** Could not find MidiShare.h, disabling MidiShare driver])
|
||||
fi dnl midishare.h header test
|
||||
fi dnl enable_midishare != no?
|
||||
])
|
||||
|
||||
AC_DEFUN([AC_OSS_AUDIO],
|
||||
[
|
||||
AC_ARG_ENABLE(oss-support,
|
||||
[ --disable-oss-support Do not compile OSS support (default=auto)],
|
||||
enable_oss_support=$enableval, enable_oss_support="yes")
|
||||
|
||||
OSS_SUPPORT=0
|
||||
|
||||
if test "x$enable_oss_support" != "xno"; then
|
||||
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/soundcard.h machine/soundcard.h)
|
||||
if test "${ac_cv_header_fcntl_h}" = "yes" && \
|
||||
test "${ac_cv_header_sys_ioctl_h}" = "yes"; then
|
||||
if test "${ac_cv_header_sys_soundcard_h}" = "yes" || \
|
||||
test "${ac_cv_header_machine_soundcard_h}" = "yes"; then
|
||||
OSS_SUPPORT=1
|
||||
AC_DEFINE(OSS_SUPPORT, 1, [Define to enable OSS driver])
|
||||
else
|
||||
AC_MSG_WARN([ *** Could not find soundcard.h, disabling OSS driver])
|
||||
fi dnl soundcard.h header test
|
||||
else
|
||||
AC_MSG_WARN([ *** Could not find fcntl.h and/or ioctl.h which are required for sound and midi support])
|
||||
fi dnl fcntl.h & ioctl.h header test
|
||||
fi dnl enable_oss_support != no?
|
||||
])
|
||||
|
||||
dnl Configure Paths for readline (Josh Green 2003-06-10)
|
||||
dnl
|
||||
dnl AM_PATH_READLINE([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
|
||||
dnl Test for readline, and define READLINE_CFLAGS and
|
||||
dnl READLINE_LIBS as appropriate.
|
||||
dnl enables arguments --with-readline-prefix=
|
||||
|
||||
AC_DEFUN([AM_PATH_READLINE],
|
||||
[dnl Save the original CFLAGS, and LIBS
|
||||
save_CFLAGS="$CFLAGS"
|
||||
save_LIBS="$LIBS"
|
||||
readline_found=yes
|
||||
|
||||
dnl
|
||||
dnl Setup configure options
|
||||
dnl
|
||||
AC_ARG_WITH(readline-prefix,
|
||||
[ --with-readline-prefix=PATH Path where readline is (optional)],
|
||||
[readline_prefix="$withval"], [readline_prefix=""])
|
||||
|
||||
AC_MSG_CHECKING(for readline)
|
||||
|
||||
dnl Add readline to the LIBS path
|
||||
READLINE_LIBS="-lreadline"
|
||||
|
||||
if test "${readline_prefix}" != "" ; then
|
||||
READLINE_LIBS="-L${readline_prefix}/lib $READLINE_LIBS"
|
||||
READLINE_CFLAGS="-I${readline_prefix}/include"
|
||||
else
|
||||
READLINE_CFLAGS=""
|
||||
fi
|
||||
|
||||
LIBS="$READLINE_LIBS $LIBS"
|
||||
CFLAGS="$READLINE_CFLAGS $CFLAGS"
|
||||
|
||||
AC_TRY_COMPILE([
|
||||
#include <stdio.h>
|
||||
#include <readline/readline.h>
|
||||
], [
|
||||
#ifndef readline
|
||||
return (1);
|
||||
#else
|
||||
return (0);
|
||||
#endif
|
||||
],
|
||||
[AC_MSG_RESULT(found.)],
|
||||
[AC_MSG_RESULT(not present.)
|
||||
readline_found=no]
|
||||
)
|
||||
|
||||
CFLAGS="$save_CFLAGS"
|
||||
LIBS="$save_LIBS"
|
||||
|
||||
if test "x$readline_found" = "xyes" ; then
|
||||
ifelse([$1], , :, [$1])
|
||||
else
|
||||
READLINE_CFLAGS=""
|
||||
READLINE_LIBS=""
|
||||
ifelse([$2], , :, [$2])
|
||||
fi
|
||||
|
||||
dnl That should be it. Now just export out symbols:
|
||||
AC_SUBST(READLINE_CFLAGS)
|
||||
AC_SUBST(READLINE_LIBS)
|
||||
])
|
12
autogen.sh
12
autogen.sh
|
@ -1,12 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Some poor souls have linux distributions, that don't install pkg-config by default.
|
||||
#pkg-config --version does actually nothing, but it will fail and give 'sort of' an error message...
|
||||
|
||||
pkg-config --version > /dev/null \
|
||||
&& aclocal \
|
||||
&& libtoolize -f \
|
||||
&& autoheader \
|
||||
&& autoconf \
|
||||
&& automake -a
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = CheckDIRSymbolExists.cmake \
|
||||
CheckPrototypeExists.cmake \
|
||||
CheckSTDC.cmake \
|
||||
cmake_uninstall.cmake.in \
|
||||
DefaultDirs.cmake \
|
||||
FindMidiShare.cmake \
|
||||
FindOSS.cmake \
|
||||
FindPthreads.cmake \
|
||||
FindReadline.cmake \
|
||||
report.cmake \
|
||||
TestInline.cmake \
|
||||
TestVLA.cmake \
|
||||
UnsetPkgConfig.cmake
|
636
configure.ac
636
configure.ac
|
@ -1,636 +0,0 @@
|
|||
dnl --------------------------------------------------
|
||||
dnl configure.in for FluidSynth
|
||||
dnl --------------------------------------------------
|
||||
|
||||
AC_INIT(src/fluidsynth.c)
|
||||
|
||||
dnl *** NOTE *** Don't forget to update library version below also
|
||||
|
||||
FLUIDSYNTH_VERSION_MAJOR=1
|
||||
FLUIDSYNTH_VERSION_MINOR=1
|
||||
FLUIDSYNTH_VERSION_MICRO=7
|
||||
FLUIDSYNTH_VERSION=$FLUIDSYNTH_VERSION_MAJOR.$FLUIDSYNTH_VERSION_MINOR.$FLUIDSYNTH_VERSION_MICRO
|
||||
|
||||
AC_SUBST(FLUIDSYNTH_VERSION_MAJOR)
|
||||
AC_SUBST(FLUIDSYNTH_VERSION_MINOR)
|
||||
AC_SUBST(FLUIDSYNTH_VERSION_MICRO)
|
||||
AC_SUBST(FLUIDSYNTH_VERSION)
|
||||
|
||||
AM_INIT_AUTOMAKE(fluidsynth, $FLUIDSYNTH_VERSION)
|
||||
|
||||
dnl Convert to quoted string for version.h substitution
|
||||
FLUIDSYNTH_VERSION="\"$VERSION\""
|
||||
|
||||
dnl *** NOTICE ***
|
||||
dnl Update library version upon each release (follow these steps in order)
|
||||
dnl if any source code changes: lt_revision++
|
||||
dnl if any interfaces added/removed/changed: lt_current++ and lt_revision=0
|
||||
dnl if any interfaces have been added: lt_age++
|
||||
dnl if any interfaces have been removed/changed (compatibility broken): lt_age=0
|
||||
|
||||
m4_define([lt_current], [6])
|
||||
m4_define([lt_revision], [0])
|
||||
m4_define([lt_age], [6])
|
||||
|
||||
LT_VERSION_INFO="lt_current:lt_revision:lt_age"
|
||||
AC_SUBST(LT_VERSION_INFO)
|
||||
|
||||
AM_CONFIG_HEADER(src/config.h)
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
CFLAGS="$CFLAGS"
|
||||
|
||||
dnl Check for programs
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
AC_PROG_INSTALL
|
||||
dnl AC_PROG_RANLIB
|
||||
AC_LIBTOOL_WIN32_DLL
|
||||
AM_PROG_LIBTOOL
|
||||
AC_PROG_MAKE_SET
|
||||
|
||||
dnl Check for libraries
|
||||
AC_CHECK_LIB(pthread, pthread_create)
|
||||
|
||||
dnl Check for header files
|
||||
AC_HEADER_STDC
|
||||
AC_CHECK_HEADERS(string.h stdlib.h stdio.h math.h errno.h stdarg.h unistd.h sys/mman.h sys/types.h sys/time.h sys/stat.h fcntl.h sys/socket.h netinet/in.h netinet/tcp.h arpa/inet.h limits.h pthread.h signal.h windows.h)
|
||||
|
||||
dnl Compiler and machine specs
|
||||
AC_C_INLINE
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
LIBFLUID_LIBS="-lm"
|
||||
|
||||
dnl Machine specific checks and defines
|
||||
case "${host_os}" in
|
||||
darwin*)
|
||||
AC_DEFINE(DARWIN, 1, [Define if building for Mac OS X Darwin])
|
||||
;;
|
||||
mingw*)
|
||||
mingw32_support="yes"
|
||||
CFLAGS="$CFLAGS -mms-bitfields"
|
||||
AC_DEFINE(MINGW32, 1, [Define if using the MinGW32 environment])
|
||||
LIBFLUID_LIBS="-ldsound -lwinmm -lws2_32"
|
||||
LIBFLUID_CPPFLAGS="-DFLUIDSYNTH_DLL_EXPORTS"
|
||||
LIBFLUID_LDFLAGS="-no-undefined"
|
||||
FLUID_CPPFLAGS="-DFLUIDSYNTH_NOT_A_DLL"
|
||||
;;
|
||||
os2*)
|
||||
LDFLAGS="$LDFLAGS -Zbin-files"
|
||||
LIBFLUID_LDFLAGS="-no-undefined"
|
||||
;;
|
||||
solaris*)
|
||||
LDFLAGS="$LDFLAGS -lnsl -lsocket"
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_SUBST(LIBFLUID_LIBS)
|
||||
AC_SUBST(LIBFLUID_CPPFLAGS)
|
||||
AC_SUBST(LIBFLUID_LDFLAGS)
|
||||
AC_SUBST(FLUID_CPPFLAGS)
|
||||
|
||||
dnl Check for GNU LD
|
||||
AC_LIB_PROG_LD_GNU
|
||||
AM_CONDITIONAL(GNU_LD_SUPPORT, test "x$with_gnu_ld" = "xyes")
|
||||
|
||||
AM_CONDITIONAL(MINGW32_SUPPORT, test "$mingw32_support" == "yes")
|
||||
|
||||
AC_ARG_ENABLE(double, AS_HELP_STRING([--enable-double],
|
||||
[double floating point for dsp (default=float)]),
|
||||
ENABLE_FLOAT_SAMPLES=$enableval,
|
||||
ENABLE_FLOAT_SAMPLES=yes)
|
||||
if test "x$ENABLE_FLOAT_SAMPLES" = "xyes" ; then
|
||||
AC_DEFINE(WITH_FLOAT, 1, [Define to do all DSP in single floating point precision])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE(profiling, AS_HELP_STRING([--enable-profiling],
|
||||
[profile the dsp code (default=no)]),
|
||||
profiling_flag=$enableval,
|
||||
profiling_flag=no)
|
||||
if test "x$profiling_flag" = "xyes" ; then
|
||||
AC_DEFINE(WITH_PROFILING, 1, [Define to profile the DSP code])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE(ladspa, AS_HELP_STRING([--enable-ladspa],
|
||||
[Include LADSPA effect unit (default=no)]),
|
||||
ENABLE_LADSPA=$enableval,
|
||||
ENABLE_LADSPA=no)
|
||||
if test "x$ENABLE_LADSPA" = "xyes" ; then
|
||||
AC_DEFINE(LADSPA, 1, [Include the LADSPA Fx unit])
|
||||
dnl LADSPA plugins are loaded as dynamic libraries.
|
||||
dnl In this case, -ldl is required for linking.
|
||||
AC_CHECK_LIB(dl, dlopen)
|
||||
fi
|
||||
|
||||
|
||||
AC_ARG_ENABLE(trap-on-fpe, AS_HELP_STRING([--enable-trap-on-fpe],
|
||||
[Enable SIGFPE trap on Floating Point Exceptions (debugging)]),
|
||||
ENABLE_TRAPONFPE=$enableval, ENABLE_TRAPONFPE=no)
|
||||
|
||||
if test "$ENABLE_TRAPONFPE" = "yes"; then
|
||||
AC_DEFINE(TRAP_ON_FPE, 1, [Define to enable SIGFPE assertions])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE(fpe-check, AS_HELP_STRING([--enable-fpe-check],
|
||||
[Enable Floating Point Exception checks and debug messages]),
|
||||
ENABLE_FPECHECK=$enableval, ENABLE_FPECHECK=no)
|
||||
|
||||
if test "$ENABLE_FPECHECK" = "yes"; then
|
||||
AC_DEFINE(FPE_CHECK, 1, [Define to enable FPE checks])
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],
|
||||
[enable debugging (default=no)]),
|
||||
ENABLE_DEBUG=$enableval)
|
||||
|
||||
# Those are only valid for GCC
|
||||
if test "$GCC" = yes; then
|
||||
if test "$ENABLE_DEBUG" = "yes"; then
|
||||
CFLAGS="${CFLAGS} ${FCCFLAGS} -g -Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wstrict-prototypes -Wno-unused-parameter -Wno-cast-qual"
|
||||
AC_DEFINE(DEBUG, 1, [Define to activate debugging message])
|
||||
else
|
||||
CFLAGS="${CFLAGS} ${FCCFLAGS} -O2 -fomit-frame-pointer -funroll-all-loops -finline-functions -Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wstrict-prototypes -Winline -Wno-unused-parameter -Wno-cast-qual"
|
||||
AC_DEFINE(DEBUG, 0, [Define to activate debugging message])
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl Assert that glib and gthread are available
|
||||
PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.6.5 gthread-2.0 >= 2.6.5)
|
||||
AC_SUBST(GLIB_CFLAGS)
|
||||
AC_SUBST(GLIB_LIBS)
|
||||
|
||||
dnl - Check for DBUS support
|
||||
|
||||
AC_ARG_ENABLE(dbus-support, AS_HELP_STRING([--disable-dbus-support],
|
||||
[Do not compile with support for D-Bus (default=auto)]),
|
||||
enable_dbus_support=$enableval, enable_dbus_support="yes")
|
||||
|
||||
if test "x$enable_dbus_support" != "xno"; then
|
||||
PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0.0, DBUS_SUPPORT=1, DBUS_SUPPORT=0)
|
||||
else
|
||||
DBUS_SUPPORT=0
|
||||
fi
|
||||
|
||||
if test "$DBUS_SUPPORT" = "1"; then
|
||||
AC_DEFINE(DBUS_SUPPORT, 1, [Define to enable D-Bus support])
|
||||
fi
|
||||
AM_CONDITIONAL(DBUS_SUPPORT, test "$DBUS_SUPPORT" = "1")
|
||||
AC_SUBST(DBUS_CFLAGS)
|
||||
AC_SUBST(DBUS_LIBS)
|
||||
|
||||
|
||||
dnl Check for libsndfile support
|
||||
|
||||
AC_ARG_ENABLE(libsndfile-support, AS_HELP_STRING([--disable-libsndfile-support],
|
||||
[Do not compile libsndfile support (default=auto)]),
|
||||
enable_libsndfile_support=$enableval, enable_libsndfile_support="yes")
|
||||
|
||||
if test "x$enable_libsndfile_support" != "xno"; then
|
||||
PKG_CHECK_MODULES(LIBSNDFILE, sndfile >= 1.0.0, LIBSNDFILE_SUPPORT=1, LIBSNDFILE_SUPPORT=0)
|
||||
else
|
||||
LIBSNDFILE_SUPPORT=0
|
||||
fi
|
||||
|
||||
if test "$LIBSNDFILE_SUPPORT" = "1"; then
|
||||
PKG_CHECK_MODULES(LIBSNDFILE_VORBIS, sndfile >= 1.0.18, LIBSNDFILE_HASVORBIS=1, LIBSNDFILE_HASVORBIS=0)
|
||||
AC_DEFINE(LIBSNDFILE_SUPPORT, 1, [Define to enable libsndfile support])
|
||||
if test "$LIBSNDFILE_HASVORBIS" = "1"; then
|
||||
AC_DEFINE(LIBSNDFILE_HASVORBIS, 1, [libsndfile has ogg vorbis support])
|
||||
fi
|
||||
else
|
||||
LIBSNDFILE_HASVORBIS=0
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(LIBSNDFILE_SUPPORT, test "$LIBSNDFILE_SUPPORT" = "1")
|
||||
AM_CONDITIONAL(LIBSNDFILE_HASVORBIS, test "$LIBSNDFILE_HASVORBIS" = "1")
|
||||
AC_SUBST(LIBSNDFILE_CFLAGS)
|
||||
AC_SUBST(LIBSNDFILE_LIBS)
|
||||
|
||||
|
||||
dnl
|
||||
dnl Check support for all the drivers
|
||||
dnl
|
||||
|
||||
|
||||
dnl - Sound file support check
|
||||
AUFILE_SUPPORT=0
|
||||
|
||||
AC_ARG_ENABLE(aufile-support,
|
||||
[ --disable-aufile-support Do not compile support for sound file output],
|
||||
enable_aufile_support=no)
|
||||
|
||||
if test "x${enable_aufile_support}" != "xno"; then
|
||||
AUFILE_SUPPORT=1
|
||||
AC_DEFINE(AUFILE_SUPPORT, 1, [Define to activate sound output to files])
|
||||
fi
|
||||
|
||||
|
||||
dnl - Check for PulseAudio support
|
||||
|
||||
AC_ARG_ENABLE(pulse-support, AS_HELP_STRING([--disable-pulse-support],
|
||||
[Do not compile PulseAudio support (default=auto)]),
|
||||
enable_pulse_support=$enableval, enable_pulse_support="yes")
|
||||
|
||||
if test "x$enable_pulse_support" != "xno"; then
|
||||
PKG_CHECK_MODULES(PULSE, libpulse-simple >= 0.9.8, PULSE_SUPPORT=1, PULSE_SUPPORT=0)
|
||||
else
|
||||
PULSE_SUPPORT=0
|
||||
fi
|
||||
|
||||
if test "$PULSE_SUPPORT" = "1"; then
|
||||
AC_DEFINE(PULSE_SUPPORT, 1, [Define to enable PulseAudio driver])
|
||||
fi
|
||||
AM_CONDITIONAL(PULSE_SUPPORT, test "$PULSE_SUPPORT" = "1")
|
||||
AC_SUBST(PULSE_CFLAGS)
|
||||
AC_SUBST(PULSE_LIBS)
|
||||
|
||||
|
||||
dnl - Check support for ALSA
|
||||
|
||||
AC_ARG_ENABLE(alsa-support, AS_HELP_STRING([--disable-alsa-support],
|
||||
[Do not compile ALSA support (default=auto)]),
|
||||
enable_alsa_support=$enableval, enable_alsa_support="yes")
|
||||
|
||||
if test "x$enable_alsa_support" != "xno"; then
|
||||
PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, ALSA_SUPPORT=1, ALSA_SUPPORT=0)
|
||||
else
|
||||
ALSA_SUPPORT=0
|
||||
fi
|
||||
|
||||
if test "$ALSA_SUPPORT" = "1"; then
|
||||
AC_DEFINE(ALSA_SUPPORT, 1, [Define to enable ALSA driver])
|
||||
fi
|
||||
AM_CONDITIONAL(ALSA_SUPPORT, test "$ALSA_SUPPORT" = "1")
|
||||
AC_SUBST(ALSA_CFLAGS)
|
||||
AC_SUBST(ALSA_LIBS)
|
||||
|
||||
|
||||
dnl - Check support for PortAudio
|
||||
|
||||
AC_ARG_ENABLE(portaudio-support, AS_HELP_STRING([--disable-portaudio-support],
|
||||
[Do not compile PortAudio support (default=auto)]),
|
||||
enable_portaudio_support=$enableval, enable_portaudio_support="yes")
|
||||
|
||||
if test "x$enable_portaudio_support" != "xno"; then
|
||||
PKG_CHECK_MODULES(PORTAUDIO, portaudio-2.0 >= 19, PORTAUDIO_SUPPORT=1,
|
||||
PORTAUDIO_SUPPORT=0)
|
||||
else
|
||||
PORTAUDIO_SUPPORT=0
|
||||
fi
|
||||
|
||||
if test "$PORTAUDIO_SUPPORT" = "1"; then
|
||||
AC_DEFINE(PORTAUDIO_SUPPORT, 1, [Define to enable PortAudio driver])
|
||||
fi
|
||||
AM_CONDITIONAL(PORTAUDIO_SUPPORT, test "$PORTAUDIO_SUPPORT" = "1")
|
||||
AC_SUBST(PORTAUDIO_CFLAGS)
|
||||
AC_SUBST(PORTAUDIO_LIBS)
|
||||
|
||||
|
||||
dnl - Check support for OSS audio
|
||||
AC_OSS_AUDIO
|
||||
AM_CONDITIONAL(OSS_SUPPORT, test "$OSS_SUPPORT" = "1")
|
||||
|
||||
|
||||
dnl - Check support for MidiShare
|
||||
AC_MIDISHARE
|
||||
|
||||
|
||||
dnl - Check support for JACK
|
||||
AC_ARG_ENABLE(jack-support, AS_HELP_STRING([--disable-jack-support],
|
||||
[disable JACK support (default=auto)]),
|
||||
enable_jack=$enableval, enable_jack="yes")
|
||||
|
||||
if test "x$enable_jack" != "xno"; then
|
||||
PKG_CHECK_MODULES(JACK, jack, JACK_SUPPORT=1, JACK_SUPPORT=0)
|
||||
else
|
||||
JACK_SUPPORT=0
|
||||
fi
|
||||
|
||||
if test "$JACK_SUPPORT" = "1"; then
|
||||
AC_DEFINE(JACK_SUPPORT, 1, [Define to enable JACK driver])
|
||||
fi
|
||||
AM_CONDITIONAL(JACK_SUPPORT, test "$JACK_SUPPORT" = "1")
|
||||
AC_SUBST(JACK_CFLAGS)
|
||||
AC_SUBST(JACK_LIBS)
|
||||
|
||||
|
||||
dnl
|
||||
dnl - Check support for CoreAudio
|
||||
dnl
|
||||
AC_CHECK_HEADER(CoreAudio/AudioHardware.h, COREAUDIO_FOUND="yes",
|
||||
COREAUDIO_FOUND="no")
|
||||
AC_ARG_ENABLE(coreaudio, AS_HELP_STRING([--disable-coreaudio],
|
||||
[disable CoreAudio support (default=auto)]),
|
||||
enable_coreaudio=$enableval, enable_coreaudio="yes")
|
||||
|
||||
COREAUDIO_SUPPORT=0
|
||||
if test "$enable_coreaudio" = "yes" -a "$COREAUDIO_FOUND" = "yes"; then
|
||||
AC_DEFINE(COREAUDIO_SUPPORT, 1, [whether or not we are supporting CoreAudio])
|
||||
COREAUDIO_SUPPORT=1
|
||||
COREAUDIO_LIBS="-Wl,-framework,CoreAudio"
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(COREAUDIO_SUPPORT, test "$COREAUDIO_SUPPORT" = "1")
|
||||
AC_SUBST(COREAUDIO_LIBS)
|
||||
|
||||
dnl
|
||||
dnl - Check support for CoreMIDI
|
||||
dnl
|
||||
AC_CHECK_HEADER(CoreMIDI/MIDIServices.h, COREMIDI_FOUND="yes",
|
||||
COREMIDI_FOUND="no")
|
||||
AC_ARG_ENABLE(coremidi, AS_HELP_STRING([--disable-coremidi],
|
||||
[disable CoreMIDI support (default=auto)]),
|
||||
enable_coremidi=$enableval, enable_coremidi="yes")
|
||||
|
||||
COREMIDI_SUPPORT=0
|
||||
if test "$enable_coremidi" = "yes" -a "$COREMIDI_FOUND" = "yes"; then
|
||||
AC_DEFINE(COREMIDI_SUPPORT, 1, [whether or not we are supporting CoreMIDI])
|
||||
COREMIDI_SUPPORT=1
|
||||
COREMIDI_LIBS="-Wl,-framework,CoreMIDI"
|
||||
fi
|
||||
AM_CONDITIONAL(COREMIDI_SUPPORT, test "$COREMIDI_SUPPORT" = "1")
|
||||
AC_SUBST(COREMIDI_LIBS)
|
||||
|
||||
dnl
|
||||
dnl - Check support for DART
|
||||
dnl
|
||||
AC_CHECK_HEADER(os2me.h, DART_FOUND="yes", DART_FOUND="no", -)
|
||||
AC_ARG_ENABLE(dart, AS_HELP_STRING([--disable-dart],
|
||||
[disable DART support (default=auto)]),
|
||||
enable_dart=$enableval, enable_dart="yes")
|
||||
|
||||
DART_SUPPORT=0
|
||||
if test "$enable_dart" = "yes" -a "$DART_FOUND" = "yes"; then
|
||||
AC_DEFINE(DART_SUPPORT, 1, [whether or not we are supporting DART])
|
||||
DART_SUPPORT=1
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(DART_SUPPORT, test "$DART_SUPPORT" = "1")
|
||||
AC_SUBST(DART_CFLAGS)
|
||||
AC_SUBST(DART_LIBS)
|
||||
|
||||
dnl
|
||||
dnl Check for readline support (Josh Green 2003-06-10)
|
||||
dnl
|
||||
AC_ARG_WITH(readline,
|
||||
[ --without-readline disable readline lib line editing (default=auto)],
|
||||
with_readline=$withval, with_readline="yes")
|
||||
|
||||
if test "$with_readline" != "no"; then
|
||||
AM_PATH_READLINE(FOUND_READLINE=1, FOUND_READLINE=0)
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl The following script checks for ncurses support.
|
||||
dnl I copied and adapted it from DataDisplayDebugger's (DDD)
|
||||
dnl configure.in, written by Andreas Zeller <zeller@gnu.org>.
|
||||
dnl
|
||||
|
||||
dnl Look for the tgetent() function - either in libtermcap, libcurses
|
||||
dnl
|
||||
dnl On FreeBSD systems, `-lmytinfo' is preferred to `-lncurses'.
|
||||
dnl Reported by Vincenzo Capuano <vcapuano@esoc.esa.de>
|
||||
dnl
|
||||
dnl On Linux ELF systems, `-lncurses' is preferred to `-ltermcap'.
|
||||
dnl Reported by jdassen@wi.leidenuniv.nl (J.H.M. Dassen)
|
||||
dnl
|
||||
WITH_READLINE=0
|
||||
have_termcap=false
|
||||
if test "${FOUND_READLINE}" = "1"; then
|
||||
_termlib="mytinfo ncurses curses termcap terminfo termlib"
|
||||
for termlib in ${_termlib}; do
|
||||
AC_CHECK_LIB(${termlib}, tgetent,
|
||||
[READLINE_LIBS="$READLINE_LIBS -l${termlib}"; have_termcap=true; break])
|
||||
done
|
||||
fi
|
||||
|
||||
if test "x${have_termcap}" = "xtrue"; then
|
||||
AC_DEFINE(WITH_READLINE, 1, [Define to use the readline library for line editing])
|
||||
WITH_READLINE=1
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl lash stuff
|
||||
dnl
|
||||
AC_ARG_ENABLE(lash, AS_HELP_STRING([--disable-lash],
|
||||
[disable LASH support (default=auto)]),
|
||||
fluid_enable_lash=$enableval,
|
||||
fluid_enable_lash="yes")
|
||||
|
||||
if test "$fluid_enable_lash" = "yes"; then
|
||||
PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.3, LASH_FOUND="yes", LASH_FOUND="no")
|
||||
AC_SUBST(LASH_CFLAGS)
|
||||
AC_SUBST(LASH_LIBS)
|
||||
|
||||
if test "$LASH_FOUND" = "yes"; then
|
||||
AC_DEFINE(HAVE_LASH, 1, [whether or not we are supporting lash])
|
||||
fi
|
||||
else
|
||||
LASH_FOUND="no"
|
||||
fi
|
||||
AM_CONDITIONAL(LASH_SUPPORT, test "$LASH_FOUND" = "yes")
|
||||
|
||||
dnl
|
||||
dnl ladcca stuff (depricated by lash and will be removed in the future)
|
||||
dnl
|
||||
AC_ARG_ENABLE(ladcca, AS_HELP_STRING([--disable-ladcca],
|
||||
[disable LADCCA support (default=auto)]),
|
||||
fluid_enable_ladcca=$enableval,
|
||||
fluid_enable_ladcca="yes")
|
||||
|
||||
if test "$fluid_enable_ladcca" = "yes" -a "$LASH_FOUND" = "no"; then
|
||||
PKG_CHECK_MODULES(LADCCA, ladcca-1.0 >= 0.3, LADCCA_FOUND="yes", LADCCA_FOUND="no")
|
||||
AC_SUBST(LADCCA_CFLAGS)
|
||||
AC_SUBST(LADCCA_LIBS)
|
||||
|
||||
if test "$LADCCA_FOUND" = "yes"; then
|
||||
AC_DEFINE(HAVE_LADCCA, 1, [whether or not we are supporting ladcca])
|
||||
fi
|
||||
else
|
||||
LADCCA_FOUND="no"
|
||||
fi
|
||||
AM_CONDITIONAL(LADCCA_SUPPORT, test "$LADCCA_FOUND" = "yes")
|
||||
|
||||
#Checking for IPV6 support
|
||||
AC_MSG_CHECKING(for IPv6 support)
|
||||
AC_ARG_ENABLE(ipv6, AS_HELP_STRING([--enable-ipv6],
|
||||
[Enable IPV6 support (default=auto)]),
|
||||
ENABLE_IPV6=$enableval,
|
||||
ENABLE_IPV6=yes)
|
||||
if test "$ENABLE_IPV6" = "yes" ; then
|
||||
AC_CACHE_VAL(ac_cv_ipv6,
|
||||
AC_TRY_RUN([
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <stdlib.h>
|
||||
main()
|
||||
{
|
||||
int fd;
|
||||
struct sockaddr_in6 foo;
|
||||
fd = socket(AF_INET6, SOCK_STREAM, 0);
|
||||
exit(fd >= 0 ? 0 : 1);
|
||||
}],
|
||||
ac_cv_ipv6=yes,
|
||||
ac_cv_ipv6=no,
|
||||
ac_cv_ipv6=yes))
|
||||
AC_MSG_RESULT($ac_cv_ipv6)
|
||||
if test $ac_cv_ipv6 = yes ; then
|
||||
AC_DEFINE(IPV6,1,[check if system supports IPV6])
|
||||
else
|
||||
ENABLE_IPV6="no"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
AC_OUTPUT([
|
||||
Makefile
|
||||
cmake_admin/Makefile
|
||||
src/Makefile
|
||||
src/config_win32.h
|
||||
doc/Makefile
|
||||
include/Makefile
|
||||
include/fluidsynth/Makefile
|
||||
include/fluidsynth/version.h
|
||||
fluidsynth.pc
|
||||
fluidsynth.spec])
|
||||
|
||||
echo
|
||||
echo "***************************************************************"
|
||||
echo "The autotools build system is deprecated and might be removed "
|
||||
echo "in a future version. Please use the CMake build system instead."
|
||||
echo "***************************************************************"
|
||||
echo "Summary:"
|
||||
|
||||
if test "${LIBSNDFILE_SUPPORT}" = "1"; then
|
||||
if test "${LIBSNDFILE_HASVORBIS}" = "1"; then
|
||||
echo "libsndfile: yes (with ogg vorbis support)"
|
||||
else
|
||||
echo "libsndfile: yes"
|
||||
fi
|
||||
else
|
||||
echo "libsndfile: no (raw audio file rendering only)"
|
||||
fi
|
||||
|
||||
if test "${DBUS_SUPPORT}" = "1"; then
|
||||
echo "D-Bus: yes"
|
||||
else
|
||||
echo "D-Bus: no"
|
||||
fi
|
||||
|
||||
if test "${PULSE_SUPPORT}" = "1"; then
|
||||
echo "PulseAudio: yes"
|
||||
else
|
||||
echo "PulseAudio: no"
|
||||
fi
|
||||
|
||||
if test "${JACK_SUPPORT}" = "1"; then
|
||||
echo "JACK: yes"
|
||||
else
|
||||
echo "JACK: no"
|
||||
fi
|
||||
|
||||
if test "${ALSA_SUPPORT}" = "1"; then
|
||||
echo "ALSA: yes"
|
||||
else
|
||||
echo "ALSA: no"
|
||||
fi
|
||||
|
||||
if test "${PORTAUDIO_SUPPORT}" = "1"; then
|
||||
echo "PortAudio: yes"
|
||||
else
|
||||
echo "PortAudio: no"
|
||||
fi
|
||||
|
||||
if test "${OSS_SUPPORT}" = "1"; then
|
||||
echo "OSS: yes"
|
||||
else
|
||||
echo "OSS: no"
|
||||
fi
|
||||
|
||||
if test "${MIDISHARE_SUPPORT}" = "1"; then
|
||||
echo "MidiShare: yes"
|
||||
else
|
||||
echo "MidiShare: no"
|
||||
fi
|
||||
|
||||
if test "${COREAUDIO_SUPPORT}" = "1"; then
|
||||
echo "CoreAudio: yes"
|
||||
else
|
||||
echo "CoreAudio: no"
|
||||
fi
|
||||
|
||||
if test "${COREMIDI_SUPPORT}" = "1"; then
|
||||
echo "CoreMIDI: yes"
|
||||
else
|
||||
echo "CoreMIDI: no"
|
||||
fi
|
||||
|
||||
if test "${ENABLE_LADSPA}" = "yes"; then
|
||||
echo "LADSPA support: yes"
|
||||
else
|
||||
echo "LADSPA support: no"
|
||||
fi
|
||||
|
||||
if test "${ENABLE_IPV6}" = "yes"; then
|
||||
echo "IPV6 support: yes"
|
||||
else
|
||||
echo "IPV6 support: no"
|
||||
fi
|
||||
if test "${LASH_FOUND}" = "yes"; then
|
||||
echo "LASH support: yes (NOTE: GPL library)"
|
||||
else
|
||||
echo "LASH support: no"
|
||||
fi
|
||||
|
||||
if test "${LADCCA_FOUND}" = "yes"; then
|
||||
echo "LADCCA support: yes (NOTE: GPL library)"
|
||||
else
|
||||
echo "LADCCA support: no"
|
||||
fi
|
||||
|
||||
if test "${DART_SUPPORT}" = "1"; then
|
||||
echo "OS/2 DART support: yes"
|
||||
else
|
||||
echo "OS/2 DART support: no"
|
||||
fi
|
||||
|
||||
if test "${AUFILE_SUPPORT}" = "1"; then
|
||||
echo "Audio to file driver: yes"
|
||||
else
|
||||
echo "Audio to file driver: no"
|
||||
fi
|
||||
|
||||
if test "$WITH_READLINE" = "1"; then
|
||||
echo "Readline: yes (NOTE: GPL library)"
|
||||
else
|
||||
echo "Readline: no"
|
||||
fi
|
||||
|
||||
if test "${profiling_flag}" = "yes"; then
|
||||
echo "Profiling: yes"
|
||||
else
|
||||
echo "Profiling: no"
|
||||
fi
|
||||
|
||||
if test "${ENABLE_DEBUG}" = "yes"; then
|
||||
echo "Debug: yes"
|
||||
else
|
||||
echo "Debug: no"
|
||||
fi
|
||||
|
||||
if test "${ENABLE_TRAPONFPE}" = "yes"; then
|
||||
echo "Trap on FPE (debug): yes"
|
||||
else
|
||||
echo "Trap on FPE (debug): no"
|
||||
fi
|
||||
|
||||
if test "${ENABLE_FPECHECK}" = "yes"; then
|
||||
echo "Check FPE (debug): yes"
|
||||
else
|
||||
echo "Check FPE (debug): no"
|
||||
fi
|
||||
|
||||
echo "***************************************************************"
|
||||
echo
|
|
@ -1,40 +0,0 @@
|
|||
# install the man pages and include in distribution
|
||||
man_MANS = fluidsynth.1
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt \
|
||||
Doxyfile.cmake \
|
||||
$(man_MANS) \
|
||||
Doxyfile \
|
||||
example.c \
|
||||
fluidsynth-v10-devdoc.xml \
|
||||
fluidsynth-v11-devdoc.txt \
|
||||
fluidsynth_arpeggio.c \
|
||||
fluidsynth_fx.c \
|
||||
fluidsynth_metronome.c \
|
||||
fluidsynth_simple.c \
|
||||
xtrafluid.txt \
|
||||
FluidSynth-LADSPA.pdf
|
||||
|
||||
docbook_docs = fluidsynth-v10-devdoc.xml
|
||||
|
||||
DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
|
||||
|
||||
# Run "make update-docs" to update developer doc and doxygen reference
|
||||
update-docs: html/index.html doxygen
|
||||
|
||||
# The new XML DocBook way:
|
||||
html/index.html: $(docbook_docs)
|
||||
-rm -rf html
|
||||
$(mkinstalldirs) html
|
||||
xsltproc -o html/ --catalogs $(DOCBOOK_STYLESHEET) $<
|
||||
|
||||
doc-clean:
|
||||
-rm -rf html
|
||||
|
||||
maintainer-clean-local: doc-clean
|
||||
|
||||
doxygen: Doxyfile
|
||||
doxygen Doxyfile
|
||||
|
||||
# Update docs for distribution
|
||||
dist-hook: update-docs
|
|
@ -1,6 +0,0 @@
|
|||
|
||||
SUBDIRS = fluidsynth
|
||||
|
||||
include_HEADERS = fluidsynth.h
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
|
@ -1,22 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pkginclude_HEADERS = types.h \
|
||||
settings.h \
|
||||
synth.h \
|
||||
event.h \
|
||||
seq.h \
|
||||
seqbind.h \
|
||||
shell.h \
|
||||
sfont.h \
|
||||
ramsfont.h \
|
||||
audio.h \
|
||||
midi.h \
|
||||
log.h \
|
||||
misc.h \
|
||||
version.h \
|
||||
voice.h \
|
||||
mod.h \
|
||||
gen.h
|
||||
|
||||
EXTRA_DIST = version.h.in CMakeLists.txt
|
||||
DISTCLEANFILES = version.h
|
251
install-sh
251
install-sh
|
@ -1,251 +0,0 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# install - install a program, script, or datafile
|
||||
# This comes from X11R5 (mit/util/scripts/install.sh).
|
||||
#
|
||||
# Copyright 1991 by the Massachusetts Institute of Technology
|
||||
#
|
||||
# Permission to use, copy, modify, distribute, and sell this software and its
|
||||
# documentation for any purpose is hereby granted without fee, provided that
|
||||
# the above copyright notice appear in all copies and that both that
|
||||
# copyright notice and this permission notice appear in supporting
|
||||
# documentation, and that the name of M.I.T. not be used in advertising or
|
||||
# publicity pertaining to distribution of the software without specific,
|
||||
# written prior permission. M.I.T. makes no representations about the
|
||||
# suitability of this software for any purpose. It is provided "as is"
|
||||
# without express or implied warranty.
|
||||
#
|
||||
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||
# `make' implicit rules from creating a file called install from it
|
||||
# when there is no Makefile.
|
||||
#
|
||||
# This script is compatible with the BSD install script, but was written
|
||||
# from scratch. It can only install one file at a time, a restriction
|
||||
# shared with many OS's install programs.
|
||||
|
||||
|
||||
# set DOITPROG to echo to test this script
|
||||
|
||||
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||
doit="${DOITPROG-}"
|
||||
|
||||
|
||||
# put in absolute paths if you don't have them in your path; or use env. vars.
|
||||
|
||||
mvprog="${MVPROG-mv}"
|
||||
cpprog="${CPPROG-cp}"
|
||||
chmodprog="${CHMODPROG-chmod}"
|
||||
chownprog="${CHOWNPROG-chown}"
|
||||
chgrpprog="${CHGRPPROG-chgrp}"
|
||||
stripprog="${STRIPPROG-strip}"
|
||||
rmprog="${RMPROG-rm}"
|
||||
mkdirprog="${MKDIRPROG-mkdir}"
|
||||
|
||||
transformbasename=""
|
||||
transform_arg=""
|
||||
instcmd="$mvprog"
|
||||
chmodcmd="$chmodprog 0755"
|
||||
chowncmd=""
|
||||
chgrpcmd=""
|
||||
stripcmd=""
|
||||
rmcmd="$rmprog -f"
|
||||
mvcmd="$mvprog"
|
||||
src=""
|
||||
dst=""
|
||||
dir_arg=""
|
||||
|
||||
while [ x"$1" != x ]; do
|
||||
case $1 in
|
||||
-c) instcmd="$cpprog"
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-d) dir_arg=true
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-m) chmodcmd="$chmodprog $2"
|
||||
shift
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-o) chowncmd="$chownprog $2"
|
||||
shift
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-g) chgrpcmd="$chgrpprog $2"
|
||||
shift
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-s) stripcmd="$stripprog"
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-t=*) transformarg=`echo $1 | sed 's/-t=//'`
|
||||
shift
|
||||
continue;;
|
||||
|
||||
-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
|
||||
shift
|
||||
continue;;
|
||||
|
||||
*) if [ x"$src" = x ]
|
||||
then
|
||||
src=$1
|
||||
else
|
||||
# this colon is to work around a 386BSD /bin/sh bug
|
||||
:
|
||||
dst=$1
|
||||
fi
|
||||
shift
|
||||
continue;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ x"$src" = x ]
|
||||
then
|
||||
echo "install: no input file specified"
|
||||
exit 1
|
||||
else
|
||||
:
|
||||
fi
|
||||
|
||||
if [ x"$dir_arg" != x ]; then
|
||||
dst=$src
|
||||
src=""
|
||||
|
||||
if [ -d $dst ]; then
|
||||
instcmd=:
|
||||
chmodcmd=""
|
||||
else
|
||||
instcmd=$mkdirprog
|
||||
fi
|
||||
else
|
||||
|
||||
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
|
||||
# might cause directories to be created, which would be especially bad
|
||||
# if $src (and thus $dsttmp) contains '*'.
|
||||
|
||||
if [ -f "$src" ] || [ -d "$src" ]
|
||||
then
|
||||
:
|
||||
else
|
||||
echo "install: $src does not exist"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ x"$dst" = x ]
|
||||
then
|
||||
echo "install: no destination specified"
|
||||
exit 1
|
||||
else
|
||||
:
|
||||
fi
|
||||
|
||||
# If destination is a directory, append the input filename; if your system
|
||||
# does not like double slashes in filenames, you may need to add some logic
|
||||
|
||||
if [ -d $dst ]
|
||||
then
|
||||
dst="$dst"/`basename $src`
|
||||
else
|
||||
:
|
||||
fi
|
||||
fi
|
||||
|
||||
## this sed command emulates the dirname command
|
||||
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
|
||||
|
||||
# Make sure that the destination directory exists.
|
||||
# this part is taken from Noah Friedman's mkinstalldirs script
|
||||
|
||||
# Skip lots of stat calls in the usual case.
|
||||
if [ ! -d "$dstdir" ]; then
|
||||
defaultIFS='
|
||||
'
|
||||
IFS="${IFS-${defaultIFS}}"
|
||||
|
||||
oIFS="${IFS}"
|
||||
# Some sh's can't handle IFS=/ for some reason.
|
||||
IFS='%'
|
||||
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
|
||||
IFS="${oIFS}"
|
||||
|
||||
pathcomp=''
|
||||
|
||||
while [ $# -ne 0 ] ; do
|
||||
pathcomp="${pathcomp}${1}"
|
||||
shift
|
||||
|
||||
if [ ! -d "${pathcomp}" ] ;
|
||||
then
|
||||
$mkdirprog "${pathcomp}"
|
||||
else
|
||||
:
|
||||
fi
|
||||
|
||||
pathcomp="${pathcomp}/"
|
||||
done
|
||||
fi
|
||||
|
||||
if [ x"$dir_arg" != x ]
|
||||
then
|
||||
$doit $instcmd $dst &&
|
||||
|
||||
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else : ; fi &&
|
||||
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else : ; fi &&
|
||||
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else : ; fi &&
|
||||
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else : ; fi
|
||||
else
|
||||
|
||||
# If we're going to rename the final executable, determine the name now.
|
||||
|
||||
if [ x"$transformarg" = x ]
|
||||
then
|
||||
dstfile=`basename $dst`
|
||||
else
|
||||
dstfile=`basename $dst $transformbasename |
|
||||
sed $transformarg`$transformbasename
|
||||
fi
|
||||
|
||||
# don't allow the sed command to completely eliminate the filename
|
||||
|
||||
if [ x"$dstfile" = x ]
|
||||
then
|
||||
dstfile=`basename $dst`
|
||||
else
|
||||
:
|
||||
fi
|
||||
|
||||
# Make a temp file name in the proper directory.
|
||||
|
||||
dsttmp=$dstdir/#inst.$$#
|
||||
|
||||
# Move or copy the file name to the temp name
|
||||
|
||||
$doit $instcmd $src $dsttmp &&
|
||||
|
||||
trap "rm -f ${dsttmp}" 0 &&
|
||||
|
||||
# and set any options; do chmod last to preserve setuid bits
|
||||
|
||||
# If any of these fail, we abort the whole thing. If we want to
|
||||
# ignore errors from any of these, just make sure not to ignore
|
||||
# errors from the above "$doit $instcmd $src $dsttmp" command.
|
||||
|
||||
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else :;fi &&
|
||||
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else :;fi &&
|
||||
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else :;fi &&
|
||||
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else :;fi &&
|
||||
|
||||
# Now rename the file to the real destination.
|
||||
|
||||
$doit $rmcmd -f $dstdir/$dstfile &&
|
||||
$doit $mvcmd $dsttmp $dstdir/$dstfile
|
||||
|
||||
fi &&
|
||||
|
||||
|
||||
exit 0
|
336
missing
336
missing
|
@ -1,336 +0,0 @@
|
|||
#! /bin/sh
|
||||
# Common stub for a few missing GNU programs while installing.
|
||||
# Copyright (C) 1996, 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||
# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
if test $# -eq 0; then
|
||||
echo 1>&2 "Try \`$0 --help' for more information"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
run=:
|
||||
|
||||
# In the cases where this matters, `missing' is being run in the
|
||||
# srcdir already.
|
||||
if test -f configure.ac; then
|
||||
configure_ac=configure.ac
|
||||
else
|
||||
configure_ac=configure.in
|
||||
fi
|
||||
|
||||
case "$1" in
|
||||
--run)
|
||||
# Try to run requested program, and just exit if it succeeds.
|
||||
run=
|
||||
shift
|
||||
"$@" && exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
# If it does not exist, or fails to run (possibly an outdated version),
|
||||
# try to emulate it.
|
||||
case "$1" in
|
||||
|
||||
-h|--h|--he|--hel|--help)
|
||||
echo "\
|
||||
$0 [OPTION]... PROGRAM [ARGUMENT]...
|
||||
|
||||
Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
|
||||
error status if there is no known handling for PROGRAM.
|
||||
|
||||
Options:
|
||||
-h, --help display this help and exit
|
||||
-v, --version output version information and exit
|
||||
--run try to run the given command, and emulate it if it fails
|
||||
|
||||
Supported PROGRAM values:
|
||||
aclocal touch file \`aclocal.m4'
|
||||
autoconf touch file \`configure'
|
||||
autoheader touch file \`config.h.in'
|
||||
automake touch all \`Makefile.in' files
|
||||
bison create \`y.tab.[ch]', if possible, from existing .[ch]
|
||||
flex create \`lex.yy.c', if possible, from existing .c
|
||||
help2man touch the output file
|
||||
lex create \`lex.yy.c', if possible, from existing .c
|
||||
makeinfo touch the output file
|
||||
tar try tar, gnutar, gtar, then tar without non-portable flags
|
||||
yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
|
||||
;;
|
||||
|
||||
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
||||
echo "missing 0.4 - GNU automake"
|
||||
;;
|
||||
|
||||
-*)
|
||||
echo 1>&2 "$0: Unknown \`$1' option"
|
||||
echo 1>&2 "Try \`$0 --help' for more information"
|
||||
exit 1
|
||||
;;
|
||||
|
||||
aclocal*)
|
||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||
# We have it, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified \`acinclude.m4' or \`${configure_ac}'. You might want
|
||||
to install the \`Automake' and \`Perl' packages. Grab them from
|
||||
any GNU archive site."
|
||||
touch aclocal.m4
|
||||
;;
|
||||
|
||||
autoconf)
|
||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||
# We have it, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified \`${configure_ac}'. You might want to install the
|
||||
\`Autoconf' and \`GNU m4' packages. Grab them from any GNU
|
||||
archive site."
|
||||
touch configure
|
||||
;;
|
||||
|
||||
autoheader)
|
||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||
# We have it, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified \`acconfig.h' or \`${configure_ac}'. You might want
|
||||
to install the \`Autoconf' and \`GNU m4' packages. Grab them
|
||||
from any GNU archive site."
|
||||
files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
|
||||
test -z "$files" && files="config.h"
|
||||
touch_files=
|
||||
for f in $files; do
|
||||
case "$f" in
|
||||
*:*) touch_files="$touch_files "`echo "$f" |
|
||||
sed -e 's/^[^:]*://' -e 's/:.*//'`;;
|
||||
*) touch_files="$touch_files $f.in";;
|
||||
esac
|
||||
done
|
||||
touch $touch_files
|
||||
;;
|
||||
|
||||
automake*)
|
||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||
# We have it, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
|
||||
You might want to install the \`Automake' and \`Perl' packages.
|
||||
Grab them from any GNU archive site."
|
||||
find . -type f -name Makefile.am -print |
|
||||
sed 's/\.am$/.in/' |
|
||||
while read f; do touch "$f"; done
|
||||
;;
|
||||
|
||||
autom4te)
|
||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||
# We have it, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is needed, and you do not seem to have it handy on your
|
||||
system. You might have modified some files without having the
|
||||
proper tools for further handling them.
|
||||
You can get \`$1Help2man' as part of \`Autoconf' from any GNU
|
||||
archive site."
|
||||
|
||||
file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
|
||||
test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
|
||||
if test -f "$file"; then
|
||||
touch $file
|
||||
else
|
||||
test -z "$file" || exec >$file
|
||||
echo "#! /bin/sh"
|
||||
echo "# Created by GNU Automake missing as a replacement of"
|
||||
echo "# $ $@"
|
||||
echo "exit 0"
|
||||
chmod +x $file
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
||||
bison|yacc)
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified a \`.y' file. You may need the \`Bison' package
|
||||
in order for those modifications to take effect. You can get
|
||||
\`Bison' from any GNU archive site."
|
||||
rm -f y.tab.c y.tab.h
|
||||
if [ $# -ne 1 ]; then
|
||||
eval LASTARG="\${$#}"
|
||||
case "$LASTARG" in
|
||||
*.y)
|
||||
SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
|
||||
if [ -f "$SRCFILE" ]; then
|
||||
cp "$SRCFILE" y.tab.c
|
||||
fi
|
||||
SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
|
||||
if [ -f "$SRCFILE" ]; then
|
||||
cp "$SRCFILE" y.tab.h
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
if [ ! -f y.tab.h ]; then
|
||||
echo >y.tab.h
|
||||
fi
|
||||
if [ ! -f y.tab.c ]; then
|
||||
echo 'main() { return 0; }' >y.tab.c
|
||||
fi
|
||||
;;
|
||||
|
||||
lex|flex)
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified a \`.l' file. You may need the \`Flex' package
|
||||
in order for those modifications to take effect. You can get
|
||||
\`Flex' from any GNU archive site."
|
||||
rm -f lex.yy.c
|
||||
if [ $# -ne 1 ]; then
|
||||
eval LASTARG="\${$#}"
|
||||
case "$LASTARG" in
|
||||
*.l)
|
||||
SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
|
||||
if [ -f "$SRCFILE" ]; then
|
||||
cp "$SRCFILE" lex.yy.c
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
if [ ! -f lex.yy.c ]; then
|
||||
echo 'main() { return 0; }' >lex.yy.c
|
||||
fi
|
||||
;;
|
||||
|
||||
help2man)
|
||||
if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
|
||||
# We have it, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified a dependency of a manual page. You may need the
|
||||
\`Help2man' package in order for those modifications to take
|
||||
effect. You can get \`Help2man' from any GNU archive site."
|
||||
|
||||
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
||||
if test -z "$file"; then
|
||||
file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
|
||||
fi
|
||||
if [ -f "$file" ]; then
|
||||
touch $file
|
||||
else
|
||||
test -z "$file" || exec >$file
|
||||
echo ".ab help2man is required to generate this page"
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
||||
makeinfo)
|
||||
if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then
|
||||
# We have makeinfo, but it failed.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is missing on your system. You should only need it if
|
||||
you modified a \`.texi' or \`.texinfo' file, or any other file
|
||||
indirectly affecting the aspect of the manual. The spurious
|
||||
call might also be the consequence of using a buggy \`make' (AIX,
|
||||
DU, IRIX). You might want to install the \`Texinfo' package or
|
||||
the \`GNU make' package. Grab either from any GNU archive site."
|
||||
file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
|
||||
if test -z "$file"; then
|
||||
file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
|
||||
file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
|
||||
fi
|
||||
touch $file
|
||||
;;
|
||||
|
||||
tar)
|
||||
shift
|
||||
if test -n "$run"; then
|
||||
echo 1>&2 "ERROR: \`tar' requires --run"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# We have already tried tar in the generic part.
|
||||
# Look for gnutar/gtar before invocation to avoid ugly error
|
||||
# messages.
|
||||
if (gnutar --version > /dev/null 2>&1); then
|
||||
gnutar "$@" && exit 0
|
||||
fi
|
||||
if (gtar --version > /dev/null 2>&1); then
|
||||
gtar "$@" && exit 0
|
||||
fi
|
||||
firstarg="$1"
|
||||
if shift; then
|
||||
case "$firstarg" in
|
||||
*o*)
|
||||
firstarg=`echo "$firstarg" | sed s/o//`
|
||||
tar "$firstarg" "$@" && exit 0
|
||||
;;
|
||||
esac
|
||||
case "$firstarg" in
|
||||
*h*)
|
||||
firstarg=`echo "$firstarg" | sed s/h//`
|
||||
tar "$firstarg" "$@" && exit 0
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
echo 1>&2 "\
|
||||
WARNING: I can't seem to be able to run \`tar' with the given arguments.
|
||||
You may want to install GNU tar or Free paxutils, or check the
|
||||
command line arguments."
|
||||
exit 1
|
||||
;;
|
||||
|
||||
*)
|
||||
echo 1>&2 "\
|
||||
WARNING: \`$1' is needed, and you do not seem to have it handy on your
|
||||
system. You might have modified some files without having the
|
||||
proper tools for further handling them. Check the \`README' file,
|
||||
it often tells you about the needed prerequirements for installing
|
||||
this package. You may also peek at any GNU archive site, in case
|
||||
some other package would contain this missing \`$1' program."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
|
@ -1,99 +0,0 @@
|
|||
#! /bin/sh
|
||||
# mkinstalldirs --- make directory hierarchy
|
||||
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
|
||||
# Created: 1993-05-16
|
||||
# Public domain
|
||||
|
||||
errstatus=0
|
||||
dirmode=""
|
||||
|
||||
usage="\
|
||||
Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
|
||||
|
||||
# process command line arguments
|
||||
while test $# -gt 0 ; do
|
||||
case "${1}" in
|
||||
-h | --help | --h* ) # -h for help
|
||||
echo "${usage}" 1>&2; exit 0 ;;
|
||||
-m ) # -m PERM arg
|
||||
shift
|
||||
test $# -eq 0 && { echo "${usage}" 1>&2; exit 1; }
|
||||
dirmode="${1}"
|
||||
shift ;;
|
||||
-- ) shift; break ;; # stop option processing
|
||||
-* ) echo "${usage}" 1>&2; exit 1 ;; # unknown option
|
||||
* ) break ;; # first non-opt arg
|
||||
esac
|
||||
done
|
||||
|
||||
for file
|
||||
do
|
||||
if test -d "$file"; then
|
||||
shift
|
||||
else
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
case $# in
|
||||
0) exit 0 ;;
|
||||
esac
|
||||
|
||||
case $dirmode in
|
||||
'')
|
||||
if mkdir -p -- . 2>/dev/null; then
|
||||
echo "mkdir -p -- $*"
|
||||
exec mkdir -p -- "$@"
|
||||
fi ;;
|
||||
*)
|
||||
if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
|
||||
echo "mkdir -m $dirmode -p -- $*"
|
||||
exec mkdir -m "$dirmode" -p -- "$@"
|
||||
fi ;;
|
||||
esac
|
||||
|
||||
for file
|
||||
do
|
||||
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
|
||||
shift
|
||||
|
||||
pathcomp=
|
||||
for d
|
||||
do
|
||||
pathcomp="$pathcomp$d"
|
||||
case "$pathcomp" in
|
||||
-* ) pathcomp=./$pathcomp ;;
|
||||
esac
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
echo "mkdir $pathcomp"
|
||||
|
||||
mkdir "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
errstatus=$lasterr
|
||||
else
|
||||
if test ! -z "$dirmode"; then
|
||||
echo "chmod $dirmode $pathcomp"
|
||||
|
||||
lasterr=""
|
||||
chmod "$dirmode" "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -z "$lasterr"; then
|
||||
errstatus=$lasterr
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
pathcomp="$pathcomp/"
|
||||
done
|
||||
done
|
||||
|
||||
exit $errstatus
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 3
|
||||
# End:
|
||||
# mkinstalldirs ends here
|
198
src/Makefile.am
198
src/Makefile.am
|
@ -1,198 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AUTOMAKE_OPTIONS = subdir-objects
|
||||
|
||||
# Tests for optional drivers
|
||||
|
||||
if PULSE_SUPPORT
|
||||
fluid_pulse = drivers/fluid_pulse.c
|
||||
endif
|
||||
|
||||
if ALSA_SUPPORT
|
||||
fluid_alsa = drivers/fluid_alsa.c
|
||||
endif
|
||||
|
||||
if COREAUDIO_SUPPORT
|
||||
fluid_coreaudio = drivers/fluid_coreaudio.c
|
||||
endif
|
||||
|
||||
if COREMIDI_SUPPORT
|
||||
fluid_coremidi = drivers/fluid_coremidi.c
|
||||
endif
|
||||
|
||||
if DBUS_SUPPORT
|
||||
fluid_rtkit = bindings/fluid_rtkit.c bindings/fluid_rtkit.h
|
||||
endif
|
||||
|
||||
if JACK_SUPPORT
|
||||
fluid_jack = drivers/fluid_jack.c
|
||||
endif
|
||||
|
||||
if PORTAUDIO_SUPPORT
|
||||
fluid_portaudio = drivers/fluid_portaudio.c
|
||||
endif
|
||||
|
||||
if MINGW32_SUPPORT
|
||||
fluid_windows = fluid_dll.c drivers/fluid_dsound.c drivers/fluid_winmidi.c
|
||||
endif
|
||||
|
||||
if OSS_SUPPORT
|
||||
fluid_oss = drivers/fluid_oss.c
|
||||
endif
|
||||
|
||||
|
||||
# if LASH_SUPPORT || LADCCA_SUPPORT (Makefile supports OR?)
|
||||
if LASH_SUPPORT
|
||||
fluid_lash = bindings/fluid_lash.c bindings/fluid_lash.h
|
||||
else
|
||||
if LADCCA_SUPPORT
|
||||
fluid_lash = bindings/fluid_lash.c bindings/fluid_lash.h
|
||||
endif
|
||||
endif
|
||||
|
||||
if DART_SUPPORT
|
||||
fluid_dart = drivers/fluid_dart.c
|
||||
endif
|
||||
|
||||
# Extra files and optional drivers
|
||||
EXTRA_DIST = fluid_dll.c \
|
||||
bindings/fluid_ladspa.c \
|
||||
bindings/fluid_ladspa.h \
|
||||
drivers/fluid_alsa.c \
|
||||
drivers/fluid_coreaudio.c \
|
||||
drivers/fluid_coremidi.c \
|
||||
drivers/fluid_dart.c \
|
||||
drivers/fluid_dsound.c \
|
||||
drivers/fluid_jack.c \
|
||||
drivers/fluid_midishare.c \
|
||||
drivers/fluid_oss.c \
|
||||
drivers/fluid_portaudio.c \
|
||||
drivers/fluid_pulse.c \
|
||||
drivers/fluid_sndmgr.c \
|
||||
drivers/fluid_winmidi.c \
|
||||
config_macos.h \
|
||||
config_macosx.h \
|
||||
config_macosx_pb.h \
|
||||
CMakeLists.txt \
|
||||
config_win32.cmake \
|
||||
config_win32.h.in \
|
||||
config.cmake
|
||||
|
||||
DISTCLEANFILES = config_win32.h
|
||||
|
||||
lib_LTLIBRARIES = libfluidsynth.la
|
||||
bin_PROGRAMS = fluidsynth
|
||||
|
||||
libfluidsynth_la_SOURCES = \
|
||||
$(fluid_alsa) \
|
||||
$(fluid_coreaudio) \
|
||||
$(fluid_coremidi) \
|
||||
$(fluid_jack) \
|
||||
$(fluid_ladspa) \
|
||||
$(fluid_lash) \
|
||||
$(fluid_oss) \
|
||||
$(fluid_portaudio) \
|
||||
$(fluid_pulse) \
|
||||
$(fluid_windows) \
|
||||
$(fluid_dart) \
|
||||
$(fluid_rtkit) \
|
||||
utils/fluid_conv.c \
|
||||
utils/fluid_conv.h \
|
||||
utils/fluid_hash.c \
|
||||
utils/fluid_hash.h \
|
||||
utils/fluid_list.c \
|
||||
utils/fluid_list.h \
|
||||
utils/fluid_ringbuffer.c \
|
||||
utils/fluid_ringbuffer.h \
|
||||
utils/fluid_settings.c \
|
||||
utils/fluid_settings.h \
|
||||
utils/fluidsynth_priv.h \
|
||||
utils/fluid_sys.c \
|
||||
utils/fluid_sys.h \
|
||||
sfloader/fluid_defsfont.c \
|
||||
sfloader/fluid_defsfont.h \
|
||||
sfloader/fluid_ramsfont.c \
|
||||
sfloader/fluid_ramsfont.h \
|
||||
sfloader/fluid_sfont.h \
|
||||
rvoice/fluid_adsr_env.c \
|
||||
rvoice/fluid_adsr_env.h \
|
||||
rvoice/fluid_chorus.c \
|
||||
rvoice/fluid_chorus.h \
|
||||
rvoice/fluid_iir_filter.c \
|
||||
rvoice/fluid_iir_filter.h \
|
||||
rvoice/fluid_lfo.c \
|
||||
rvoice/fluid_lfo.h \
|
||||
rvoice/fluid_rvoice.h \
|
||||
rvoice/fluid_rvoice.c \
|
||||
rvoice/fluid_rvoice_dsp.c \
|
||||
rvoice/fluid_rvoice_event.h \
|
||||
rvoice/fluid_rvoice_event.c \
|
||||
rvoice/fluid_rvoice_mixer.h \
|
||||
rvoice/fluid_rvoice_mixer.c \
|
||||
rvoice/fluid_phase.h \
|
||||
rvoice/fluid_rev.c \
|
||||
rvoice/fluid_rev.h \
|
||||
synth/fluid_chan.c \
|
||||
synth/fluid_chan.h \
|
||||
synth/fluid_event.c \
|
||||
synth/fluid_event_priv.h \
|
||||
synth/fluid_gen.c \
|
||||
synth/fluid_gen.h \
|
||||
synth/fluid_mod.c \
|
||||
synth/fluid_mod.h \
|
||||
synth/fluid_synth.c \
|
||||
synth/fluid_synth.h \
|
||||
synth/fluid_tuning.c \
|
||||
synth/fluid_tuning.h \
|
||||
synth/fluid_voice.c \
|
||||
synth/fluid_voice.h \
|
||||
midi/fluid_midi.c \
|
||||
midi/fluid_midi.h \
|
||||
midi/fluid_midi_router.c \
|
||||
midi/fluid_midi_router.h \
|
||||
midi/fluid_seqbind.c \
|
||||
midi/fluid_seq.c \
|
||||
drivers/fluid_adriver.c \
|
||||
drivers/fluid_adriver.h \
|
||||
drivers/fluid_mdriver.c \
|
||||
drivers/fluid_mdriver.h \
|
||||
drivers/fluid_aufile.c \
|
||||
bindings/fluid_cmd.c \
|
||||
bindings/fluid_cmd.h \
|
||||
bindings/fluid_ladspa.c \
|
||||
bindings/fluid_ladspa.h \
|
||||
bindings/fluid_filerenderer.c
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/include \
|
||||
-I$(top_srcdir)/src \
|
||||
-I$(top_srcdir)/src/drivers \
|
||||
-I$(top_srcdir)/src/synth \
|
||||
-I$(top_srcdir)/src/rvoice \
|
||||
-I$(top_srcdir)/src/midi \
|
||||
-I$(top_srcdir)/src/utils \
|
||||
-I$(top_srcdir)/src/sfloader \
|
||||
-I$(top_srcdir)/src/bindings \
|
||||
$(LASH_CFLAGS) $(LADCCA_CFLAGS) \
|
||||
$(READLINE_CFLAGS) $(JACK_CFLAGS) $(ALSA_CFLAGS) $(PULSE_CFLAGS) \
|
||||
$(PORTAUDIO_CFLAGS) $(DART_CFLAGS) $(GLIB_CFLAGS) $(LIBSNDFILE_CFLAGS) \
|
||||
$(DBUS_CFLAGS)
|
||||
|
||||
libfluidsynth_la_LIBADD = $(LIBFLUID_LIBS) $(LASH_LIBS) $(LADCCA_LIBS) \
|
||||
$(READLINE_LIBS) $(COREAUDIO_LIBS) $(COREMIDI_LIBS) $(JACK_LIBS) \
|
||||
$(ALSA_LIBS) $(PULSE_LIBS) $(PORTAUDIO_LIBS) $(DART_LIBS) \
|
||||
$(GLIB_LIBS) $(LIBSNDFILE_LIBS) $(DBUS_LIBS)
|
||||
|
||||
libfluidsynth_la_LDFLAGS = \
|
||||
-version-info @LT_VERSION_INFO@ \
|
||||
-export-dynamic $(LIBFLUID_LDFLAGS)
|
||||
|
||||
libfluidsynth_la_CPPFLAGS = $(LIBFLUID_CPPFLAGS)
|
||||
|
||||
fluidsynth_SOURCES = fluidsynth.c
|
||||
fluidsynth_LDADD = libfluidsynth.la
|
||||
fluidsynth_CPPFLAGS = $(FLUIDSYNTH_CPPFLAGS)
|
||||
|
||||
if GNU_LD_SUPPORT
|
||||
fluidsynth_LDFLAGS = -Wl,--as-needed
|
||||
endif
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = fluidsynth.mcp README.txt
|
|
@ -1,4 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
SUBDIRS = fluidsynth fluidsynth_dll fluidsynth_lib
|
||||
EXTRA_DIST = fluidsynth.dsw fluidsynth.sln
|
|
@ -1,3 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = fluidsynth.dsp fluidsynth.vcproj
|
|
@ -1,3 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = fluidsynth_dll.dsp fluidsynth_dll.vcproj
|
|
@ -1,3 +0,0 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
EXTRA_DIST = fluidsynth_lib.dsp fluidsynth_lib.vcproj
|
Loading…
Reference in a new issue