diff options
author | beech <beech@FreeBSD.org> | 2011-06-28 03:39:25 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2011-06-28 03:39:25 +0800 |
commit | 42ac6a4e76561d78438834c8dc1237ac2bd4931e (patch) | |
tree | 36522916f8ada1ad0956d2a5bc8c88b9951494c8 /irc/eggdrop | |
parent | 0cff8ca4b9b2f8835defcb55fca54f1949969b40 (diff) | |
download | freebsd-ports-gnome-42ac6a4e76561d78438834c8dc1237ac2bd4931e.tar.gz freebsd-ports-gnome-42ac6a4e76561d78438834c8dc1237ac2bd4931e.tar.zst freebsd-ports-gnome-42ac6a4e76561d78438834c8dc1237ac2bd4931e.zip |
- Mark IGNORE if WITH_SSL is defined, and the system is amd64
PR: ports/158338
Submitted by: Glen Barber <gjb@FreeBSD.org>
Diffstat (limited to 'irc/eggdrop')
-rw-r--r-- | irc/eggdrop/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/irc/eggdrop/Makefile b/irc/eggdrop/Makefile index 9389da0c3525..d62002babddd 100644 --- a/irc/eggdrop/Makefile +++ b/irc/eggdrop/Makefile @@ -23,11 +23,11 @@ COMMENT= The most popular open source Internet Relay Chat bot USE_TCL= 85+ GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-tcllib=${LOCALBASE}/lib/libtcl${TCL_VER:S/.//}.so \ - --with-tclinc=${TCL_INCLUDEDIR}/tcl.h +#CONFIGURE_ARGS= --with-tcllib=${LOCALBASE}/lib/libtcl${TCL_VER:S/.//}.so \ +# --with-tclinc=${TCL_INCLUDEDIR}/tcl.h MAKE_JOBS_UNSAFE= yes -OPTIONS= SSL "Use SSL" off +OPTIONS= SSL "Use SSL" on MAN1= eggdrop.1 @@ -38,10 +38,13 @@ SUB_FILES= pkg-message LICENSE= GPLv2 .if defined(WITH_SSL) +. if ${ARCH} == "amd64" +IGNORE= ssl support is broken on amd64 +. endif EXTRA_PATCHES= ${WRKDIR}/eggdrop-1.6.20-ssl.patch CFLAGS+= -DHAVE_OPENSSL -CONFIGURE_ARGS+= --with-ssl +#CONFIGURE_ARGS+= --with-ssl .endif post-patch: |