Ticket #71481: Portfile-cmake.diff

File Portfile-cmake.diff, 1.1 KB (added by adamscott (Adam Scott), 7 months ago)
  • Portfile

    old new  
    11# -*- Mode: Tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
    22
    33PortSystem          1.0
     4PortGroup           cmake 1.1
    45PortGroup           compiler_blacklist_versions 1.0
    56PortGroup           github 1.0
    67
     
    3435compiler.blacklist-append {clang < 700}
    3536compiler.c_standard 2011
    3637
    37 # By default, PortAudio is built as a universal binary.
    38 # To build a non-universal library for the host architecture,
    39 # simply use the --disable-mac-universal option with configure.
    40 # http://www.portaudio.com/trac/wiki/TutorialDir/Compile/MacintoshCoreAudio
    41 configure.args      --disable-mac-universal \
    42                     --enable-cxx \
    43                     --enable-option-checking \
    44                     --without-alsa \
    45                     --without-jack \
    46                     --without-oss \
    47                     --without-asihpi \
    48                     --without-winapi
    49 
    5038use_parallel_build  no
    5139
    5240# patch-configure removes -Werror, and adds -DNDEBUG.