Changeset 5ddcdf2


Ignore:
Timestamp:
Nov 15, 2009, 3:31:11 PM (14 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
75be651
Parents:
2b4d006
Message:

configure.ac: add AUBIO_LIBS, now needs only -lm (closes: #553930)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r2b4d006 r5ddcdf2  
    3535
    3636AUBIO_CFLAGS=
     37
     38AC_CHECK_LIB(m, floorf)
     39AUBIO_LIBS="-lm"
    3740
    3841dnl Enable double precision (no)
     
    232235
    233236AC_SUBST(AUBIO_CFLAGS)
     237AC_SUBST(AUBIO_LIBS)
    234238
    235239dnl Check for swig and python
  • examples/Makefile.am

    r2b4d006 r5ddcdf2  
    11# global flags
    22AM_CFLAGS = -DAUBIO_PREFIX=\"$(prefix)\" -DPACKAGE=\"@PACKAGE@\" -I$(top_srcdir)/src @AUBIO_CFLAGS@ @LASH_CFLAGS@ @SNDFILE_CFLAGS@ @JACK_CFLAGS@
    3 AM_LDFLAGS = -L$(top_builddir)/src -laubio @LASH_LIBS@
     3AM_LDFLAGS = -L$(top_builddir)/src -laubio @AUBIO_LIBS@ @LASH_LIBS@
    44
    55# add your programs to this list
Note: See TracChangeset for help on using the changeset viewer.