[PD-cvs] externals/iem/iemmatrix/src Makefile.in, 1.8, 1.9 configure.ac, 1.8, 1.9

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Tue Jul 25 16:11:33 CEST 2006


Update of /cvsroot/pure-data/externals/iem/iemmatrix/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23406

Modified Files:
	Makefile.in configure.ac 
Log Message:
we no longer support a different help-file location for pd<0.37; now everything goes into extra/iemmatrix/ (also the binary!)


Index: Makefile.in
===================================================================
RCS file: /cvsroot/pure-data/externals/iem/iemmatrix/src/Makefile.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile.in	13 Oct 2005 11:56:36 -0000	1.8
--- Makefile.in	25 Jul 2006 14:11:30 -0000	1.9
***************
*** 3,8 ****
  PREFIX     =@prefix@@PDLIBDIR@
  
! INSTALL_BIN=$(PREFIX)/extra
! INSTALL_DOC=$(PREFIX)/@REFERENCEPATH@$(LIBNAME)
  
  EXT = @EXT@ 
--- 3,8 ----
  PREFIX     =@prefix@@PDLIBDIR@
  
! INSTALL_BIN=$(PREFIX)/extra/$(LIBNAME)
! INSTALL_DOC=$(INSTALL_BIN)
  
  EXT = @EXT@ 

Index: configure.ac
===================================================================
RCS file: /cvsroot/pure-data/externals/iem/iemmatrix/src/configure.ac,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** configure.ac	15 Dec 2005 16:11:15 -0000	1.8
--- configure.ac	25 Jul 2006 14:11:31 -0000	1.9
***************
*** 17,22 ****
  AC_SUBST(INCLUDES)
  
- 
- AC_ARG_WITH(pdversion, [  --with-pdversion=<ver>  enforce a certain pd-version (e.g. 0.37)])
  AC_ARG_WITH(version,   [  --with-version=<ver>    enforce a certain iemmatrix-version (e.g. 0.1)])
  AC_ARG_WITH(extension, [  --with-extension=<ext>  enforce a certain extension for the dynamic library (e.g. dll)])
--- 17,20 ----
***************
*** 204,257 ****
  fi
  
- 
- dnl Checks for pd-version, to set the correct help-path
- AC_MSG_CHECKING("pd\>=0.37")
- 
- if test "$with_pdversion" != ""
- then
- echo -n "($with_pdversion)... "
-   PD_VERSION="$with_pdversion"
- else
- if test "x$cross_compiling" = "xno"
- then
- 
- cat > conftest.c << EOF
- #include <stdio.h>
- #include "m_pd.h"
- int main(){
-   printf("%d.%d\n", PD_MAJOR_VERSION, PD_MINOR_VERSION);
-   return 0;
- }
- EOF
- 
-  if $CC $INCLUDES -o conftest.o conftest.c > /dev/null 2>&1
-  then
-   PD_VERSION=`./conftest.o`
-  else
-   PD_VERSION=""
-  fi
-   echo -n $PD_VERSION
- else
- dnl we are cross-compiling...
-  echo -n "(X)..."
-  PD_VERSION="0.38"
- fi
- fi
- 
- let PD_MAJORVERSION=`echo $PD_VERSION | cut -d"." -f1`+0
- let PD_MINORVERSION=`echo $PD_VERSION | cut -d"." -f2`+0
- 
- 
- 
- if test "$PD_MAJORVERSION" -gt 0 || test "$PD_MINORVERSION" -ge 37
- then
-   REFERENCEPATH=extra/help-
-   echo " yes"
- else
-   REFERENCEPATH=doc/5.reference/
-   echo " no"
- fi
- 
- 
  dnl check for iemmatrix-version (but why...)
  AC_MSG_CHECKING("iemmatrix-version")
--- 202,205 ----





More information about the Pd-cvs mailing list