mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
Upgrade memcached to 1.1.8
Noticed by: fenner's distfile survey
This commit is contained in:
parent
e34d3e58dc
commit
404af3e9bb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=87461
@ -6,9 +6,9 @@
|
||||
#
|
||||
|
||||
PORTNAME= memcached
|
||||
PORTVERSION= 1.1.6
|
||||
PORTVERSION= 1.1.8
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.danga.com/memcached/
|
||||
MASTER_SITES= http://www.danga.com/memcached/dist/
|
||||
|
||||
MAINTAINER= seanc@FreeBSD.org
|
||||
COMMENT= High-performance distributed memory object cache system
|
||||
|
@ -1 +1 @@
|
||||
MD5 (memcached-1.1.6.tar.gz) = e175c78e66b9120aa2c007f2bbacc2b4
|
||||
MD5 (memcached-1.1.8.tar.gz) = ee7302df1b634beedccae3a97e5d207b
|
||||
|
@ -1,11 +1,10 @@
|
||||
--- items.c.orig Mon Jul 21 22:57:51 2003
|
||||
+++ items.c Mon Jul 21 22:57:58 2003
|
||||
@@ -17,8 +17,6 @@
|
||||
--- items.c.orig Thu Aug 21 11:05:52 2003
|
||||
+++ items.c Thu Aug 21 11:05:56 2003
|
||||
@@ -17,7 +17,6 @@
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
#include <event.h>
|
||||
-#include <malloc.h>
|
||||
-#include <Judy.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include "memcached.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- memcached.c.orig Mon Jul 21 22:56:55 2003
|
||||
+++ memcached.c Mon Jul 21 22:58:46 2003
|
||||
--- memcached.c.orig Tue Jul 29 22:43:57 2003
|
||||
+++ memcached.c Thu Aug 21 11:18:45 2003
|
||||
@@ -34,7 +34,6 @@
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
@ -8,7 +8,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
#include "memcached.h"
|
||||
@@ -293,26 +292,6 @@
|
||||
@@ -314,26 +313,6 @@
|
||||
return;
|
||||
}
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
if (strcmp(command, "stats maps") == 0) {
|
||||
char *wbuf;
|
||||
int wsize = 8192; /* should be enough */
|
||||
@@ -1089,7 +1068,6 @@
|
||||
@@ -1114,7 +1093,6 @@
|
||||
printf("-d run as a daemon\n");
|
||||
printf("-m <num> max memory to use for items in megabytes, default is 64 MB\n");
|
||||
printf("-c <num> max simultaneous connections, default is 1024\n");
|
||||
@ -43,7 +43,25 @@
|
||||
printf("-v verbose (print errors/warnings while in event loop)\n");
|
||||
printf("-h print this help and exit\n");
|
||||
printf("-i print memcached and libevent license\n");
|
||||
@@ -1236,11 +1214,6 @@
|
||||
@@ -1198,7 +1176,6 @@
|
||||
int c;
|
||||
conn *l_conn;
|
||||
struct in_addr addr;
|
||||
- int lock_memory = 0;
|
||||
int daemonize = 0;
|
||||
|
||||
/* init settings */
|
||||
@@ -1222,9 +1199,6 @@
|
||||
case 'i':
|
||||
usage_license();
|
||||
exit(0);
|
||||
- case 'k':
|
||||
- lock_memory = 1;
|
||||
- break;
|
||||
case 'v':
|
||||
settings.verbose = 1;
|
||||
break;
|
||||
@@ -1261,11 +1235,6 @@
|
||||
fprintf(stderr, "failed to daemon() in order to daemonize\n");
|
||||
return 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user