image_viewer_1.c
got another error, i think this one may have been caused by me being an idiot though so lets check it out.
(144) missing term char " in the snprintf func
yeah the auto indent crap put in a LF when i tried to comment the thing and then i uncommented it and it left in the LF, i need a wider screen 80 chars sucks hehe.
another err
(129) parse errror before "printf"
Yeah guys it's C you need ;'s at the ends of lines, HEHE, it's been too long and I've been doing asm at school.
ok sun of a bitch why are there like 8 of the same image_viewer_*.c files they all have the same crap to fix, CRAP. gunna see if i can eliminate them AHAHAHHA
ok so yeah they are all the same file so i think i'm just gunna eliminate them AHAHAHa
gunna make distclean first and then uh, remove them so i can get rid of all the already produced Makefiles and stuff. Ok yeah so I'm gunna make maintainer-clean it cause i really wanna clean it out. Aparently you can't do a make clean before a maint clean cause the makefile is gone, makes sence doesn't it, hehe.
ok didn't do what I thought it would so lets check some stuff out.
I'm a retard i just rm'd the image_viewer_* files including the _1 one that i had done all the editing to. YAY
ok so it's looking like all the _# files are the actuall ones that get compiled and maybe the one without the _# doesn't gunna do some reasearch into this EXTRA_DIST param that is the only place in the Makefile.am that the non _# one is mentioned.
ok turns out all that crap is to make them into libraries and stuff I would assume so they could be some sort of loaded module or something since they are all writen as plugin type interfaces.
so i'm just gunna delete them and not edit the makefile and the see if it will make and the edit the makefile if it doesn't like them being non existent.
rerunning autogen.sh cause that's what the README.CVS says to do whenever you change file structure type stuff.
yeah so retard here didn't bother to fix the error i just recompiled with it being in there all wrong still, gunna do the TOPLEVEL this time.
HOLLY CRAP the _# files are aparently auto generated from the base image viewer file so I'm just gunna fix that one.
fixed the non _# file and make cleaned it not sure wether the _# files are made in the configure part or the autogen part i'm thinking the autogen poart so i might have to do this again. ok it's the autogen so i'm rerunning it. I wanna find out about this underquote crap it keeps coming up with i don't like warnings. They usually mean something could be done better.
k i just removed them hopefully the make process will rebuild them even though the make clean doesn't get rid of them which seems odd.
new err and an old one, got the same too few args one think i missed the second from file line. also got:
image_viewer_1.c
(145, 152) - Incompatible types in assignment
at least this time i know to edit the non _# file and not the others.
1. Yeah just missed the second one.
2. I was setting *err = NULL after the g_error_free but i guess maybe that won't work/ isn't needed so lets try this again.
Guess it doesn't register that the non _# file was edited, so got to delete the _#'s first.
rm (them)
make clean
./configure --prefix=$HOME/dashpc-install
Although i should prolly just leave off the prefix part till i can get it to actually compile.
make
ok so coolness the image_viewer files seem to be compiling just fine.
ALRIGHT...
so i got a couple more errors and they are one's i have encounetered
main.c
func show_splash
(240) - GTK_WINDOW_DIALOG ==> TOPLEVEL
(249, 253) - pixbuf new from file ==> same fix
**** REFACTOR ***
By the way the show_splash function and the image_viewer stuff is the same. So it could probably be refactored into som sort of helper function. Maybe not with it being a module but it's something to look into.
Ok so it's kinda scary but it made, gunna install now
ok that worked...
(144) missing term char " in the snprintf func
yeah the auto indent crap put in a LF when i tried to comment the thing and then i uncommented it and it left in the LF, i need a wider screen 80 chars sucks hehe.
another err
(129) parse errror before "printf"
Yeah guys it's C you need ;'s at the ends of lines, HEHE, it's been too long and I've been doing asm at school.
ok sun of a bitch why are there like 8 of the same image_viewer_*.c files they all have the same crap to fix, CRAP. gunna see if i can eliminate them AHAHAHHA
ok so yeah they are all the same file so i think i'm just gunna eliminate them AHAHAHa
gunna make distclean first and then uh, remove them so i can get rid of all the already produced Makefiles and stuff. Ok yeah so I'm gunna make maintainer-clean it cause i really wanna clean it out. Aparently you can't do a make clean before a maint clean cause the makefile is gone, makes sence doesn't it, hehe.
ok didn't do what I thought it would so lets check some stuff out.
I'm a retard i just rm'd the image_viewer_* files including the _1 one that i had done all the editing to. YAY
ok so it's looking like all the _# files are the actuall ones that get compiled and maybe the one without the _# doesn't gunna do some reasearch into this EXTRA_DIST param that is the only place in the Makefile.am that the non _# one is mentioned.
ok turns out all that crap is to make them into libraries and stuff I would assume so they could be some sort of loaded module or something since they are all writen as plugin type interfaces.
so i'm just gunna delete them and not edit the makefile and the see if it will make and the edit the makefile if it doesn't like them being non existent.
rerunning autogen.sh cause that's what the README.CVS says to do whenever you change file structure type stuff.
yeah so retard here didn't bother to fix the error i just recompiled with it being in there all wrong still, gunna do the TOPLEVEL this time.
HOLLY CRAP the _# files are aparently auto generated from the base image viewer file so I'm just gunna fix that one.
fixed the non _# file and make cleaned it not sure wether the _# files are made in the configure part or the autogen part i'm thinking the autogen poart so i might have to do this again. ok it's the autogen so i'm rerunning it. I wanna find out about this underquote crap it keeps coming up with i don't like warnings. They usually mean something could be done better.
k i just removed them hopefully the make process will rebuild them even though the make clean doesn't get rid of them which seems odd.
new err and an old one, got the same too few args one think i missed the second from file line. also got:
image_viewer_1.c
(145, 152) - Incompatible types in assignment
at least this time i know to edit the non _# file and not the others.
1. Yeah just missed the second one.
2. I was setting *err = NULL after the g_error_free but i guess maybe that won't work/ isn't needed so lets try this again.
Guess it doesn't register that the non _# file was edited, so got to delete the _#'s first.
rm (them)
make clean
./configure --prefix=$HOME/dashpc-install
Although i should prolly just leave off the prefix part till i can get it to actually compile.
make
ok so coolness the image_viewer files seem to be compiling just fine.
ALRIGHT...
so i got a couple more errors and they are one's i have encounetered
main.c
func show_splash
(240) - GTK_WINDOW_DIALOG ==> TOPLEVEL
(249, 253) - pixbuf new from file ==> same fix
**** REFACTOR ***
By the way the show_splash function and the image_viewer stuff is the same. So it could probably be refactored into som sort of helper function. Maybe not with it being a module but it's something to look into.
Ok so it's kinda scary but it made, gunna install now
ok that worked...

0 Comments:
Post a Comment
<< Home