mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
updated RISC OS stuff
This commit is contained in:
parent
da2cb3910d
commit
3782e1595e
@ -1,3 +1,7 @@
|
|||||||
|
2002-09-12 Stefan Bellon <sbellon@sbellon.de>
|
||||||
|
|
||||||
|
* rand-internal.h (rndriscos_gather_random): Added prototype.
|
||||||
|
|
||||||
2002-08-30 Werner Koch <wk@gnupg.org>
|
2002-08-30 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* random.c: Automagically detect the entropy gatherer when
|
* random.c: Automagically detect the entropy gatherer when
|
||||||
|
@ -31,6 +31,8 @@ int rndw32_gather_random (void (*add)(const void*, size_t, int),
|
|||||||
int requester, size_t length, int level);
|
int requester, size_t length, int level);
|
||||||
int rndw32_gather_random_fast (void (*add)(const void*, size_t, int),
|
int rndw32_gather_random_fast (void (*add)(const void*, size_t, int),
|
||||||
int requester );
|
int requester );
|
||||||
|
int rndriscos_gather_random (void (*add)(const void*, size_t, int),
|
||||||
|
int requester, size_t length, int level);
|
||||||
|
|
||||||
|
|
||||||
#endif /*G10_RAND_INTERNAL_H*/
|
#endif /*G10_RAND_INTERNAL_H*/
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2002-09-12 Stefan Bellon <sbellon@sbellon.de>
|
||||||
|
|
||||||
|
* gpgkeys_hkp.c: Tidied up RISC OS initializations.
|
||||||
|
|
||||||
2002-09-12 David Shaw <dshaw@jabberwocky.com>
|
2002-09-12 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* gpgkeys_hkp.c (main): Remove warning - this is no longer
|
* gpgkeys_hkp.c (main): Remove warning - this is no longer
|
||||||
|
@ -46,6 +46,10 @@ struct keylist
|
|||||||
struct keylist *next;
|
struct keylist *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef __riscos__
|
||||||
|
RISCOS_GLOBAL_STATICS("HKP Keyfetcher Heap")
|
||||||
|
#endif /* __riscos__ */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
urlencode_filter( void *opaque, int control,
|
urlencode_filter( void *opaque, int control,
|
||||||
IOBUF a, byte *buf, size_t *ret_len)
|
IOBUF a, byte *buf, size_t *ret_len)
|
||||||
@ -639,6 +643,10 @@ int main(int argc,char *argv[])
|
|||||||
int failed=0;
|
int failed=0;
|
||||||
struct keylist *keylist=NULL,*keyptr=NULL;
|
struct keylist *keylist=NULL,*keyptr=NULL;
|
||||||
|
|
||||||
|
#ifdef __riscos__
|
||||||
|
riscos_global_defaults();
|
||||||
|
#endif
|
||||||
|
|
||||||
console=stderr;
|
console=stderr;
|
||||||
|
|
||||||
while((arg=getopt(argc,argv,"ho:"))!=-1)
|
while((arg=getopt(argc,argv,"ho:"))!=-1)
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
2002-09-12 Stefan Bellon <sbellon@sbellon.de>
|
||||||
|
|
||||||
|
* fileutil.c (make_filename): Removed variable for RISC OS to
|
||||||
|
avoid compiler warning.
|
||||||
|
|
||||||
|
* secmem.c: Removed static variable for RISC OS to avoid
|
||||||
|
compiler warning.
|
||||||
|
|
||||||
2002-09-11 Werner Koch <wk@gnupg.org>
|
2002-09-11 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* simple-gettext.c: Disable charset mappings. We do it now when
|
* simple-gettext.c: Disable charset mappings. We do it now when
|
||||||
|
@ -99,7 +99,11 @@ make_filename( const char *first_part, ... )
|
|||||||
va_list arg_ptr ;
|
va_list arg_ptr ;
|
||||||
size_t n;
|
size_t n;
|
||||||
const char *s;
|
const char *s;
|
||||||
|
#ifndef __riscos__
|
||||||
char *name, *home, *p;
|
char *name, *home, *p;
|
||||||
|
#else
|
||||||
|
char *name, *p;
|
||||||
|
#endif
|
||||||
|
|
||||||
va_start( arg_ptr, first_part ) ;
|
va_start( arg_ptr, first_part ) ;
|
||||||
n = strlen(first_part)+1;
|
n = strlen(first_part)+1;
|
||||||
|
@ -66,7 +66,9 @@ struct memblock_struct {
|
|||||||
|
|
||||||
static void *pool;
|
static void *pool;
|
||||||
static volatile int pool_okay; /* may be checked in an atexit function */
|
static volatile int pool_okay; /* may be checked in an atexit function */
|
||||||
|
#ifdef HAVE_MMAP
|
||||||
static volatile int pool_is_mmapped;
|
static volatile int pool_is_mmapped;
|
||||||
|
#endif
|
||||||
static size_t poolsize; /* allocated length */
|
static size_t poolsize; /* allocated length */
|
||||||
static size_t poollen; /* used length */
|
static size_t poollen; /* used length */
|
||||||
static MEMBLOCK *unused_blocks;
|
static MEMBLOCK *unused_blocks;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user