diff options
author | edwin <edwin@FreeBSD.org> | 2007-09-26 09:08:30 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-09-26 09:08:30 +0800 |
commit | 7284e4ca57fc3b0180a6f909c240ee165f0378cf (patch) | |
tree | d1c8bf8c9e59b060e34428fb14435b3199d7f936 /sysutils/bacula-server | |
parent | 876a4adedc24ad8a04ad15597c9ece4511964948 (diff) | |
download | freebsd-ports-gnome-7284e4ca57fc3b0180a6f909c240ee165f0378cf.tar.gz freebsd-ports-gnome-7284e4ca57fc3b0180a6f909c240ee165f0378cf.tar.zst freebsd-ports-gnome-7284e4ca57fc3b0180a6f909c240ee165f0378cf.zip |
[patch] sysutils/bacula-server - reduce options in WITH_BAT
[patch] cleanup sysutils/bacula-bat Makefile
PR: ports/116624,ports/116625
Submitted by: Edwin Groothuis <edwin@mavetju.org>
Approved by: dvl@
Diffstat (limited to 'sysutils/bacula-server')
-rw-r--r-- | sysutils/bacula-server/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysutils/bacula-server/Makefile b/sysutils/bacula-server/Makefile index 76beec5236d3..5c2a54ec61a5 100644 --- a/sysutils/bacula-server/Makefile +++ b/sysutils/bacula-server/Makefile @@ -76,8 +76,10 @@ IS_INTERACTIVE= yes .endif .if defined(WITH_CLIENT_ONLY) -OPTIONS+= WXCONSOLE "Build with wxGTK based GUI console: deprecated" off +OPTIONS= WXCONSOLE "Build with wxGTK based GUI console: deprecated" off OPTIONS+= GNOMECONSOLE "Build with GNOME based GUI console: deprecated" off +.elif defined(WITH_BAT) +OPTIONS= .else OPTIONS= SQLITE3 "Use SqLite-3 database instead of SqLite-2" off OPTIONS+= MYSQL "Use MySQL database instead of SqLite" off |