diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-04-13 18:26:51 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-04-13 18:26:51 +0000 |
commit | cbd50e2b812570aebad173a913ffa8221486449d (patch) | |
tree | e9e9a733c288b5b214f8cac744d4bc2b582d4f7b /net/ossp-sa | |
parent | 287aeadbe482d26505b29a60b4f4947b7e765ab9 (diff) | |
download | ports-cbd50e2b812570aebad173a913ffa8221486449d.tar.gz ports-cbd50e2b812570aebad173a913ffa8221486449d.zip |
Notes
Diffstat (limited to 'net/ossp-sa')
-rw-r--r-- | net/ossp-sa/Makefile | 8 | ||||
-rw-r--r-- | net/ossp-sa/files/patch-ts.c | 14 |
2 files changed, 15 insertions, 7 deletions
diff --git a/net/ossp-sa/Makefile b/net/ossp-sa/Makefile index fa7ea2fb3155..7c7b0bf8d0ab 100644 --- a/net/ossp-sa/Makefile +++ b/net/ossp-sa/Makefile @@ -25,10 +25,4 @@ USE_LIBTOOL_VER= 15 INSTALLS_SHLIB= yes MAN3+= sa.3 -.include <bsd.port.pre.mk> - -.if ${ARCH} == "amd64" -BROKEN= "Does not compile on amd64" -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/net/ossp-sa/files/patch-ts.c b/net/ossp-sa/files/patch-ts.c new file mode 100644 index 000000000000..2fc4064b1726 --- /dev/null +++ b/net/ossp-sa/files/patch-ts.c @@ -0,0 +1,14 @@ +--- ts.c.orig Tue Apr 13 20:23:45 2004 ++++ ts.c Tue Apr 13 20:24:18 2004 +@@ -206,7 +206,11 @@ + + if (format == NULL) + return NULL; ++#ifdef __amd64__ ++ va_copy(ap2,ap); ++#else + ap2 = ap; ++#endif + if ((n = ts_suite_mvxprintf(NULL, 0, format, ap)) == -1) + return NULL; + if ((buffer = (char *)malloc(n+1)) == NULL) |