diff options
author | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2005-09-10 19:40:48 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@FreeBSD.org> | 2005-09-10 19:40:48 +0000 |
commit | d3679e22d52719f7860c747ab1c984b44fff1aae (patch) | |
tree | 67a0a2b7e5c3aab31d8da453d8748a83c24e32b0 /net/jabberd | |
parent | c26fc6d4fc69b02a020f91e1bbabcde9453dec78 (diff) | |
download | ports-d3679e22d52719f7860c747ab1c984b44fff1aae.tar.gz ports-d3679e22d52719f7860c747ab1c984b44fff1aae.zip |
Notes
Diffstat (limited to 'net/jabberd')
-rw-r--r-- | net/jabberd/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/jabberd/Makefile b/net/jabberd/Makefile index d531494e8d8b..cf394601be26 100644 --- a/net/jabberd/Makefile +++ b/net/jabberd/Makefile @@ -21,6 +21,7 @@ OPTIONS= POSTGRESQL "Use PostgreSQL for storage and authentication" off \ MYSQL "Use MySQL for storage and authentication" off \ LDAP "Use LDAP for authentication" off \ BDB "Use BDB for storage and authentication" off \ + SQLITE "Use SQLITE3 for storage" off \ PAM "Use PAM for authentication" off \ PIPE "Enable pipe auth/reg support" off \ DEBUG "Compile with debug information" on @@ -48,6 +49,13 @@ CONFIGURE_ARGS+=--enable-pgsql CONFIGURE_ARGS+=--disable-pgsql .endif +.if defined(WITH_SQLITE) +CONFIGURE_ARGS+=--enable-sqlite +LIB_DEPENDS+= sqlite3.8:${PORTSDIR}/databases/sqlite3 +.else +CONFIGURE_ARGS+=--disable-sqlite +.endif + .if defined(WITH_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+=--enable-mysql |