* [Buildroot] Is DirectFb.org down?
@ 2009-09-20 15:36 Palash Bandyopadhyay
2009-09-20 16:12 ` Peter Korsgaard
0 siblings, 1 reply; 8+ messages in thread
From: Palash Bandyopadhyay @ 2009-09-20 15:36 UTC (permalink / raw)
To: buildroot
Hi,Probably not a question for this forum, but just in case anyone knows about this.I have not been able to access DirectFB.org since last Monday (9th Sept, 2009). Tried from 3 different networks (in the US). Also had a couple of folks (from Europe) try to access it and they too haven't been able to.Does anyone know anything about this?Thanks,Palash
_________________________________________________________________
Bing brings you health info from trusted sources.
http://www.bing.com/search?q=pet+allergy&form=MHEINA&publ=WLHMTAG&crea=TXT_MHEINA_Health_Health_PetAllergy_1x1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
2009-09-20 15:36 [Buildroot] Is DirectFb.org down? Palash Bandyopadhyay
@ 2009-09-20 16:12 ` Peter Korsgaard
2009-09-20 16:32 ` Palash Bandyopadhyay
2009-09-22 20:37 ` Ormund Williams
0 siblings, 2 replies; 8+ messages in thread
From: Peter Korsgaard @ 2009-09-20 16:12 UTC (permalink / raw)
To: buildroot
>>>>> "Palash" == Palash Bandyopadhyay <palash0791@hotmail.com> writes:
Hi,
Palash> Hi,Probably not a question for this forum, but just in case
Palash> anyone knows about this.I have not been able to access
Palash> DirectFB.org since last Monday (9th Sept, 2009). Tried from 3
Palash> different networks (in the US). Also had a couple of folks
Palash> (from Europe) try to access it and they too haven't been able
Palash> to.Does anyone know anything about this?
I'm also unable to access it from here (Belgium). The directfb package
in buildroot should still work though, as it falls back to the mirror on
buildroot.net.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
2009-09-20 16:12 ` Peter Korsgaard
@ 2009-09-20 16:32 ` Palash Bandyopadhyay
2009-09-22 20:37 ` Ormund Williams
1 sibling, 0 replies; 8+ messages in thread
From: Palash Bandyopadhyay @ 2009-09-20 16:32 UTC (permalink / raw)
To: buildroot
Thanks for the quick reply, Peter.
It was just that I wanted to ask some questions to the DirectFB group. Am facing some problems getting DirectFB to work properly with MPlayer with the packages included with quite a few Buildroot versions.
The mplayer version included in Buildroot is RC2, and on sending queries to mplayer, they ask me to use the latest mplayer version. Not that using it helped any :-(. Digging further I tried to run a directfb application and that too failed.
But I do have a question in buildroot and probably you would be the best person to answer that :-). Please bear with me as I am relatively new with BuildRoot as well as Linux.
If we have a package in BuildRoot which depends on another package in buildroot and needs to include some header files from the other package how do I give the relative include path in the configure file?
Here is the reason for my question:
I enabled DirectFB in mplayer's configure (--enable-directfb). Built mplayer. Initially was getting an error in configure:
Checking for DirectFB ...
/var/tmp/portage/mplayer-1.0_rc1/temp/mplayer-conf-14171-11545.c:1:30: error:
directfb_version.h: No such file or directory
Searched through various forms and found that this is a known issue and that there is a patch for this :
==>
--- configure.old 2007-01-06 20:45:03.000000000 +0100
+++ configure 2007-01-06 21:08:52.000000000 +0100
@@ -3742,6 +3742,16 @@
}
if test "$_directfb" = yes; then
+ cat> $TMPC <
+int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
+EOF
+ for _inc_tmp in "" -I/usr/local/include/directfb \
+ -I/usr/include/directfb -I/usr/local/include -I/usr/include; do
+ cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
+ _inc_extra="$_inc_extra $_inc_tmp" && break
+ done
+
cat> $TMPC << EOF
#include
int
==> Now, that patch assumes that the included version of DirectFB is installed in the /usr folder. Now the version of directfb installed on the host machine might not match with the version of directfb that comes with buildroot (actually it is almost certain that it will not match). So is there any constant/macro that I can use to patch up the configure file above so that it points to the directfb include path relative to buildroot, rather than the local version installed in the system? Thanks a lotRegards,Palash
----------------------------------------
> To: palash0791 at hotmail.com
> CC: buildroot at busybox.net
> Subject: Re: [Buildroot] Is DirectFb.org down?
> From: jacmet at uclibc.org
> Date: Sun, 20 Sep 2009 18:12:32 +0200
>
>>>>>> "Palash" == Palash Bandyopadhyay writes:
>
> Hi,
>
> Palash> Hi,Probably not a question for this forum, but just in case
> Palash> anyone knows about this.I have not been able to access
> Palash> DirectFB.org since last Monday (9th Sept, 2009). Tried from 3
> Palash> different networks (in the US). Also had a couple of folks
> Palash> (from Europe) try to access it and they too haven't been able
> Palash> to.Does anyone know anything about this?
>
> I'm also unable to access it from here (Belgium). The directfb package
> in buildroot should still work though, as it falls back to the mirror on
> buildroot.net.
>
> --
> Bye, Peter Korsgaard
_________________________________________________________________
Hotmail: Powerful Free email with security by Microsoft.
http://clk.atdmt.com/GBL/go/171222986/direct/01/
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
2009-09-20 16:12 ` Peter Korsgaard
2009-09-20 16:32 ` Palash Bandyopadhyay
@ 2009-09-22 20:37 ` Ormund Williams
2009-09-22 20:51 ` Peter Korsgaard
2009-09-22 20:55 ` Peter Korsgaard
1 sibling, 2 replies; 8+ messages in thread
From: Ormund Williams @ 2009-09-22 20:37 UTC (permalink / raw)
To: buildroot
On Sun, 2009-09-20 at 18:12 +0200, Peter Korsgaard wrote:
> >>>>> "Palash" == Palash Bandyopadhyay <palash0791@hotmail.com> writes:
>
> Hi,
>
> Palash> Hi,Probably not a question for this forum, but just in case
> Palash> anyone knows about this.I have not been able to access
> Palash> DirectFB.org since last Monday (9th Sept, 2009). Tried from 3
> Palash> different networks (in the US). Also had a couple of folks
> Palash> (from Europe) try to access it and they too haven't been able
> Palash> to.Does anyone know anything about this?
>
> I'm also unable to access it from here (Belgium). The directfb package
> in buildroot should still work though, as it falls back to the mirror on
> buildroot.net.
>
Buildroot.net also fails:
--2009-09-22 16:34:41--
http://buildroot.net/downloads/sources//DirectFB-1.4.2.tar.gz
Resolving buildroot.net... 140.211.167.224
Connecting to buildroot.net|140.211.167.224|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2009-09-22 16:34:41 ERROR 404: Not Found.
Anybody know of another mirror?
Sincerely.
--
Ormund Williams
OrmLab LLC
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
2009-09-22 20:37 ` Ormund Williams
@ 2009-09-22 20:51 ` Peter Korsgaard
2009-09-22 20:55 ` Peter Korsgaard
1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2009-09-22 20:51 UTC (permalink / raw)
To: buildroot
>>>>> "Ormund" == Ormund Williams <ormundw@panix.com> writes:
Hi,
>> I'm also unable to access it from here (Belgium). The directfb
>> package in buildroot should still work though, as it falls back to
>> the mirror on buildroot.net.
>>
Ormund> Buildroot.net also fails:
Ah yes, I didn't get to update the mirror after we bumped the Directfb
version on the 3rd. You could perhaps use version 1.4.1 instead (edit
DIRECTFB_VERSION in package/directfb/directfb.mk)
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
2009-09-22 20:37 ` Ormund Williams
2009-09-22 20:51 ` Peter Korsgaard
@ 2009-09-22 20:55 ` Peter Korsgaard
[not found] ` <1253653547.9090.3.camel@bender>
1 sibling, 1 reply; 8+ messages in thread
From: Peter Korsgaard @ 2009-09-22 20:55 UTC (permalink / raw)
To: buildroot
>>>>> "Ormund" == Ormund Williams <ormundw@panix.com> writes:
Hi,
Ormund> Buildroot.net also fails:
Ormund> --2009-09-22 16:34:41--
Ormund> http://buildroot.net/downloads/sources//DirectFB-1.4.2.tar.gz
Ormund> Resolving buildroot.net... 140.211.167.224
Ormund> Connecting to buildroot.net|140.211.167.224|:80... connected.
Ormund> HTTP request sent, awaiting response... 404 Not Found
Ormund> 2009-09-22 16:34:41 ERROR 404: Not Found.
Ormund> Anybody know of another mirror?
Found it from the t2 people:
http://dl2.t2-project.org/source/8.0/D/
I've put it on the buildroot mirror as well.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
[not found] ` <1253653547.9090.3.camel@bender>
@ 2009-09-22 21:23 ` Ormund Williams
2009-09-23 0:30 ` Palash Bandyopadhyay
0 siblings, 1 reply; 8+ messages in thread
From: Ormund Williams @ 2009-09-22 21:23 UTC (permalink / raw)
To: buildroot
On Tue, 2009-09-22 at 23:05 +0200, Sven Neumann wrote:
> buildroot uses the .tar.gz though, not the tar.bz2. I've uploaded our
> copy of the tar.gz to my website. Peter, please grab it from there and
> put it on the buildroot mirror:
>
> http://svenfoo.org/misc/DirectFB-1.4.2.tar.gz
>
>
Thanks Sven, Peter.
--
Ormund Williams
OrmLab LLC
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] Is DirectFb.org down?
2009-09-22 21:23 ` Ormund Williams
@ 2009-09-23 0:30 ` Palash Bandyopadhyay
0 siblings, 0 replies; 8+ messages in thread
From: Palash Bandyopadhyay @ 2009-09-23 0:30 UTC (permalink / raw)
To: buildroot
Thanks a lot everyone. Hopefully the site will be up and running soon so I can ask my questions there :-)
Regards,
Palash
----------------------------------------
> From: ormundw at panix.com
> To: buildroot at busybox.net
> Date: Tue, 22 Sep 2009 17:23:09 -0400
> Subject: Re: [Buildroot] Is DirectFb.org down?
>
> On Tue, 2009-09-22 at 23:05 +0200, Sven Neumann wrote:
>> buildroot uses the .tar.gz though, not the tar.bz2. I've uploaded our
>> copy of the tar.gz to my website. Peter, please grab it from there and
>> put it on the buildroot mirror:
>>
>> http://svenfoo.org/misc/DirectFB-1.4.2.tar.gz
>>
>>
> Thanks Sven, Peter.
>
>
> --
> Ormund Williams
> OrmLab LLC
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
_________________________________________________________________
Bing brings you health info from trusted sources.
http://www.bing.com/search?q=pet+allergy&form=MHEINA&publ=WLHMTAG&crea=TXT_MHEINA_Health_Health_PetAllergy_1x1
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-09-23 0:30 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-20 15:36 [Buildroot] Is DirectFb.org down? Palash Bandyopadhyay
2009-09-20 16:12 ` Peter Korsgaard
2009-09-20 16:32 ` Palash Bandyopadhyay
2009-09-22 20:37 ` Ormund Williams
2009-09-22 20:51 ` Peter Korsgaard
2009-09-22 20:55 ` Peter Korsgaard
[not found] ` <1253653547.9090.3.camel@bender>
2009-09-22 21:23 ` Ormund Williams
2009-09-23 0:30 ` Palash Bandyopadhyay
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox