Author Topic: X11 Headers?  (Read 1769 times)

loryball

  • Newbie
  • *
  • Posts: 1
    • View Profile
X11 Headers?
« 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

omega

  • Hero Member
  • *****
  • Posts: 626
    • View Profile
    • http://
X11 Headers?
« Reply #1 on: March 22, 2005, 11:44:35 am »
Not sure, but I think that the zgcc image has them...
Gorgeous C860, 256 Sandisk SD, 1Gig Pretec 40x CF, PDAIR leather case & the really cool retractable iPDA USB sync/charge cable. Powered by PDAXROM BETA 1.

My wish - to have a Command & Conquer style game on my Z! (FREECNC!!!) Simcity 2000 would also be great.

zaazoo

  • Newbie
  • *
  • Posts: 3
    • View Profile
X11 Headers?
« Reply #2 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