Changeset 9d3fa49


Ignore:
Timestamp:
Nov 5, 2009, 6:08:38 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:
69aaefbd
Parents:
8beee53
Message:

src/aubio.h: do not include config.h, do not install it

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    r8beee53 r9d3fa49  
    3636        tempo/beattracking.h
    3737
    38 nodist_pkginclude_HEADERS = config.h
     38nodist_noinst_HEADERS = config.h
    3939
    4040lib_LTLIBRARIES = libaubio.la
  • src/aubio.h

    r8beee53 r9d3fa49  
    153153#endif
    154154
    155 /* first the generated config file */
    156 #include "config.h"
    157 
    158155/* in this order */
    159156#include "types.h"
  • src/wscript_build

    r8beee53 r9d3fa49  
    1010# install headers, except _priv.h ones
    1111for file in bld.path.ant_glob('**/*.h').split():
    12   if '_priv.h' in file: continue
     12  if '_priv.h' in file or file == 'config.h': continue
    1313  bld.install_as('${PREFIX}/include/aubio/' + file, file)
Note: See TracChangeset for help on using the changeset viewer.