diff options
author | sobomax <sobomax@FreeBSD.org> | 2007-04-13 16:55:48 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2007-04-13 16:55:48 +0800 |
commit | 2a49213b3c9c70ab151a3a117cbb83d65353269d (patch) | |
tree | 5abe6bba465c5481a83333e06a36db48020aa7d3 /net/asterisk | |
parent | 1ebf9b483ddba9997720219c2adc06e2012c3784 (diff) | |
download | freebsd-ports-gnome-2a49213b3c9c70ab151a3a117cbb83d65353269d.tar.gz freebsd-ports-gnome-2a49213b3c9c70ab151a3a117cbb83d65353269d.tar.zst freebsd-ports-gnome-2a49213b3c9c70ab151a3a117cbb83d65353269d.zip |
o Unbreak on non-i386;
o Move H323 option from i386-only section to generic one. It works fine at
least on amd64.
Diffstat (limited to 'net/asterisk')
-rw-r--r-- | net/asterisk/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/asterisk/Makefile b/net/asterisk/Makefile index 621b9f859077..664a9fb2fef4 100644 --- a/net/asterisk/Makefile +++ b/net/asterisk/Makefile @@ -42,13 +42,15 @@ OPTIONS= OGGVORBIS "Enable Ogg Vorbis support" on \ ODBC "Enable ODBC support" on \ POSTGRES "Enable PostgreSQL support" on \ RADIUS "Enable RADIUS accounting support" on \ - SNMP "Enable SNMP support" on + SNMP "Enable SNMP support" on \ + H323 "Enable H.323 support" on .include <bsd.port.pre.mk> .if ${ARCH} == "i386" -OPTIONS+= H323 "Enable H.323 support" on \ - ZAPTEL "Enable Zaptel support" on +OPTIONS+= ZAPTEL "Enable Zaptel support" on +.else +WITHOUT_ZAPTEL= yes .endif .if defined(WITHOUT_H323) |