diff options
author | oliver <oliver@FreeBSD.org> | 2007-01-04 13:45:19 +0800 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2007-01-04 13:45:19 +0800 |
commit | 1b0b9fc13fbbc917d1efb7470a718f17afce142f (patch) | |
tree | 424c745e04e64dd920ae307b5bdf4f3fb0605bd8 /multimedia/audacious | |
parent | 52bf7c660a9b2de5b975e7c695b0c11daa159049 (diff) | |
download | freebsd-ports-gnome-1b0b9fc13fbbc917d1efb7470a718f17afce142f.tar.gz freebsd-ports-gnome-1b0b9fc13fbbc917d1efb7470a718f17afce142f.tar.zst freebsd-ports-gnome-1b0b9fc13fbbc917d1efb7470a718f17afce142f.zip |
support automatic charset detection (OPTION)
Submitted by: Denis Shaposhnikov <dsh@vlink.ru>
Diffstat (limited to 'multimedia/audacious')
-rw-r--r-- | multimedia/audacious/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/multimedia/audacious/Makefile b/multimedia/audacious/Makefile index eeab086d5fc6..d6d87d0dbaae 100644 --- a/multimedia/audacious/Makefile +++ b/multimedia/audacious/Makefile @@ -25,11 +25,16 @@ MAN1= audacious.1 audtool.1 PORTDOCS= README AUTHORS ChangeLog NEWS -OPTIONS= GNOME "Build with gconf support" off \ +OPTIONS= CHARSET "Build with automatic charset detection" off \ + GNOME "Build with gconf support" off \ NLS "Native Language Support" on .include <bsd.port.pre.mk> +.if defined(WITH_CHARSET_DETECTION) +CONFIGURE_ARGS+=--enable-chardet +.endif + .if defined(WITH_GNOME) USE_GNOME+= gconf2 CONFIGURE_ARGS+=--enable-gconf |