sql

Kreuzuebersetzer, Diskussion über Änderungen im Tuxbox-CDK und Tuxbox-CVS
fergy
Developer
Beiträge: 93
Registriert: Dienstag 13. September 2005, 15:30

Re: sql

Beitrag von fergy »

Ok, that's good.
Offtopic:
Regarding [quote]But I think willingness exists to merge HEAD
and dreambox branch some day, can you help us with this?[/quote]
This is true? So, Dreambox branch swaping to newmake?
rhabarber1848
CDK-Experte
Beiträge: 4335
Registriert: Donnerstag 3. April 2008, 14:05

Re: sql

Beitrag von rhabarber1848 »

fergy hat geschrieben:Regarding
spiralvoice hat geschrieben:to merge HEAD and dreambox branch some day
This is true?
Yes, the possibility was discussed here:
http://forum.tuxbox-cvs.sourceforge.net ... 07#p362907

But as I said, its a long-term plan.
dbluelle
Contributor
Beiträge: 319
Registriert: Samstag 29. Mai 2004, 18:49

Re: sql

Beitrag von dbluelle »

I just checked in a small fix, so that the Dreambox-CDK builds again when sqlite is disabled.

dbluelle
fergy
Developer
Beiträge: 93
Registriert: Dienstag 13. September 2005, 15:30

Re: sql

Beitrag von fergy »

I just checked in a small fix, so that the Dreambox-CDK builds again when sqlite is disabled.
Thank You

I am swaping enigma to sql storage ( well, trying to swap lol ) , everything with if ENABLE_SQLITE.... hehe, devil's job.
When ( if :-? ) finish this soon, will put diffs.
PS, working on schematics of chopper's idea but pretty old code is there, so lot's of changes. :dash:
fergy
Developer
Beiträge: 93
Registriert: Dienstag 13. September 2005, 15:30

Re: sql

Beitrag von fergy »

Umm, @dbluelle:

Code: Alles auswählen

 -if WITH_SQLITE
 -             `find $(flashprefix)/root/lib/ -name "libsqlite3*"` \
 -endif
this is My fault :oops: Must be:

Code: Alles auswählen

 +if ENABLE_SQLITE
 +             `find $(flashprefix)/root/lib/ -name "libsqlite3*"` \
 +endif
Anyway, will it be stripped after You was remove it completely from Makefile.am? :gruebel:
Coronas
Developer
Beiträge: 196
Registriert: Dienstag 16. Oktober 2001, 00:00

Re: sql

Beitrag von Coronas »

fergy hat geschrieben: Anyway, will it be stripped after You was remove it completely from Makefile.am? :gruebel:
Yes. Some lines further down you'll find this:

Code: Alles auswählen

	@$(target)-strip --remove-section=.comment --remove-section=.note --strip-unneeded \
		`find $(flashprefix)/root/lib -name "*.so*"` 2>/dev/null || /bin/true
fergy
Developer
Beiträge: 93
Registriert: Dienstag 13. September 2005, 15:30

Re: sql

Beitrag von fergy »

Ahh, ok, clear now.
Thank You