1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

- Add MySQL support

This commit is contained in:
Clement Laforet 2004-04-16 21:46:01 +00:00
parent fe0a2a18e6
commit 7892f8051f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=107272

View File

@ -19,7 +19,15 @@ GNU_CONFIGURE= yes
USE_OPENSSL= yes USE_OPENSSL= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_PERL5_BUILD=yes USE_PERL5_BUILD=yes
CONFIGURE_ENV+= LIBS=-lcrypt CONFIGURE_ENV+= LIBS="${LIBS}"
MAN8= moftpd.8 moftpadmin.8 MAN8= moftpd.8 moftpadmin.8
LIBS+= -lcrypt
.if defined(WITH_MYSQL)
CFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib/mysql
.else
CONFIGURE_ARGS+= --without-sql
.endif
.include <bsd.port.mk> .include <bsd.port.mk>