diff options
author | dinoex <dinoex@FreeBSD.org> | 2004-10-13 12:33:21 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2004-10-13 12:33:21 +0000 |
commit | 2f16aaf9a33ac77f40a25ede1a689c1e4d6df605 (patch) | |
tree | 05615558a9fcc48ad779aed5b0bb656d87917423 /net-im | |
parent | e99a173a56378726c05a3de1360bd5e3e5e0b5a1 (diff) | |
download | FreeBSD-ports-2f16aaf9a33ac77f40a25ede1a689c1e4d6df605.zip FreeBSD-ports-2f16aaf9a33ac77f40a25ede1a689c1e4d6df605.tar.gz |
- Fix gcc regression in STABLE
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/licq-console/Makefile | 11 | ||||
-rw-r--r-- | net-im/licq-console/files/patch-window.h | 11 |
2 files changed, 21 insertions, 1 deletions
diff --git a/net-im/licq-console/Makefile b/net-im/licq-console/Makefile index cba731a..2657116 100644 --- a/net-im/licq-console/Makefile +++ b/net-im/licq-console/Makefile @@ -14,10 +14,19 @@ LIB_DEPENDS= cdk.4:${PORTSDIR}/devel/cdk MAINTAINER= dinoex@FreeBSD.org COMMENT= Ncurses-based console plugin for Licq -CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" \ +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ + LDFLAGS="${LDFLAGS}" \ LIBS="${PTHREAD_LIBS}" LICQ_PORT?= net/licq +CPPFLAGS+= ${PTHREAD_CFLAGS} +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib .include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +USE_GCC= 3.3 +.endif + .include "${PORTSDIR}/${LICQ_PORT}/Makefile.inc" .include <bsd.port.post.mk> diff --git a/net-im/licq-console/files/patch-window.h b/net-im/licq-console/files/patch-window.h new file mode 100644 index 0000000..f598519 --- /dev/null +++ b/net-im/licq-console/files/patch-window.h @@ -0,0 +1,11 @@ +--- src/window.h.orig Thu Sep 30 03:51:03 2004 ++++ src/window.h Wed Oct 13 14:19:58 2004 +@@ -3,7 +3,7 @@ + + #include <iostream> + extern "C" { +-#include <cdk.h> ++#include <cdk/cdk.h> + } + + #define COLOR_YELLOW_BLUE COLOR_YELLOW + 8 |