I'm on Ubuntu 5.10. Even though Debian has 0.16.7 in their apt repositories, it doesn't exist on Ubuntu
I have installed freetype and imlib2. enlightenment.org is currently down, so I don't know the other dependencies but they were like zip and jpeg, which I believe I have.
I typed ./configure && make and the make result was as follows:
Code:
make all-recursive
make[1]: Entering directory `/home/alex/enlightenment-0.16.7.1'
Making all in intl
make[2]: Entering directory `/home/alex/enlightenment-0.16.7.1/intl'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/enlightenment-0.16.7.1/intl'
Making all in dox
make[2]: Entering directory `/home/alex/enlightenment-0.16.7.1/dox'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/enlightenment-0.16.7.1/dox'
Making all in eesh
make[2]: Entering directory `/home/alex/enlightenment-0.16.7.1/eesh'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/enlightenment-0.16.7.1/eesh'
Making all in epp
make[2]: Entering directory `/home/alex/enlightenment-0.16.7.1/epp'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/alex/enlightenment-0.16.7.1/epp'
Making all in src
make[2]: Entering directory `/home/alex/enlightenment-0.16.7.1/src'
make[3]: Entering directory `/home/alex/enlightenment-0.16.7.1/src'
if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../intl -I/usr/local/include -g -O2 -MT draw.o -MD -MP -MF ".deps/draw.Tpo" -c -o draw.o draw.c; \
then mv -f ".deps/draw.Tpo" ".deps/draw.Po"; else rm -f ".deps/draw.Tpo"; exit 1; fi
draw.c:1280:36: error: X11/bitmaps/flipped_gray: No such file or directory
draw.c:1281:28: error: X11/bitmaps/gray: No such file or directory
draw.c:1282:29: error: X11/bitmaps/gray3: No such file or directory
draw.c: In function ‘DrawEwinShape’:
draw.c:1358: error: ‘flipped_gray_bits’ undeclared (first use in this function)
draw.c:1358: error: (Each undeclared identifier is reported only once
draw.c:1358: error: for each function it appears in.)
draw.c:1359: error: ‘flipped_gray_width’ undeclared (first use in this function)draw.c:1359: error: ‘flipped_gray_height’ undeclared (first use in this function)
draw.c:1361: error: ‘gray_bits’ undeclared (first use in this function)
draw.c:1361: error: ‘gray_width’ undeclared (first use in this function)
draw.c:1362: error: ‘gray_height’ undeclared (first use in this function)
draw.c:1364: error: ‘gray3_bits’ undeclared (first use in this function)
draw.c:1364: error: ‘gray3_width’ undeclared (first use in this function)
draw.c:1365: error: ‘gray3_height’ undeclared (first use in this function)
make[3]: *** [draw.o] Error 1
make[3]: Leaving directory `/home/alex/enlightenment-0.16.7.1/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/alex/enlightenment-0.16.7.1/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/alex/enlightenment-0.16.7.1'
make: *** [all] Error 2
What is draw.c related to? What am I missing?