diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2008-06-24 14:56:06 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2008-06-24 14:56:06 +0000 |
commit | 45536b357d5d5c1621b1ec97dfc20bd76c97f848 (patch) | |
tree | df7ad13d850fb378ed0d76efbb9479136488645b /Mk/bsd.port.mk | |
parent | 6f0b3f63fa5a0afde1274f7b69db856c51df4854 (diff) | |
download | ports-45536b357d5d5c1621b1ec97dfc20bd76c97f848.tar.gz ports-45536b357d5d5c1621b1ec97dfc20bd76c97f848.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index d15ad3c33ba2..9a88b2db1010 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -423,6 +423,9 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # USE_EFL - If set, this port use EFL libraries. # Implies inclusion of bsd.efl.mk. (Also see # that file for more information on USE_EFL_*). +# USE_FPC - If set, this port relies on the Free Pascal language. +# Implies inclusion of bsd.fpc.mk. (Also see +# that file for more information on WANT_FPC_*). # USE_JAVA - If set, this port relies on the Java language. # Implies inclusion of bsd.java.mk. (Also see # that file for more information on USE_JAVA_*). @@ -1462,6 +1465,10 @@ PERL= ${LOCALBASE}/bin/perl .include "${PORTSDIR}/Mk/bsd.efl.mk" .endif +.if defined(USE_FPC) || defined(WANT_FPC_BASE) || defined(WANT_FPC_ALL) +.include "${PORTSDIR}/Mk/bsd.fpc.mk" +.endif + .if defined(USE_JAVA) .include "${PORTSDIR}/Mk/bsd.java.mk" .endif |