diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2007-04-13 08:55:48 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2007-04-13 08:55:48 +0000 |
commit | 8ea384e80e63db1523b7692031496e41cbdacfc7 (patch) | |
tree | 74a596aecccc9820bb896af4137deac83209b9e2 /net/asterisk14 | |
parent | Make sysctl check less noisy if compat.linux.osrelease doesn't exist. (diff) |
o Unbreak on non-i386;
o Move H323 option from i386-only section to generic one. It works fine at
least on amd64.
Notes
Notes:
svn path=/head/; revision=189890
Diffstat (limited to 'net/asterisk14')
-rw-r--r-- | net/asterisk14/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/asterisk14/Makefile b/net/asterisk14/Makefile index 621b9f859077..664a9fb2fef4 100644 --- a/net/asterisk14/Makefile +++ b/net/asterisk14/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) |