OESF Portables Forum

Model Specific Forums => Sharp Zaurus => Zaurus - pdaXrom => Topic started by: loryball on March 22, 2005, 11:37:41 am

Title: X11 Headers?
Post by: loryball on March 22, 2005, 11:37:41 am
Hi!
I should compile a complex program that requires X11 headers. The configure utility provided with the source says they should be in a package called "x11-devel". But I can't find it.
Could you please help me?

Thanks

PS I'm running RC9 on a C750
Title: X11 Headers?
Post by: omega on March 22, 2005, 11:44:35 am
Not sure, but I think that the zgcc image has them...
Title: X11 Headers?
Post by: zaazoo on March 23, 2005, 06:43:18 am
They are shipped with the cross-compiling sdk, here is a sample configure for rat

#!/bin/sh
CC=armv5tel-linux-gcc ./configure --prefix=/net/tester/zaurus \
        --build=i686-pc-linux-gnu --host=arm-pc-linux-gnuoldld \
        --x-includes=/opt/arm/3.3.2-vfp/armv5tel-cacko-linux/X11R6/include \
        --x-libraries=/opt/arm/3.3.2-vfp/armv5tel-cacko-linux/X11R6/lib \
        --with-tcltk-version=8.4 \
        --with-tcl=/opt/arm/tcltk-8.4 \
        --with-tk=/opt/arm/tcltk-8.4 \
        --enable-ipv6 \
        "$@"

I could not locate them in the native sdk though  

hope this helps