diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-01 18:22:57 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-01 18:22:57 +0000 |
commit | 1719a56dc3b872e8238b8ea945b5a1f934bde031 (patch) | |
tree | d3d2f7f0b70b5e1c323858a9743e9c535b204706 /gem2pdp/configure.ac | |
parent | e5333824d29ee2a92ec2c474bffe03d83dac8d73 (diff) |
moved gem2pdp to the CVSROOT/externals/
svn path=/trunk/externals/unauthorized/; revision=922
Diffstat (limited to 'gem2pdp/configure.ac')
-rw-r--r-- | gem2pdp/configure.ac | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/gem2pdp/configure.ac b/gem2pdp/configure.ac deleted file mode 100644 index 578cf75..0000000 --- a/gem2pdp/configure.ac +++ /dev/null @@ -1,50 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. - -AC_INIT -GEM2PDP_VERSION=0.4 -PD_DIR=/usr/local/pd -PDP_DIR=/usr/local/pd/pdp -GEM_DIR=/usr/local/pd/gem - -AC_ISC_POSIX -AC_PROG_CC -AM_PROG_CC_STDC -AC_HEADER_STDC -AC_PROG_INSTALL -AC_PROG_MAKE_SET -AM_SANITY_CHECK - -AM_MAINTAINER_MODE -AM_WITH_DMALLOC - -AC_SUBST(GEM2PDP_VERSION) - -echo -n "looking for gem sources (required) ... " -if test -f $GEM_DIR/src/Base/GemMan.h -then - AC_SUBST(GEM_DIR) - echo "ok." -else - echo "gem source tree not found... install it, fix the path in configure.ac and run autoconf" - exit -1 -fi - -AC_SUBST(PD_DIR) - -echo -n "looking for pdp sources (required) ... " -if test -f $PDP_DIR/include/pdp.h -then - AC_SUBST(PDP_DIR) - echo "ok." -else - echo "pdp source tree not found... install it, fix the path in configure.ac and run autoconf" - exit -1 -fi - -LIBS="$LIBS -lm" -CFLAGS="$CFLAGS -Wall" - -AC_CONFIG_FILES([ -Makefile -]) -AC_OUTPUT |