Page 1 of 1

vlc compilation problem

Posted: 16 Sep 2005 16:13
by tarun79
hi
I am trying trying to compile VLC with precompiled libraries using cygwin with this configure file :-
./bootstrap && \
./bootstrap && \
CPPFLAGS="-I/usr/win32/include -I/usr/win32/include/ebml" \
LDFLAGS=-L/usr/win32/lib \
CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin" \
./configure \
--disable-sdl --disable-gtk \
--enable-nls \
--enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac \
--with-ffmpeg-zlib --enable-faad --enable-flac --enable-theora \
--with-wx-config-path=/usr/win32/bin \
--with-freetype-config-path=/usr/win32/bin \
--with-fribidi-config-path=/usr/win32/bin \
--enable-livedotcom --with-livedotcom-tree=/usr/win32/live.com \
--enable-caca --with-caca-config-path=/usr/win32/bin \
--with-xml2-config-path=/usr/win32/bin \
--with-dvdnav-config-path=/usr/win32/bin \
--disable-cddax --disable-vcdx --enable-goom \
--enable-twolame --enable-dvdread \
--disable-mkv \
--enable-debug

But it is giving me the followong error
checking twolame.h usability... no
checking twolame.h presence... no
checking for twolame.h... no
configure: error: Cannot find development header for libtwolame...

I am using gcc 3.4.4.
how to I debug this error?

Tarun

Posted: 16 Sep 2005 17:51
by DanBrwn
Please follow the post where I and zcot are having this very discussion. My user name is DanBrwn, I am the one with the problem so don't follow my posts, pay attention to zcot's. viewtopic.php?t=12309&highlight= refers to correct versions of GCC and the contrib packages. viewtopic.php?t=12265&highlight= is another post by zcot to similar issues. You may be able to get yours going before I can, If so please help me. I will do the same if I get mine first. :wink: Dan

Posted: 16 Sep 2005 20:12
by zcot
also, make sure you don't mistakenly have a duplicate call here like this:
./bootstrap && \
./bootstrap && \
CPPFLAGS="-I/usr/win...
so remove the 1st or 2nd line.