Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add www/php-phalcon #54

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
www/php-phalcon: fix syntax of conditionnal loops
  • Loading branch information
mguegan committed Dec 13, 2017
commit 5b1317cad6e3623c64cc63823636ce9055fd7d0f
12 changes: 6 additions & 6 deletions www/php-phalcon/Makefile
Original file line number Diff line number Diff line change
@@ -37,19 +37,19 @@ USE_LANGUAGES+= c c++
PHP_VERSIONS_ACCEPTED= 56 70 71

.if ${MACHINE_ARCH} == "x86_64"
.if ${PKG_PHP_VERSION} >= 70
. if ${PKG_PHP_VERSION} >= 70
WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${PECL_VERSION}/build/php7/64bits
.else
. else
WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${PECL_VERSION}/build/php5/64bits
.endif
. endif
.endif

.if ${MACHINE_ARCH} == "i386"
.if ${PKG_PHP_VERSION} >= 70
. if ${PKG_PHP_VERSION} >= 70
WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${PECL_VERSION}/build/php7/32bits
.else
. else
WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${PECL_VERSION}/build/php5/32bits
.endif
. endif
.endif

.include "../../databases/php-pdo/buildlink3.mk"