diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-09-15 20:03:05 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-09-15 20:03:05 +0800 |
commit | 2601f0b13d8336a818e58f20728d056f19985f4c (patch) | |
tree | 507f0ccaef733931467e5d103641dd174bbc433e /security/stunnel | |
parent | 7c01914b3f16db97ce1d287e46222824c01d3968 (diff) | |
download | freebsd-ports-gnome-2601f0b13d8336a818e58f20728d056f19985f4c.tar.gz freebsd-ports-gnome-2601f0b13d8336a818e58f20728d056f19985f4c.tar.zst freebsd-ports-gnome-2601f0b13d8336a818e58f20728d056f19985f4c.zip |
Unbreak Package-Build, removed IS_INTERACTIVE
Diffstat (limited to 'security/stunnel')
-rw-r--r-- | security/stunnel/Makefile | 1 | ||||
-rw-r--r-- | security/stunnel/files/patch-Makefile.in | 20 |
2 files changed, 20 insertions, 1 deletions
diff --git a/security/stunnel/Makefile b/security/stunnel/Makefile index a428e5f1febf..ade3d13e9a5a 100644 --- a/security/stunnel/Makefile +++ b/security/stunnel/Makefile @@ -16,7 +16,6 @@ MASTER_SITES= http://www.stunnel.org/download/stunnel/src/ \ MAINTAINER= martti.kuparinen@iki.fi USE_OPENSSL= YES -IS_INTERACTIVE= YES # prompts for information while generating certificate GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var/run --with-pem-dir=${PEM_DIR} diff --git a/security/stunnel/files/patch-Makefile.in b/security/stunnel/files/patch-Makefile.in new file mode 100644 index 000000000000..117672685d0f --- /dev/null +++ b/security/stunnel/files/patch-Makefile.in @@ -0,0 +1,20 @@ +--- Makefile.in.orig Sun Dec 23 20:03:25 2001 ++++ Makefile.in Sun Sep 15 14:00:00 2002 +@@ -24,7 +24,7 @@ + LIBS=@LIBS@ + HEADERS=common.h prototypes.h client.h + OBJS=client.o stunnel.o ssl.o protocol.o sthreads.o pty.o log.o options.o +-DESTFILES=$(sbindir)/stunnel $(libdir)/stunnel.so $(man8dir)/stunnel.8 $(PEM_DIR)/stunnel.pem ++DESTFILES=$(sbindir)/stunnel $(libdir)/stunnel.so $(man8dir)/stunnel.8 + + WINGCC=i386-mingw32msvc-gcc + WINCFLAGS=-O2 -Wall -DUSE_WIN32=1 -DHAVE_OPENSSL=1 -DFD_SETSIZE=4096 -DVERSION=\"@VERSION@\" -I../openssl-0.9.6b/outinc +@@ -33,7 +33,7 @@ + + # standard external rules + +-all: stunnel stunnel.8 stunnel.html stunnel.so stunnel.pem ++all: stunnel stunnel.8 stunnel.html stunnel.so + + install: all installdirs $(DESTFILES) + |