search for: thayne

Displaying 20 results from an estimated 20 matches for "thayne".

Did you mean: shayne
2006 Sep 07
1
rgdal on a Mac
I am trying to install the rgdal package on my Mac OS X 3.9. I downloaded and installed the GDAL libraries from Fink and then tried to install rgdal and got the following message. I tried to determine if the GDAL libraries were in my path but I'm not sure how to do that. Any ideas? Thanks. trying URL 'http://www.biometrics.mtu.edu/CRAN/src/contrib/rgdal_0.4-10.tar.gz'
2011 Nov 01
2
Discrepancy with p.value from t.test
Sometimes the p.value returned by t.test() is the same that I calculate using pt() and sometimes it's not. I don't understand the difference. I'm sure there is a simple explanation but I haven't been able to find it, even after looking at the code for t.test.default. I apologize if this is a basic and obvious question. For example: > data(sleep) >
2005 Jan 05
1
[PATCH] kinit/kinit.c
...{ - kinit = cmdv[i] + 6; - } - } - - if (kinit) { + if ((kinit = get_arg(cmdc, cmdv, "kinit="))) { char *s = strrchr(kinit, '/'); if (s) { s++; } - init_argv[0] = kinit; + init_argv[0] = s; execv(kinit, init_argv); } init_argv[0] = "init"; -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/bb97b7ab/attachment....
2005 Jan 05
1
[PATCH] kinit/nfsmount.c path from bootp
...if ((opts = strchr(path, ',')) != NULL) { + *opts++ = '\0'; + argv[a++] = (char *) "-o"; + argv[a++] = opts; + } + if ((x = strchr(path, ':')) == NULL) { if (addr.s_addr == INADDR_NONE) { fprintf(stderr, "Root-NFS: no server defined\n"); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/b06ad3bb/attachment....
2004 Oct 22
1
[PATCH] off-by-one in asprintf/vasprintf
.../vasprintf.c 2004-10-22 12:08:23.497660496 -0600 @@ -14,10 +14,10 @@ va_copy(ap1, ap); - bytes = vsnprintf(NULL, 0, format, ap1); + bytes = vsnprintf(NULL, 0, format, ap1) + 1; va_end(ap1); - *bufp = p = malloc(bytes+1); + *bufp = p = malloc(bytes); if ( !p ) return -1; -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20041022/74f45458/attachment....
2004 Oct 25
1
chicken/egg between pipefs and initramfs/hotplug
...c:get_pipe_inode(). Has this been discussed before? Is there something that userspace can wait on until pipefs is mounted or more of the kernel is initialized? I did some searching and I just can't turn up a previous discussion about this - my apologies if it's already been covered. -- Thayne Harbaugh Linux Networx
2005 Jan 05
2
[PATCH] getopt
...char *__optptr; +static const char *__optptr = NULL; int getopt(int argc, char * const *argv, const char *optstring) { @@ -51,6 +51,7 @@ optind += 2; } else { /* Missing argument */ + optind++; return (optstring[0] == ':') ? ':' : '?'; } } -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050104/06d024a0/attachment....
2005 Jan 05
1
Status/future for klibc/initramfs
...ave a pretty good klibc/hotplug/udev/kinit early userspace that just works (for me). It's taken me a bit to get things to work because I just couldn't find all the details and there were a few bugs/lacking features. Better/more documentation would have helped me (maybe I missed it?). -- Thayne Harbaugh Linux Networx
2004 Sep 16
3
[PATCH] gen_init_cpio uses external file list
...Apologies to klibc@zytor.com for the re-send) This patch makes gen_init_cpio generate the initramfs_data.cpio from a file which contains a list of entries: file, dir, nod. I swapped the order of filename/location for the file arguments so that it would be more uniform with the dir and nod tyes. [thayne@torch linux-2.6.8]$ usr/gen_init_cpio --help ERROR: unable to open '--help': No such file or directory Usage: usr/gen_init_cpio <cpio_list> <cpio_list> is a file containing newline separated entries that describe the files to be included in the initramfs archive: file...
2001 Nov 15
1
Excessive redraw in Lotus Notes on Wine 20011108
I compiled up Wine 20011108 from the source on my Mandrake 7.2 box without problems. I was pleased when I actually managed to get the Windows QuickTime player to install properly and actually run the player (albeit slowly). I also managed to get the SameTime installer to run, although the client still refuses to work. My one critical application on Wine however is Lotus Notes. It works pretty
2004 Oct 21
0
define more syslog flags
...G_NOWAIT 0x10 /* wait for child processes (unused on linux) */ +#define LOG_PERROR 0x20 /* additional logging to stderr */ + __extern void openlog(const char *, int, int); __extern void syslog(int, const char *, ...); __extern void vsyslog(int, const char *, va_list); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20041021/b088e667/attachment....
2004 Oct 25
0
[PATCH] klibc/utils/uname.c
Here's a patch to add klibc/utils/uname.c. I wrote uname.c and it can be published under the klibc copyright/left/middle/public domain/whatever. It supports all standard options except -p and -o. -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: klibc-uname.patch Type: text/x-patch Size: 4145 bytes Desc: not available Url : http://www.zytor.com/pipermail/klibc/attachments/20041025/f28bd860/klibc-uname.bin
2005 Jan 05
0
[PATCH] kinit.c:get_arg()
...t/kinit.c 2005-01-05 01:38:30.740191320 -0700 @@ -168,7 +168,7 @@ for (i = 1; i < argc; i++) { if (argv[i] && strncmp(argv[i], name, len) == 0 && - (argv[i][len] == '\0')) { + (argv[i][len] != '\0')) { ret = argv[i] + len; break; } -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/1ee669df/attachment....
2005 Jan 05
0
[PATCH] kinit/do_mounts.c:name_to_dev_t()
...;/dev/", 5) ) { + if ( strncmp(name, "/dev/", 5) ) { res = (dev_t) strtoul(name, &p, 16); if (*p) return 0; @@ -111,7 +111,7 @@ } name += 5; if (strcmp(name, "nfs") == 0) - return 0; + return Root_NFS; len = strlen(name); s = alloca(len+1); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.com/pipermail/klibc/attachments/20050105/6af08503/attachment....
2005 Jan 06
0
[PATCH] memchr and memrchr
...c.o mmap.o \ memcpy.o memcmp.o memset.o memccpy.o memmem.o memswap.o \ - memmove.o memchr.o \ + memmove.o memchr.o memrchr.o \ strcasecmp.o strncasecmp.o strndup.o strerror.o \ strcat.o strchr.o strcmp.o strcpy.o strdup.o strlen.o strnlen.o \ strncat.o strlcpy.o strlcat.o \ -- Thayne Harbaugh Linux Networx
2005 Jan 06
0
skip unconnected interfaces
...pconfig uses... */ - if ( !(flags & IFF_LOOPBACK) && - (flags & (IFF_BROADCAST|IFF_POINTOPOINT)) ) - { - if ( !(dev = add_device(de->d_name)) ) - continue; - bringup_one_dev(template, dev); - } + bringup_one_dev(template, dev); } closedir(d); return 1; -- Thayne Harbaugh Linux Networx
2005 Jan 06
0
[PATCH] ELF headers
.../ +#define STT_NUM 7 /* number of defined types. */ +#define STT_LOOS 10 /* start of OS-specific */ +#define STT_HIOS 12 /* end of OS-specific */ +#define STT_LOPROC 13 /* start of processor-specific */ +#define STT_HIPROC 15 /* end of processor-specific */ + #endif /* _SYS_ELFCOMMON_H */ -- Thayne Harbaugh Linux Networx
2004 Sep 16
3
[PATCH] gen_init_cpio processes file from a file list
The patch makes gen_init_cpio generate the initramfs_data.cpio from a file which contains a list of entries: file, dir, nod. I swapped the order of filename/location for the file arguments so that it would be more uniform with the dir and nod tyes. [thayne@torch linux-2.6.8]$ usr/gen_init_cpio --help ERROR: unable to open '--help': No such file or directory Usage: usr/gen_init_cpio <cpio_list> <cpio_list> is a file containing newline separated entries that describe the files to be included in the initramfs archive: file...
2001 Nov 13
0
Excessive redraw in Lotus Notes with Wine 20011108
I've just compiled up Wine 20011108 and given it a little testing. QuickTime installer works fine and QuickTime player comes up, although it wants to be fullscreen most of the time (something to do with strange mouse click handling I think). SameTime installer runs (at least for version 1.5) although I can't get the actual program to start (Unhandled exception). Lotus Notes 5.0.4 also
2001 Mar 27
1
Tale of kernel 2.2.19 upgrading
I'm a bit of newbie to Wine in many respects so this may be obvious to more seasoned Wine veterans, in which case I apologize. I rely on Wine to run Lotus Notes on Linux - this project has released me from my NT workstation :-) So after a kernel upgrade from 2.2.17-21mdk (as supplied with Mandrake 7.2) to an unpatched 2.2.19 about the first thing I tried was Lotus Notes on Wine. Parts of it