Changeset fcc3fd2


Ignore:
Timestamp:
Apr 30, 2008, 8:47:48 PM (16 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:
679441e
Parents:
7abfc82
Message:

Makefile.am, configure.ac: go down into java and tests, make java compilation somewhat conditional (needs improvements)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r7abfc82 rfcc3fd2  
    99endif
    1010endif
     11if JAVAFOUND
     12JAVADIR = java
     13endif
    1114
    12 SUBDIRS = src ext cpp examples sounds plugins $(PYTHONDIR) $(SWIGDIR) $(DOC)
     15
     16SUBDIRS = src ext cpp examples sounds plugins $(PYTHONDIR) $(SWIGDIR) $(JAVADIR) $(DOC) tests
    1317EXTRA_DIST = bootstrap VERSION
    1418
  • configure.ac

    r7abfc82 rfcc3fd2  
    246246AM_CONDITIONAL(PUREDATAFOUND, test "${PUREDATA}" = "y")
    247247
     248dnl Check for Java
     249AC_CHECK_HEADER(jni.h,JAVAHEADERS=y,AC_MSG_WARN([Java header jni.h not found.]))
     250AM_CONDITIONAL(JAVAFOUND, test "${JAVAHEADERS}" = "y")
     251
    248252dnl Create Makefiles
    249253AC_OUTPUT([
Note: See TracChangeset for help on using the changeset viewer.