[PD-cvs] externals/moocow/weightmap README.txt, NONE, 1.1 configure.in, 1.1, 1.2

Bryan Jurish mukau at users.sourceforge.net
Mon Aug 6 01:11:15 CEST 2007


Update of /cvsroot/pure-data/externals/moocow/weightmap
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20908/weightmap

Modified Files:
	configure.in 
Added Files:
	README.txt 
Log Message:
+ fixes for pd-extended autobuild with automake-1.4 (grr)

--- NEW FILE: README.txt ---
    README for weightmap

    Last updated for weightmap v0.02

DESCRIPTION
    weightmap is a PD external which maps incoming probability values to
    integers, inspired in part by Yves Degoyon's 'probalizer' object.

INSTALLATION
    Issue the following commands to the shell:

       cd weightmap-X.YY  (or wherever you extracted the distribution)
       ./configure
       make
       make install

ACKNOWLEDGEMENTS
    PD by Miller Puckette and others.

    probalizer object by Yves Degoyon.

    Ideas, black magic, and other nuggets of information drawn from code by
    Guenter Geiger, Larry Troxler, and iohannes m zmoelnig.

BUGS
    It's a misleading name: higher input "weights" don't neccesarily
    correspond to higer stored "weights".

    Probably many more serious ones as well.

AUTHOR
    Bryan Jurish <moocow at ling.uni-potsdam.de>


Index: configure.in
===================================================================
RCS file: /cvsroot/pure-data/externals/moocow/weightmap/configure.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** configure.in	2 Feb 2006 12:48:33 -0000	1.1
--- configure.in	5 Aug 2007 23:11:13 -0000	1.2
***************
*** 72,76 ****
  
  dnl PD externals
! PD_OBJECT_EXTERNALS="weightmap\$(EXEEXT)"
  AC_SUBST(PD_OBJECT_EXTERNALS)
  
--- 72,87 ----
  
  dnl PD externals
! AC_MSG_CHECKING([how to hack automake EXEEXT conventions])
! case "${am__api_version}" in
!   1.[[0-4]]*)
!     AC_MSG_RESULT([automake v${am__api_version}: on install])
!     buildext=""
!     ;;
!   *)
!     AC_MSG_RESULT([automake v${am__api_version}: on build])
!     buildext="\$(EXEEXT)"
!     ;;
! esac
! PD_OBJECT_EXTERNALS="weightmap${buildext}"
  AC_SUBST(PD_OBJECT_EXTERNALS)
  





More information about the Pd-cvs mailing list