diff options
author | mich <mich@FreeBSD.org> | 2012-11-26 19:06:09 +0800 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2012-11-26 19:06:09 +0800 |
commit | 48b78a1a482bdd246638240a3e6b06b2e47a9ba3 (patch) | |
tree | b4d3412018269b3279d987ec58d0b9a89f91903e /misc/rpl | |
parent | b134acea930f64d134246e9c45a381154dc56f44 (diff) | |
download | freebsd-ports-gnome-48b78a1a482bdd246638240a3e6b06b2e47a9ba3.tar.gz freebsd-ports-gnome-48b78a1a482bdd246638240a3e6b06b2e47a9ba3.tar.zst freebsd-ports-gnome-48b78a1a482bdd246638240a3e6b06b2e47a9ba3.zip |
- update to -> 1.4.1
Feature safe: yes
Diffstat (limited to 'misc/rpl')
-rw-r--r-- | misc/rpl/Makefile | 2 | ||||
-rw-r--r-- | misc/rpl/distinfo | 4 | ||||
-rw-r--r-- | misc/rpl/files/patch-src_replace.h | 23 |
3 files changed, 3 insertions, 26 deletions
diff --git a/misc/rpl/Makefile b/misc/rpl/Makefile index eaa9a36a9fb1..cbb0b39b00de 100644 --- a/misc/rpl/Makefile +++ b/misc/rpl/Makefile @@ -7,7 +7,7 @@ # PORTNAME= rpl -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= misc MASTER_SITES= http://downloads.laffeycomputer.com/current_builds/ diff --git a/misc/rpl/distinfo b/misc/rpl/distinfo index 7d48e4d2a473..c105ee7e9ba2 100644 --- a/misc/rpl/distinfo +++ b/misc/rpl/distinfo @@ -1,2 +1,2 @@ -SHA256 (rpl-1.4.0.tar.gz) = f9ddb40ab3cf550d4ad1977f448f3b083035645a89ecba581bb57577a6c04caa -SIZE (rpl-1.4.0.tar.gz) = 59602 +SHA256 (rpl-1.4.1.tar.gz) = 291055dc8763c855bab76142b5f7e9625392bcefa524b796bc4ddbcf941a1310 +SIZE (rpl-1.4.1.tar.gz) = 65792 diff --git a/misc/rpl/files/patch-src_replace.h b/misc/rpl/files/patch-src_replace.h deleted file mode 100644 index 875a46626545..000000000000 --- a/misc/rpl/files/patch-src_replace.h +++ /dev/null @@ -1,23 +0,0 @@ - -$FreeBSD$ - ---- src/replace.h.orig -+++ src/replace.h -@@ -77,8 +77,7 @@ - - /* This is a simple macro to call malloc() and die if it returns null */ - #define MALLOC_FAIL_STRING ("\n" PACKAGE " Unable to allocate memory!") --#define MALLOC_AND_CHECK( x, y ) (void*)(x)=malloc((y));if(x==NULL){fprintf(stderr,"\n%s --> %s:%d\n", MALLOC_FAIL_STRING, __FILE__, __LINE__ );exit(EX_OSERR);} -- -+#define MALLOC_AND_CHECK( x, y ) (x)=malloc((y));if(x==NULL){fprintf(stderr,"\n%s --> %s:%d\n", MALLOC_FAIL_STRING, __FILE__, __LINE__ );exit(EX_OSERR);} - - /* Function Prototypes */ - -@@ -90,4 +89,5 @@ - - static void EchoFeedback(int, int, int, char*); - --static void SetPerms(struct stat, int, int, char*, int* ); -\ No newline at end of file -+static void SetPerms(struct stat, int, int, char*, int* ); -+ |