aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorcarmen rocco <ix9@users.sourceforge.net>2005-04-29 00:43:36 +0000
committercarmen rocco <ix9@users.sourceforge.net>2005-04-29 00:43:36 +0000
commit9d9262c32f4bc9c0dad8b92828acba53c889cb79 (patch)
tree588e3bca2b474a8e112ae4e44405b9176818c0e2 /configure.in
parent6a34f67a66eee984d72393ad41c3bdf9b6f10279 (diff)
yeah
svn path=/trunk/externals/plugin~/; revision=2849
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in48
1 files changed, 0 insertions, 48 deletions
diff --git a/configure.in b/configure.in
deleted file mode 100644
index aa359bb..0000000
--- a/configure.in
+++ /dev/null
@@ -1,48 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-
-dnl Initialize autoconf and automake. Version number here!
-AC_INIT(plugin~.c)
-AM_INIT_AUTOMAKE(plugin~, 0.2)
-AC_CANONICAL_HOST
-AM_MAINTAINER_MODE
-
-# I don't use libtool. This is only a hack because automake wants
-# libtool, and only for installation... Works for automake 1.4, BTW.
-LIBTOOL="\$(SHELL) \$(top_builddir)/libtoolkludge"
-AC_SUBST(LIBTOOL)
-
-dnl Look for Pd.
-AC_PREFIX_PROGRAM(pd)
-PDDIR=$prefix/pd
-AC_ARG_WITH(pddir,
-[ --with-pddir=... enter absolute path to Pd (PREFIX/pd by default)],
- [if expr x"$withval" : "x/" >/dev/null; then
- PDDIR=$withval
- AC_MSG_RESULT(Installing Pd files in $PDDIR.)
- else
- AC_MSG_ERROR(Illegal value given to --with-pddir. Give an absolute path.)
- fi]
-)
-AC_SUBST(PDDIR)
-
-dnl Checks for programs.
-AC_PROG_CC
-AC_PROG_LD
-AC_PROG_INSTALL
-
-dnl Checks for libraries.
-AC_CHECK_LIB(c, printf)
-AC_CHECK_LIB(m, sin)
-AC_CHECK_LIB(dl, dlopen)
-
-dnl Checks for header files.
-AC_HEADER_STDC
-AC_CHECK_HEADERS(dirent.h dlfcn.h string.h sys/types.h unistd.h)
-
-dnl Checks for typedefs, structures, and compiler characteristics.
-
-dnl Checks for library functions.
-AC_CHECK_FUNCS(dlopen)
-
-dnl Output the makefile and version information file.
-AC_OUTPUT(Makefile version.h ladspa/Makefile vst/Makefile win/Makefile)