Changeset 80805
- Timestamp:
- 07/17/11 15:20:08 (4 years ago)
- Location:
- trunk/dports/devel/quickfix
- Files:
-
- 1 edited
- 1 copied
-
Portfile (modified) (3 diffs)
-
files/patch-postgresql90.diff (copied) (copied from trunk/dports/devel/quickfix/files/patch-postgresql84.diff) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/devel/quickfix/Portfile
r80620 r80805 4 4 name quickfix 5 5 version 1.13.3 6 revision 1 6 7 license Permissive 7 8 # http://www.quickfixengine.org/quickfix/doc/html/license.html … … 32 33 configure.env "JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home" 33 34 35 post-destroot { 36 xinstall -m 755 -d ${destroot}${prefix}/share/${name}/sql 37 copy ${worksrcpath}/src/sql/postgresql ${destroot}${prefix}/share/${name}/sql 38 } 39 34 40 variant python description {Include python support} { 35 41 depends_lib-append port:python26 … … 38 44 } 39 45 40 variant postgresql84 description {Include PostGreSQL 8.4 support} {46 variant postgresql84 conflicts postgresql90 description {Include PostGreSQL 8.4 support} { 41 47 depends_lib-append port:postgresql84 42 48 configure.args-append --with-postgresql=${prefix} 43 49 patchfiles-append patch-postgresql84.diff 50 } 51 52 variant postgresql90 conflicts postgresql84 description {Include PostGreSQL 9.0 support} { 53 depends_lib-append port:postgresql90 54 configure.args-append --with-postgresql=${prefix} 55 patchfiles-append patch-postgresql90.diff 44 56 } 45 57 -
trunk/dports/devel/quickfix/files/patch-postgresql90.diff
r80762 r80805 6 6 then 7 7 - POSTGRESQL_CFLAGS="-I${POSTGRESQL_PREFIX}/include -I${POSTGRESQL_PREFIX}/include/postgresql" 8 + POSTGRESQL_CFLAGS="-I${POSTGRESQL_PREFIX}/include -I${POSTGRESQL_PREFIX}/include/postgresql 84"8 + POSTGRESQL_CFLAGS="-I${POSTGRESQL_PREFIX}/include -I${POSTGRESQL_PREFIX}/include/postgresql90" 9 9 10 10 - POSTGRESQL_LIBS="-L${POSTGRESQL_PREFIX}/lib -lpq" 11 + POSTGRESQL_LIBS="-L${POSTGRESQL_PREFIX}/lib/postgresql 84-lpq"11 + POSTGRESQL_LIBS="-L${POSTGRESQL_PREFIX}/lib/postgresql90 -lpq" 12 12 13 13
Note: See TracChangeset
for help on using the changeset viewer.

