diff options
author | roger <roger@FreeBSD.org> | 2002-01-15 09:31:22 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2002-01-15 09:31:22 +0000 |
commit | c07edbb95f3ca5091ca55174ec10ecf75d286ab4 (patch) | |
tree | 7597b2d3fa5fd587168c14a743270a8d02fa2396 /net/openh323 | |
parent | 802f16d3c2afc6d9a1c7c7b1a45823c7094c5daf (diff) | |
download | FreeBSD-ports-c07edbb95f3ca5091ca55174ec10ecf75d286ab4.zip FreeBSD-ports-c07edbb95f3ca5091ca55174ec10ecf75d286ab4.tar.gz |
Patch to look for the ixj driver (now in ports/comms/ixj)
header files in /usr/local/include/sys (as well as /usr/include/sys)
Bump port revision
Diffstat (limited to 'net/openh323')
-rw-r--r-- | net/openh323/Makefile | 1 | ||||
-rw-r--r-- | net/openh323/files/patch-ab | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/net/openh323/Makefile b/net/openh323/Makefile index bc54262..bebd144 100644 --- a/net/openh323/Makefile +++ b/net/openh323/Makefile @@ -7,6 +7,7 @@ PORTNAME= openh323 PORTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.openh323.org/bin/ \ http://www.de.openh323.org/bin/ \ diff --git a/net/openh323/files/patch-ab b/net/openh323/files/patch-ab new file mode 100644 index 0000000..44efc14 --- /dev/null +++ b/net/openh323/files/patch-ab @@ -0,0 +1,16 @@ +*** openh323u.mak.orig Tue Jan 15 09:05:05 2002 +--- openh323u.mak Tue Jan 15 09:05:41 2002 +*************** HAS_IXJ = 1 +*** 124,129 **** +--- 124,134 ---- + STDCCFLAGS += -DHAS_IXJ + endif + ++ ifneq (,$(wildcard /usr/local/include/sys/telephony.h)) ++ HAS_IXJ = 1 ++ STDCCFLAGS += -DHAS_IXJ -I/usr/local/include ++ endif ++ + ifneq (,$(wildcard /usr/include/linux/soundcard.h)) + HAS_OSS = 1 + STDCCFLAGS += -DHAS_OSS |