mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
5d33e04596
Where appropriate fiddle with a few other things.
23 lines
501 B
Makefile
23 lines
501 B
Makefile
# Provide support for SQLite
|
|
# Feature: sqlite
|
|
# Usage: USES= sqlite[:version]
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_SQLITE_MK)
|
|
_INCLUDE_USES_SQLITE_MK= yes
|
|
|
|
.if !empty(sqlite_ARGS)
|
|
SQLITE_VER= ${sqlite_ARGS}
|
|
.endif
|
|
SQLITE_VER?= 3
|
|
|
|
.if ${SQLITE_VER} == 3
|
|
LIB_DEPENDS+= libsqlite3.so:databases/sqlite${SQLITE_VER}
|
|
.elif ${SQLITE_VER} == 2
|
|
LIB_DEPENDS+= libsqlite.so:databases/sqlite${SQLITE_VER}
|
|
.else
|
|
IGNORE= cannot install: unknown SQLite version: ${SQLITE_VER}
|
|
.endif
|
|
|
|
.endif
|