diff options
author | Koop Mast <kwm@FreeBSD.org> | 2004-12-05 11:27:30 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2004-12-05 11:27:30 +0000 |
commit | 489768663293caf2f5edacc4188655700dee6ef9 (patch) | |
tree | 4998394557123fdc48ab5fbebfa3bc852bc0ce41 /ftp/quftp | |
parent | 0915eda7fa9ea48bb36327967f446240d7b3c7e0 (diff) | |
download | ports-489768663293caf2f5edacc4188655700dee6ef9.tar.gz ports-489768663293caf2f5edacc4188655700dee6ef9.zip |
Fix build on sparc64.
PR: 73979
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=123219
Diffstat (limited to 'ftp/quftp')
-rw-r--r-- | ftp/quftp/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ftp/quftp/Makefile b/ftp/quftp/Makefile index b3745ef8ab76..600947491ccb 100644 --- a/ftp/quftp/Makefile +++ b/ftp/quftp/Makefile @@ -7,7 +7,7 @@ PORTNAME= quftp PORTVERSION= 1.0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ftp MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= quftp @@ -18,6 +18,7 @@ COMMENT= A scriptable FTP client LIB_DEPENDS= readline.5:${PORTSDIR}/devel/readline GNU_CONFIGURE= yes +USE_REINPLACE= yes CFLAGS+= ${PTHREAD_CFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS} CONFIGURE_ENV= CFLAGS="${CFLAGS}" @@ -26,4 +27,7 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAN1= quftp.1 PLIST_FILES= bin/quftp +pre-configure: + @${REINPLACE_CMD} -e 's|-O6|-O2|g' ${WRKSRC}/Makefile.in + .include <bsd.port.mk> |