Try http://departure.dk/files/iNfo-ft.zip nowedesignuk said:By gum he's done it!
It's working now![]()
Try http://departure.dk/files/iNfo-ft.zip nowedesignuk said:By gum he's done it!
It's working now![]()
Great. I know not to fiddle with the X11/XCode checking nowedesignuk said:Yup, that works.
Now I just need attention and a slight rename of filesedesignuk said:Yup, seems to.
No problem![]()
Could have to do with that, actually.Wes said:It works but I still get wonky drive issues. The drive it doesn't work on is a Tiger drive (Legally obtained).
Does it display the CPU as a G3?SodaPopMonster said:Works on my computer flawlessly, iBook G3 900MHz
Nope, remember OS X is so secure, the app would require admin authentication a thousand times before even remotely being able to do thatHoef said:Are you pulling all my senstive info, keystrokes and credit card info?![]()
Hehe, an early Color Macintoshneoelectronaut said:Worked perfectly on my end.
By the way, I'm really digging the icon.
Wes said:Could you post a pic of Apple System Profiler's screen too?
Vster said:Here you go![]()
Is the PowerBook running on automatic CPU mode? In that case, iNfo reports the actual CPU speed, which is 5*bus speed, whereas the system tool probably reports the max speed, 7.5*bus speed, or almost 1 GHz.Vster said:Here you go![]()
/* libSysCtl 1.0
Copyright (C) David H. Kristensen 2005-X
Licensed under the 3-clause BSD license */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char * SysCtl_Get(char * string) {
char out[128];
char * bfr = (char*)malloc(128);
strcpy((char*)&out, "sysctl ");
strcat((char*)&out, string);
strcat((char*)&out, " > .libsysctl-tmp");
system(out);
FILE * xpo = fopen(".libsysctl-tmp", "r");
int i = 0, a;
int is_commated = 0;
while( (a=fgetc(xpo))!=EOF ) {
if(is_commated == 0 && (a == ':' || a == '=')) {
is_commated = 1;
}
else if(a == '\n') {
is_commated = 0;
}
else if(is_commated==1) {
bfr[i++] = a;
}
}
fclose(xpo);
bfr[i] = '\0';
system("rm .libsysctl-tmp");
return bfr;
}