Ticket #19851: patch-doxygen.diff
File patch-doxygen.diff, 1.2 KB (added by dbevans (David B. Evans), 15 years ago) |
---|
-
Portfile
43 43 # ensure correct compilers and compiler options are used 44 44 reinplace "/^TMAKE_CC\[\[:space:\]\]/s%=.*%= ${configure.cc} ${configure.cppflags}%" ${tmake_conf} 45 45 reinplace "/^TMAKE_CXX\[\[:space:\]\]/s%=.*%= ${configure.cxx} ${configure.cppflags}%" ${tmake_conf} 46 reinplace "/^TMAKE_LINK\[\[:space:\]\]/s%=.*%= ${configure.cxx} ${configure.ldflags}%" ${tmake_conf}47 reinplace "/^TMAKE_LINK_SHLIB\[\[:space:\]\]/s%=.*%= ${configure.cxx} ${configure.ldflags}%" ${tmake_conf}46 reinplace "/^TMAKE_LINK\[\[:space:\]\]/s%=.*%= ${configure.cxx}%" ${tmake_conf} 47 reinplace "/^TMAKE_LINK_SHLIB\[\[:space:\]\]/s%=.*%= ${configure.cxx}%" ${tmake_conf} 48 48 49 49 # may not be strictly necessary, but remove trailing '/' from DESTDIR 50 50 reinplace "s|\$(DESTDIR)/|\$(DESTDIR)|g" ${worksrcpath}/Makefile.in … … 99 99 configure.args-append --platform macosx-uni-c++ 100 100 } 101 101 102 # If pre-Leopard, apply this patch for iconv().103 if { ${os.major} < 9 } {104 patchfiles-append patch-portable.cpp.diff105 }106 102 } 107 103 108 104 platform darwin 10 {