diff options
author | will <will@FreeBSD.org> | 2000-12-04 05:01:58 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-12-04 05:01:58 +0800 |
commit | 8dedc14ef4950cebf7e35dc75588673b5ef745a7 (patch) | |
tree | 9db89dea996d79e4ba264a106c2a354436631f32 /www/webstone-ssl/files | |
parent | caae8fea3dde623640ced6c5d518d7de52630c64 (diff) | |
download | freebsd-ports-gnome-8dedc14ef4950cebf7e35dc75588673b5ef745a7.tar.gz freebsd-ports-gnome-8dedc14ef4950cebf7e35dc75588673b5ef745a7.tar.zst freebsd-ports-gnome-8dedc14ef4950cebf7e35dc75588673b5ef745a7.zip |
Add Webstone-SSL 2.5, a benchmarking tool that supports SSL-enabled
http servers.
PR: 22560
Submitted by: Kazumasa Nishizawa <k_nishizawa@anet.ne.jp>
Diffstat (limited to 'www/webstone-ssl/files')
-rw-r--r-- | www/webstone-ssl/files/patch-ab | 14 | ||||
-rw-r--r-- | www/webstone-ssl/files/patch-ac | 13 | ||||
-rw-r--r-- | www/webstone-ssl/files/patch-ad | 25 |
3 files changed, 52 insertions, 0 deletions
diff --git a/www/webstone-ssl/files/patch-ab b/www/webstone-ssl/files/patch-ab new file mode 100644 index 000000000000..d2f98058f3b5 --- /dev/null +++ b/www/webstone-ssl/files/patch-ab @@ -0,0 +1,14 @@ +--- Makefile.in.orig Mon Sep 4 18:52:21 2000 ++++ Makefile.in Mon Sep 4 18:52:45 2000 +@@ -64,9 +64,9 @@ + .SUFFIXES: + .SUFFIXES: .c .o + +-all: $(TARGETS) cgi api ++all: $(TARGETS) cgi + +-install: all install-api install-cgi ++install: all install-cgi + $(CP) $(TARGETS) $(BINDIR) + + pure: all diff --git a/www/webstone-ssl/files/patch-ac b/www/webstone-ssl/files/patch-ac new file mode 100644 index 000000000000..111a77922562 --- /dev/null +++ b/www/webstone-ssl/files/patch-ac @@ -0,0 +1,13 @@ +--- configure.in.orig Fri Jun 16 05:55:49 2000 ++++ configure.in Fri Oct 27 15:15:36 2000 +@@ -79,8 +79,9 @@ + # Replace `main' with a function in -lm: + AC_CHECK_LIB(m, floor) +-AC_CHECK_LIB(nsl, gethostbyname) +-AC_CHECK_LIB(socket, connect, AC_SUBST(LIBS), , -lnsl) ++#AC_CHECK_LIB(nsl, gethostbyname) ++#AC_CHECK_LIB(socket, connect, AC_SUBST(LIBS), , -lnsl) ++AC_CHECK_LIB(c, connect) + + # + # checks for header files diff --git a/www/webstone-ssl/files/patch-ad b/www/webstone-ssl/files/patch-ad new file mode 100644 index 000000000000..2f485df1ef9e --- /dev/null +++ b/www/webstone-ssl/files/patch-ad @@ -0,0 +1,25 @@ +--- Makefile.in.orig Mon Oct 30 14:40:23 2000 ++++ Makefile.in Mon Oct 30 14:45:31 2000 +@@ -29,7 +29,7 @@ + VERSION = @VERSION@ + + CC = @CC@ +-LIBS = @LIBS@ -lssl -lcrypto #-lm ++LIBS = @LIBS@ -lssl -lcrypto -lcompat #-lm + LDFLAGS = @LDFLAGS@ + INCLUDES = + CFLAGS = @CFLAGS@ -DSTONE_SSL +@@ -47,11 +47,11 @@ + MAIN3 = genrand.c + + MASTERSRCS = timefunc.c bench.c parse_file_list.c statistics.c \ +- errexit.c sysdep.c ++ errexit.c sysdep.c random.c + + STONESRCS = timefunc.c get.c \ + parse_file_list.c bench.c statistics.c errexit.c \ +- sysdep.c ++ sysdep.c random.c + + COMPILE = $(CC) $(CFLAGS) $(DEFS) $(INCLUDES) + |