summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2007-02-09 17:57:52 +0000
committerAlin Năstac <mrness@gentoo.org>2007-02-09 17:57:52 +0000
commit66fc8572670a4824388785bfaf30872f1ac2980b (patch)
treea46e898cbdaf085b068e29f42e7483209b7299f3 /net-dialup/gnuradius/files
parentRemove obsolete version (diff)
downloadgentoo-2-66fc8572670a4824388785bfaf30872f1ac2980b.tar.gz
gentoo-2-66fc8572670a4824388785bfaf30872f1ac2980b.tar.bz2
gentoo-2-66fc8572670a4824388785bfaf30872f1ac2980b.zip
Remove obsolete version
(Portage version: 2.1.1-r2) (Signed Manifest commit)
Diffstat (limited to 'net-dialup/gnuradius/files')
-rw-r--r--net-dialup/gnuradius/files/digest-gnuradius-1.3-r23
-rw-r--r--net-dialup/gnuradius/files/gnuradius-1.3-gcc41.patch45
2 files changed, 0 insertions, 48 deletions
diff --git a/net-dialup/gnuradius/files/digest-gnuradius-1.3-r2 b/net-dialup/gnuradius/files/digest-gnuradius-1.3-r2
deleted file mode 100644
index e19d72f1dfce..000000000000
--- a/net-dialup/gnuradius/files/digest-gnuradius-1.3-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 ab0223f6504355c4827a7c03cb4e21b0 radius-1.3.tar.gz 2047469
-RMD160 95eac017c0c2bfa881bde343d3afa6af5d87e530 radius-1.3.tar.gz 2047469
-SHA256 3e2bd3f2e6f9b062ccc2fde80fa26e46a2a2f3645227daca427501135e5846c5 radius-1.3.tar.gz 2047469
diff --git a/net-dialup/gnuradius/files/gnuradius-1.3-gcc41.patch b/net-dialup/gnuradius/files/gnuradius-1.3-gcc41.patch
deleted file mode 100644
index 41009b4f6573..000000000000
--- a/net-dialup/gnuradius/files/gnuradius-1.3-gcc41.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -Nru radius-1.3.orig/radiusd/log.c radius-1.3/radiusd/log.c
---- radius-1.3.orig/radiusd/log.c 2004-11-01 15:09:32.000000000 +0200
-+++ radius-1.3/radiusd/log.c 2006-09-22 20:52:42.598582000 +0300
-@@ -182,7 +182,7 @@
- if (rewrite_invoke(String,
- &result,
- hook_name,
-- req,
-+ (grad_request_t *)req,
- "isi",
- req->code,
- grad_nas_request_to_name(req,
-@@ -196,8 +196,8 @@
- channel_format_prefix(struct logbuf *bufp,
- Channel *chan, const grad_request_t *req)
- {
-- char **hook_name_ptr = &(chan->prefix_hook ?
-- chan->prefix_hook : log_prefix_hook);
-+ char **hook_name_ptr = (chan->prefix_hook ?
-+ &chan->prefix_hook : &log_prefix_hook);
- char *hook_res = NULL;
-
- if (*hook_name_ptr) {
-@@ -214,8 +214,8 @@
- channel_format_suffix(struct logbuf *bufp,
- Channel *chan, const grad_request_t *req)
- {
-- char **hook_name_ptr = &(chan->suffix_hook ?
-- chan->suffix_hook : log_suffix_hook);
-+ char **hook_name_ptr = (chan->suffix_hook ?
-+ &chan->suffix_hook : &log_suffix_hook);
- char *hook_res = NULL;
-
- if (*hook_name_ptr) {
-diff -Nru radius-1.3.orig/include/radiusd.h radius-1.3/include/radiusd.h
---- radius-1.3.orig/include/radiusd.h 2004-11-02 12:14:09.000000000 +0200
-+++ radius-1.3/include/radiusd.h 2006-09-22 20:56:29.592768250 +0300
-@@ -339,7 +339,6 @@
- extern int max_threads;
- extern int num_threads;
- #ifdef USE_SERVER_GUILE
--extern unsigned scheme_gc_interval;
- extern u_int scheme_task_timeout;
- #endif
- #ifdef USE_SNMP