[PD-cvs] externals/moocow/readdir 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/readdir
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20908/readdir

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 pd external 'readdir'

    Last updated for readdir v0.02

DESCRIPTION
    The 'readdir' object lets you read the contents of a directory.

INSTALLATION
    Issue the following commands to the shell:

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

BUILD OPTIONS
    The 'configure' script supports the following options, among others:

    * --enable-debug , --disable-debug
        Whether to enable verbose debugging messages. Default=no.

ACKNOWLEDGEMENTS
    PD by Miller Puckette and others.

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

KNOWN BUGS
    None known.

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


Index: configure.in
===================================================================
RCS file: /cvsroot/pure-data/externals/moocow/readdir/configure.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** configure.in	2 Feb 2006 12:47:31 -0000	1.1
--- configure.in	5 Aug 2007 23:11:13 -0000	1.2
***************
*** 72,76 ****
  
  dnl PD externals
! PD_OBJECT_EXTERNALS="readdir\$(EXEEXT)"
  AC_SUBST(PD_OBJECT_EXTERNALS)
  
--- 72,88 ----
  
  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="readdir${buildext}"
  AC_SUBST(PD_OBJECT_EXTERNALS)
  





More information about the Pd-cvs mailing list