New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 82549


Ignore:
Timestamp:
08/15/11 10:04:43 (4 years ago)
Author:
dports@…
Message:

cvs: fix build on both Lion *and* Snow Leopard this time: apply
patch to rename getline only on Lion (#30785; see also #30378/r82092)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/cvs/Portfile

    r82092 r82549  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 
    12# $Id$ 
    23 
     
    2223                rmd160  ff8c5c6777f1c12ee9134a3cf59e00c2ebaad279 
    2324 
    24 patchfiles      patch-getline 
     25 
     26# Lion provides a POSIX getline; rename the one in the source to use 
     27# the OS-provided one instead, and avoid conflict on name 
     28if {${os.platform} == "darwin" && ${os.major} >= 11} { 
     29    patchfiles-append      patch-getline 
     30} 
    2531 
    2632configure.args  --infodir=${prefix}/share/info \ 
Note: See TracChangeset for help on using the changeset viewer.