Changeset 3050cb8
- Timestamp:
- Mar 31, 2005, 11:18:14 PM (20 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- e50b695
- Parents:
- 1f40359
- Files:
-
- 24 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r1f40359 r3050cb8 1 2005-29-03 Paul Brossier <piem@altern.org> 2 * python/aubio/gnuplot.py: clean up and add plotsound 3 * python/aubiocompare-onset: updated 4 * examples/aubioonset.c: fix text output when nframes<4 5 * ext/midi/midi_file.c: by default, int is unsigned on powerpc 6 * python/aubiocut, python/aubio/aubioclass.py: updated 7 * ext/midi/midi_alsa_seq.c: activated threading 8 * configure.ac,Makefile.am: added rules to check presence 9 of swig, python, puredata and docbook-to-man. 10 11 2005-17-03 Paul Brossier <piem@altern.org> 12 * examples/utils.{c,h}: corrected usedoubled and -O interactions 13 * examples/aubioonset.c: added frames>=4 check (thanks Hamish Allan) 14 1 15 2004-12-11 Paul Brossier <piem@altern,org> 2 * swig/Makefile.am: instructions moved to python/aubio and cleaned 16 * swig/Makefile.am: instructions moved to python/aubio and cleaned 3 17 * python/aubiocut: corrected slicing on multichannel files 4 18 * VERSION: bumped to 0.1.8 -
Makefile.am
r1f40359 r3050cb8 1 SUBDIRS = src ext examples doc sounds swig python plugins 1 if DOCBOOKFOUND 2 DOC = doc 3 endif 4 5 if SWIGFOUND 6 if PYTHONFOUND 7 SWIGDIR = swig 8 PYTHONDIR = python 9 endif 10 endif 11 12 SUBDIRS = src ext examples doc sounds plugins $(PYTHONDIR) $(SWIGDIR) $(DOC) 2 13 EXTRA_DIST = bootstrap VERSION 3 14 DISTCLEANFILES = autom4te.cache -
configure.ac
r1f40359 r3050cb8 15 15 CFLAGS="$CFLAGS -O2" 16 16 17 18 17 dnl Check for debug 19 18 AC_ARG_ENABLE(debug, … … 34 33 if test "$with_warnme" = "yes" 35 34 then 36 37 35 ALL_CWARNINGS="-Wall -Werror -Wmissing-prototypes -Wmissing-declarations -Wno-char-subscripts -Wno-unknown-pragmas" 36 CFLAGS="$CFLAGS $ALL_CWARNINGS" 38 37 fi 39 38 … … 48 47 fi 49 48 AC_PROG_INSTALL 50 dnl AC_PROG_SWIG51 49 52 50 dnl Check for libtool … … 73 71 esac 74 72 75 dnl Check for libraries73 dnl Check for required libraries 76 74 AC_CHECK_LIB(pthread, pthread_create) 77 75 … … 146 144 fi 147 145 148 AM_PATH_PYTHON(,,) 146 dnl Check for optional programs 147 148 dnl should check for swig version and python headers 149 AC_PATH_PROG(SWIG,swig,no) 150 AM_CONDITIONAL(SWIGFOUND, test "${SWIG}" != "no") 151 AM_PATH_PYTHON 152 AM_CONDITIONAL(PYTHONFOUND, test "${PYTHON}" != "no") 153 154 AC_PATH_PROG(DOCBOOK_TO_MAN,docbook-to-man,no) 155 AM_CONDITIONAL(DOCBOOKFOUND, test "${DOCBOOK_TO_MAN}" != "no") 156 157 AC_CHECK_HEADER(m_pd.h,PUREDATA=y,AC_MSG_WARN([Ouch! puredata header not found])) 158 AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y") 149 159 150 160 AC_OUTPUT([ … … 154 164 examples/Makefile 155 165 sounds/Makefile 156 doc/Makefile166 swig/Makefile 157 167 python/Makefile 158 168 python/aubio/Makefile … … 161 171 plugins/audacity/plug-ins/Makefile 162 172 plugins/wavesurfer/Makefile 163 164 swig/Makefile173 plugins/puredata/Makefile 174 doc/Makefile 165 175 ]) 166 176 -
doc/Makefile.am
r1f40359 r3050cb8 1 # install the man pages and include in distribution2 #man_MANS = fluidsynth.13 #EXTRA_DIST = $(man_MANS) devel.cfg fluidsynth.14 1 EXTRA_DIST = devel.cfg examples.cfg user.cfg aubio.css \ 5 aubionotes.sgml aubioonset.sgml 2 aubionotes.sgml aubioonset.sgml \ 3 aubioonset.1 aubionotes.1 6 4 7 5 man_MANS = aubionotes.1 aubioonset.1 8 6 CLEANFILES = $(man_MANS) 9 #docbook_docs = aubio-devdoc.xml10 #DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl11 7 12 8 all: 13 9 14 # Run "make update-docs" to update developer doc and doxygen reference15 #update-docs: xmldocbook doxygen16 10 update-docs: doc-devel 17 18 # The new XML DocBook way:19 #xmldocbook: $(docbook_docs)20 # -rm -rf html21 # $(mkinstalldirs) html22 # xsltproc -o html/ --catalogs $(DOCBOOK_STYLESHEET) $<23 11 24 12 doc-clean: … … 41 29 docbook-to-man $< > $*.1 42 30 43 # Update docs for distribution44 #dist-hook:45 46 31 clean: 47 rm -rf devel user examples *.132 rm -rf devel user examples #*.1 48 33 49 34 distclean-hook: clean -
ext/midi/midi_alsa_seq.c
r1f40359 r3050cb8 380 380 { 381 381 aubio_alsa_seq_driver_t* dev = (aubio_alsa_seq_driver_t*) d; 382 /* 383 if (pthread_join(dev->thread, NULL)) { 382 if (dev->thread){ if(pthread_join(dev->thread, NULL)) { 384 383 AUBIO_ERR( "Failed to join the midi thread"); 385 } 386 */ 384 }} 387 385 switch(event->type) 388 386 { … … 410 408 snd_seq_event_output_direct(dev->seq_handle, &ev); 411 409 } 412 /* 413 if (pthread_detach(dev->thread)) { 410 if (dev->thread) { if(pthread_detach(dev->thread)) { 414 411 AUBIO_ERR( "Failed to leave the midi thread"); 415 } 416 */ 412 }} 417 413 } 418 414 -
plugins/Makefile.am
r1f40359 r3050cb8 1 SUBDIRS = wavesurfer audacity puredata 1 if PUREDATAFOUND 2 PUREDATA = puredata 3 endif 4 SUBDIRS = wavesurfer audacity ${PUREDATA} -
python/aubio/Makefile.am
r1f40359 r3050cb8 8 8 all: _aubiowrapper.so 9 9 10 SWIG = swig11 10 # removed -Wall -Wmissing-prototypes -Wmissing-declarations 12 SWCFLAGS = -DJACK_SUPPORT -Werror -Wno-char-subscripts -Wno-unknown-pragmas -I/usr/include/python2.3 -I../../src -I../../ext -I/usr/include 11 SWCFLAGS = -DJACK_SUPPORT -Werror -Wno-char-subscripts -Wno-unknown-pragmas \ 12 -I../../src -I../../ext \ 13 -I/usr/include/python${PYTHON_VERSION} \ 14 -I${prefix}/include/python${PYTHON_VERSION} \ 15 -I/usr/include \ 16 -I${prefix}/include 17 13 18 SWLDFLAGS = -shared -L../../ext/.libs -laubioext -L../../src/.libs -laubio 14 19
Note: See TracChangeset
for help on using the changeset viewer.