diff options
author | roam <roam@FreeBSD.org> | 2003-09-10 15:02:52 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2003-09-10 15:02:52 +0800 |
commit | 717d072cdc90a1edf12761977ec690d6d1cb6a4c (patch) | |
tree | e2e12c39cd7adc594e0dac3917da7d457979fb0d | |
parent | a522705b0c99ca53ec5928b627df4f6aed884f06 (diff) | |
download | freebsd-ports-gnome-717d072cdc90a1edf12761977ec690d6d1cb6a4c.tar.gz freebsd-ports-gnome-717d072cdc90a1edf12761977ec690d6d1cb6a4c.tar.zst freebsd-ports-gnome-717d072cdc90a1edf12761977ec690d6d1cb6a4c.zip |
Mark BROKEN on 64-bit arches (1).
De-quote the COMMENT variable.
Fix a typo in a comment.
Reported by: naddy (1)
-rw-r--r-- | ftp/curl/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 6dcc80015c52..4df6ca4cd3c5 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -16,7 +16,7 @@ MASTER_SITES= http://curl.haxx.se/download/ \ MASTER_SITE_SUBDIR= curl MAINTAINER= roam@FreeBSD.org -COMMENT= "Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers" +COMMENT= Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers MAN1= curl.1 curl-config.1 MAN3= curl_easy_cleanup.3 curl_easy_duphandle.3 curl_easy_getinfo.3 \ @@ -51,6 +51,11 @@ USE_OPENSSL= yes .include <bsd.port.pre.mk> +.if ${ARCH} == "sparc64" || ${ARCH} == "alpha" || ${ARCH} == "ia64" || \ + ${ARCH} == "powerpc" +BROKEN= "DNS resolution problems on 64-bit machines" +.endif + .if !defined(WITHOUT_SSL) CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} .else @@ -61,7 +66,7 @@ CONFIGURE_ARGS= --without-ssl CONFIGURE_ARGS += --with-krb4=/usr .endif -# Note: some of these tests seem to intermitently fail on my system. +# Note: some of these tests seem to intermittently fail on my system. # I don't know why they would do that, yet. test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test |