VLC 0.9.2 compiling problem: problem with qt4

Microsoft Windows specific usage questions
Forum rules
Please post only Windows specific questions in this forum category. If you don't know where to post, please read the different forums' rules. Thanks.
VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby VLC_help » 19 Nov 2008 14:52

Different interfaces have different code. For example QT4
http://sector.ynet.sk/qt4-tutorial/my-f ... ation.html (and You may wish, for example, to disable the maximize button. You can... part)

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby ahmad_aljallad » 24 Nov 2008 08:33

Thank you very match that was helpful but am in
Problem now i need to add new item to play list
using the code don't know how i need it to add
udp url such as:udp://@192.168.2.90:1234
So i can play stream on the network without
Endures do anything.

And thanks for everything :D :D

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby VLC_help » 25 Nov 2008 10:33

Add it to VLC shortcut (or to startup command) if you only need one item to playlist.

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby ahmad_aljallad » 26 Nov 2008 12:30

No not like that but I meant programmatically
But its ok I found the solution on what
You have to do is put that code in the
Main interface:

playlist_Add( pPlaylist, m_name.c_str(), NULL,
PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, true,
false );

Replace m_name.c_str() with file name for example : "c:\\ahmad.flv" or "udp://@000.000.000.000:1234"
in that way you can play files or even stream when your vlc start like this udp or from you tube but in the other way you can only play files not urls also I manage let vlc to read from xml file so I can wright there what ever
Play list I need to play or udp or anything and play it the moment vlc starts.
Thanks allot for everything.

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby ahmad_aljallad » 26 Nov 2008 12:34

Anther question now am blank cone
How I can be more than that what
Should I do first is there any form
Or something for that
And thanks for all

VLC_help
Mega Cone Master
Mega Cone Master
Posts: 25661
Joined: 13 Sep 2006 14:16

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby VLC_help » 26 Nov 2008 16:42

How I can be more than that what
I think your line is missing some text.

aik
Blank Cone
Blank Cone
Posts: 14
Joined: 18 Dec 2008 19:15

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby aik » 12 Jan 2009 17:40

by the way, the problem danish22 has is already be mentioned by me at begin of this post and a possible solution is that (at least it worked for me)
on qatomic_windows.h line 392...modify the code into following

#if defined(Q_CC_GNU)
#include <windows.h>
#endif
#ifndef __INTERLOCKED_DECLARED

extern "C" {
__declspec(dllimport) long __stdcall InterlockedCompareExchange(long *, long, long);
__declspec(dllimport) long __stdcall InterlockedIncrement(long *);
__declspec(dllimport) long __stdcall InterlockedDecrement(long *);
__declspec(dllimport) long __stdcall InterlockedExchange(long *, long);
__declspec(dllimport) long __stdcall InterlockedExchangeAdd(long *, long);
}

#endif /* __INTERLOCKED_DECLARED */

hope your compilation will work.....O.O
I would recommend adding the "volatile" keyword before every "long *" rather than making #ifdef. It is more correct and still works.

Gozer
New Cone
New Cone
Posts: 1
Joined: 21 Jan 2009 10:19

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby Gozer » 21 Jan 2009 12:33

I had the same problem and found a small workaround for this: add -D__INTERLOCKED_DECLARED to CPPFLAGS in modules/gui/qt4/Makefile and then compilation works :->
No need to downgrade winapi.h in this case...

giangy11
Blank Cone
Blank Cone
Posts: 34
Joined: 08 Feb 2009 18:12

Re: VLC 0.9.2 compiling problem: problem with qt4

Postby giangy11 » 09 Feb 2009 15:26

I decided to just go with the older build (0.8.6i) due to the Qt problems...

This is what I did to get the 0.8.6i build to compile correctly:
1. Setup Cygwin as explained in http://wiki.videolan.org/Win32CompileCygwinNew page.

2. When installing the packages for Cygwin DO NOT install "mingw-runtime".

3. Download the older version of "mingw-runtime" from http://download.thaigrid.or.th/pub/cygw ... -1.tar.bz2

4. Download the older contrib file from http://people.videolan.org/~jb/Contribs ... ly.tar.bz2

5. Save both of them in your Cygwin installed folder. (eg. C:\Cygwin)

6. Launch Cygwin and change directory to the Cygwin installed folder, where the downloaded files are located. Use the following command to install the packages; don't just extract the files using WinRAR or etc.

Code: Select all

tar xjvf mingw-runtime-3.10-1.tar.bz2 -C / tar xjvf contrib-20071002-win32-bin-gcc-3.4.5-runtime-3.12-only.tar.bz2 -C /
7. Download the vlc-0.8.6i source from http://download.videolan.org/pub/videolan/vlc/0.8.6i/ and extract it at a location you desire.

8. Create a new file for "configure-vlc.sh" use the following setting:

Code: Select all

./bootstrap && \ PKG_CONFIG_PATH=/usr/win32/lib/pkgconfig \ CPPFLAGS="-I/usr/win32/include -I/usr/win32/include/ebml" \ LDFLAGS=-L/usr/win32/lib \ CC="ccache gcc -mno-cygwin" CXX="ccache g++ -mno-cygwin" \ ./configure \ --disable-gtk \ --enable-nls --enable-sdl --with-sdl-config-path=/usr/win32/bin \ --enable-ffmpeg --with-ffmpeg-mp3lame \ --with-ffmpeg-zlib --enable-faad --disable-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-live555 --with-live555-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
REMOVE "ccache" from CC and CCX line from the script if you don't use ccache. Don't forget to do "dos2unix configure-vlc.sh" after saving the file.

9. After it's done just do "make" then "make package-win32-zip" and look for the zip file. Note that the above configuration doesn't have support for FLAC and mkv; it errors if you enable it.

Hope it helps...
Hi,
i've followed this guide, but when i start to compile, with command ./configure-vlc.sh the process stops with this error:
"configure:3513: error: C compiler cannot create executables"

This is the logfile:

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by vlc configure 0.8.6i, which was
generated by GNU Autoconf 2.61. Invocation command line was

$ ./configure --disable-gtk --enable-nls --enable-sdl --with-sdl-config-path=/usr/win32/bin --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-zlib --enable-faad --disable-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-live555 --with-live555-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

## --------- ##
## Platform. ##
## --------- ##

hostname = PC-STAGISTA
uname -m = i686
uname -r = 1.5.25(0.156/4/2)
uname -s = CYGWIN_NT-5.1
uname -v = 2008-06-12 19:34

/usr/bin/uname -p = unknown
/bin/uname -X = unknown

/bin/arch = i686
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown

PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/X11R6/bin
PATH: /cygdrive/c/WINDOWS/system32
PATH: /cygdrive/c/WINDOWS
PATH: /cygdrive/c/WINDOWS/System32/Wbem
PATH: /cygdrive/c/Programmi/Microsoft SQL Server/90/Tools/binn/
PATH: /cygdrive/c/Program Files/PostgreSQL/8.2/bin
PATH: /cygdrive/c/aolserver/bin
PATH: /cygdrive/c/Programmi/File comuni/Nero/Lib/
PATH: /cygdrive/c/Programmi/File comuni/Nero/Lib/
PATH: /cygdrive/c/Programmi/File comuni/Nero/Lib/
PATH: /cygdrive/c/Programmi/File comuni/Nero/Lib/


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2477: checking build system type
configure:2495: result: i686-pc-cygwin
configure:2517: checking host system type
configure:2532: result: i686-pc-cygwin
configure:2554: checking target system type
configure:2569: result: i686-pc-cygwin
configure:2612: checking for a BSD-compatible install
configure:2668: result: /usr/bin/install -c
configure:2679: checking whether build environment is sane
configure:2722: result: yes
configure:2787: checking for gawk
configure:2803: found /usr/bin/gawk
configure:2814: result: gawk
configure:2825: checking whether make sets $(MAKE)
configure:2846: result: yes
configure:3039: checking whether to enable maintainer-specific portions of Makefiles
configure:3048: result: yes
configure:3120: checking for gcc
configure:3147: result: gcc -mno-cygwin
configure:3385: checking for C compiler version
configure:3392: gcc -mno-cygwin --version >&5
gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3395: $? = 0
configure:3402: gcc -mno-cygwin -v >&5
Reading specs from /usr/lib/gcc/i686-pc-mingw32/3.4.4/specs
Configured with: /usr/build/package/orig/test.respin/gcc-3.4.4-3/configure --verbose --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
Thread model: posix
gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
configure:3405: $? = 0
configure:3412: gcc -mno-cygwin -V >&5
gcc: `-V' must come at the start of the command line
configure:3415: $? = 1
configure:3438: checking for C compiler default output file name
configure:3465: gcc -mno-cygwin -I/usr/win32/include -I/usr/win32/include/ebml -L/usr/win32/lib conftest.c >&5
/usr/lib/gcc/i686-pc-mingw32/3.4.4/../../../../i686-pc-mingw32/bin/ld: crt2.o: No such file: No such file or directory
collect2: ld returned 1 exit status
configure:3468: $? = 1
configure:3506: result:
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "vlc"
| #define PACKAGE_TARNAME "vlc"
| #define PACKAGE_VERSION "0.8.6i"
| #define PACKAGE_STRING "vlc 0.8.6i"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "vlc"
| #define VERSION "0.8.6i"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:3513: error: C compiler cannot create executables
See `config.log' for more details.

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i686-pc-cygwin
ac_cv_env_BONJOUR_CFLAGS_set=
ac_cv_env_BONJOUR_CFLAGS_value=
ac_cv_env_BONJOUR_LIBS_set=
ac_cv_env_BONJOUR_LIBS_value=
ac_cv_env_CCASFLAGS_set=
ac_cv_env_CCASFLAGS_value=
ac_cv_env_CCAS_set=
ac_cv_env_CCAS_value=
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=set
ac_cv_env_CC_value='gcc -mno-cygwin'
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=set
ac_cv_env_CPPFLAGS_value='-I/usr/win32/include -I/usr/win32/include/ebml'
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=set
ac_cv_env_CXX_value='g++ -mno-cygwin'
ac_cv_env_DAAP_CFLAGS_set=
ac_cv_env_DAAP_CFLAGS_value=
ac_cv_env_DAAP_LIBS_set=
ac_cv_env_DAAP_LIBS_value=
ac_cv_env_DIRAC_CFLAGS_set=
ac_cv_env_DIRAC_CFLAGS_value=
ac_cv_env_DIRAC_LIBS_set=
ac_cv_env_DIRAC_LIBS_value=
ac_cv_env_DIRECTFB_CFLAGS_set=
ac_cv_env_DIRECTFB_CFLAGS_value=
ac_cv_env_DIRECTFB_LIBS_set=
ac_cv_env_DIRECTFB_LIBS_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_FFMPEG_CFLAGS_set=
ac_cv_env_FFMPEG_CFLAGS_value=
ac_cv_env_FFMPEG_LIBS_set=
ac_cv_env_FFMPEG_LIBS_value=
ac_cv_env_FIREFOX_CFLAGS_set=
ac_cv_env_FIREFOX_CFLAGS_value=
ac_cv_env_FIREFOX_LIBS_set=
ac_cv_env_FIREFOX_LIBS_value=
ac_cv_env_FIREFOX_XPCOM_CFLAGS_set=
ac_cv_env_FIREFOX_XPCOM_CFLAGS_value=
ac_cv_env_FIREFOX_XPCOM_LIBS_set=
ac_cv_env_FIREFOX_XPCOM_LIBS_value=
ac_cv_env_GNOMEVFS_CFLAGS_set=
ac_cv_env_GNOMEVFS_CFLAGS_value=
ac_cv_env_GNOMEVFS_LIBS_set=
ac_cv_env_GNOMEVFS_LIBS_value=
ac_cv_env_GNUTLS_CFLAGS_set=
ac_cv_env_GNUTLS_CFLAGS_value=
ac_cv_env_GNUTLS_LIBS_set=
ac_cv_env_GNUTLS_LIBS_value=
ac_cv_env_GTK2_CFLAGS_set=
ac_cv_env_GTK2_CFLAGS_value=
ac_cv_env_GTK2_LIBS_set=
ac_cv_env_GTK2_LIBS_value=
ac_cv_env_HAL_CFLAGS_set=
ac_cv_env_HAL_CFLAGS_value=
ac_cv_env_HAL_LIBS_set=
ac_cv_env_HAL_LIBS_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=-L/usr/win32/lib
ac_cv_env_LIBCDDB_CFLAGS_set=
ac_cv_env_LIBCDDB_CFLAGS_value=
ac_cv_env_LIBCDDB_LIBS_set=
ac_cv_env_LIBCDDB_LIBS_value=
ac_cv_env_LIBCDIO_CFLAGS_set=
ac_cv_env_LIBCDIO_CFLAGS_value=
ac_cv_env_LIBCDIO_LIBS_set=
ac_cv_env_LIBCDIO_LIBS_value=
ac_cv_env_LIBCDIO_PARANOIA_CFLAGS_set=
ac_cv_env_LIBCDIO_PARANOIA_CFLAGS_value=
ac_cv_env_LIBCDIO_PARANOIA_LIBS_set=
ac_cv_env_LIBCDIO_PARANOIA_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_MIDL_set=
ac_cv_env_MIDL_value=
ac_cv_env_MOZILLA_NSPR_CFLAGS_set=
ac_cv_env_MOZILLA_NSPR_CFLAGS_value=
ac_cv_env_MOZILLA_NSPR_LIBS_set=
ac_cv_env_MOZILLA_NSPR_LIBS_value=
ac_cv_env_NOTIFY_CFLAGS_set=
ac_cv_env_NOTIFY_CFLAGS_value=
ac_cv_env_NOTIFY_LIBS_set=
ac_cv_env_NOTIFY_LIBS_value=
ac_cv_env_NSPR_CFLAGS_set=
ac_cv_env_NSPR_CFLAGS_value=
ac_cv_env_NSPR_LIBS_set=
ac_cv_env_NSPR_LIBS_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_POSTPROC_CFLAGS_set=
ac_cv_env_POSTPROC_CFLAGS_value=
ac_cv_env_POSTPROC_LIBS_set=
ac_cv_env_POSTPROC_LIBS_value=
ac_cv_env_SHOUT_CFLAGS_set=
ac_cv_env_SHOUT_CFLAGS_value=
ac_cv_env_SHOUT_LIBS_set=
ac_cv_env_SHOUT_LIBS_value=
ac_cv_env_SVG_CFLAGS_set=
ac_cv_env_SVG_CFLAGS_value=
ac_cv_env_SVG_LIBS_set=
ac_cv_env_SVG_LIBS_value=
ac_cv_env_VCDINFO_CFLAGS_set=
ac_cv_env_VCDINFO_CFLAGS_value=
ac_cv_env_VCDINFO_LIBS_set=
ac_cv_env_VCDINFO_LIBS_value=
ac_cv_env_WIDL_set=
ac_cv_env_WIDL_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_host=i686-pc-cygwin
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_ac_ct_CC='gcc -mno-cygwin'
ac_cv_prog_make_make_set=yes
ac_cv_target=i686-pc-cygwin

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /cygdrive/c/vlc/vlc-0.8.6i/autotools/missing --run aclocal-1.9'
ALIASES=''
ALLOCA=''
ALL_LINGUAS=''
AMDEPBACKSLASH=''
AMDEP_FALSE=''
AMDEP_TRUE=''
AMTAR='${SHELL} /cygdrive/c/vlc/vlc-0.8.6i/autotools/missing --run tar'
AM_CPPFLAGS=''
AR=''
ARCH=''
ARTS_CONFIG=''
AS=''
ASM=''
AUTOCONF='${SHELL} /cygdrive/c/vlc/vlc-0.8.6i/autotools/missing --run autoconf'
AUTOHEADER='${SHELL} /cygdrive/c/vlc/vlc-0.8.6i/autotools/missing --run autoheader'
AUTOMAKE='${SHELL} /cygdrive/c/vlc/vlc-0.8.6i/autotools/missing --run automake-1.9'
AWK='gawk'
BONJOUR_CFLAGS=''
BONJOUR_LIBS=''
BUILD_ACTIVEX_FALSE=''
BUILD_ACTIVEX_TRUE=''
BUILD_DIRENT_FALSE=''
BUILD_DIRENT_TRUE=''
BUILD_GETOPT_FALSE=''
BUILD_GETOPT_TRUE=''
BUILD_INCLUDED_LIBINTL=''
BUILD_JAVA_FALSE=''
BUILD_JAVA_TRUE=''
BUILD_MOZILLA_FALSE=''
BUILD_MOZILLA_TRUE=''
BUILD_PYTHON_FALSE=''
BUILD_PYTHON_TRUE=''
BUILD_SHARED_FALSE=''
BUILD_SHARED_TRUE=''
CACA_CONFIG=''
CATOBJEXT=''
CC='gcc -mno-cygwin'
CCAS=''
CCASFLAGS=''
CCDEPMODE=''
CFLAGS=''
CPP=''
CPPFLAGS='-I/usr/win32/include -I/usr/win32/include/ebml'
CXX='g++ -mno-cygwin'
CXXCPP=''
CXXDEPMODE=''
CXXFLAGS=''
CYGPATH=''
CYGPATH_W='cygpath -w'
DAAP_CFLAGS=''
DAAP_LIBS=''
DATADIRNAME=''
DEFS=''
DEPDIR=''
DIRAC_CFLAGS=''
DIRAC_LIBS=''
DIRECTFB_CFLAGS=''
DIRECTFB_LIBS=''
DLLTOOL=''
DSYMUTIL=''
DVDNAV_CONFIG=''
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP=''
ESD_CONFIG=''
EXEEXT=''
F77=''
FFLAGS=''
FFMPEG_CFLAGS=''
FFMPEG_CONFIG=''
FFMPEG_LIBS=''
FILE_LIBVLC_DLL=''
FIREFOX_CFLAGS=''
FIREFOX_LIBS=''
FIREFOX_XPCOM_CFLAGS=''
FIREFOX_XPCOM_LIBS=''
FREETYPE_CONFIG=''
FRIBIDI_CONFIG=''
GENCAT=''
GLIBC21=''
GMSGFMT=''
GNOMEVFS_CFLAGS=''
GNOMEVFS_LIBS=''
GNUTLS_CFLAGS=''
GNUTLS_LIBS=''
GREP=''
GTK2_CFLAGS=''
GTK2_LIBS=''
HAL_CFLAGS=''
HAL_LIBS=''
HAS_MIDL_COMPILER_FALSE=''
HAS_MIDL_COMPILER_TRUE=''
HAS_WIDL_COMPILER_FALSE=''
HAS_WIDL_COMPILER_TRUE=''
HAVE_BEOS_FALSE=''
HAVE_BEOS_TRUE=''
HAVE_BUILTINS_FALSE=''
HAVE_BUILTINS_TRUE=''
HAVE_DARWIN_FALSE=''
HAVE_DARWIN_TRUE=''
HAVE_PLUGINS_FALSE=''
HAVE_PLUGINS_TRUE=''
HAVE_WIN32_FALSE=''
HAVE_WIN32_TRUE=''
HAVE_WINCE_FALSE=''
HAVE_WINCE_TRUE=''
INCLUDED_LIBINTL=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
INSTOBJEXT=''
INTLBISON=''
INTLLIBS=''
INTLOBJS=''
INTL_LIBTOOL_SUFFIX_PREFIX=''
JAVA=''
JAVAC=''
LD=''
LDFLAGS='-L/usr/win32/lib'
LIBCDDB_CFLAGS=''
LIBCDDB_LIBS=''
LIBCDIO_CFLAGS=''
LIBCDIO_LIBS=''
LIBCDIO_PARANOIA_CFLAGS=''
LIBCDIO_PARANOIA_LIBS=''
LIBEXT=''
LIBICONV=''
LIBINTL=''
LIBOBJS=''
LIBS=''
LIBTOOL=''
LN_S=''
LOADER_FALSE=''
LOADER_TRUE=''
LTLIBICONV=''
LTLIBINTL=''
LTLIBOBJS=''
MACOSX_DEPLOYMENT_TARGET=''
MAINT=''
MAINTAINER_MODE_FALSE='#'
MAINTAINER_MODE_TRUE=''
MAKEINFO='${SHELL} /cygdrive/c/vlc/vlc-0.8.6i/autotools/missing --run makeinfo'
MIDL=''
MKINSTALLDIRS=''
MOC=''
MOZILLA_CONFIG=''
MOZILLA_NSPR_CFLAGS=''
MOZILLA_NSPR_LIBS=''
MOZILLA_SDK_PATH=''
MSGFMT=''
MSGMERGE=''
NMEDIT=''
NOTIFY_CFLAGS=''
NOTIFY_LIBS=''
NSPR_CFLAGS=''
NSPR_LIBS=''
OBJC=''
OBJCDEPMODE=''
OBJCFLAGS=''
OBJDUMP=''
OBJEXT=''
PACKAGE='vlc'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='vlc'
PACKAGE_STRING='vlc 0.8.6i'
PACKAGE_TARNAME='vlc'
PACKAGE_VERSION='0.8.6i'
PATH_SEPARATOR=':'
PKG_CONFIG=''
POSTPROC_CFLAGS=''
POSTPROC_LIBS=''
POSUB=''
RANLIB=''
SDL11_CONFIG=''
SDL12_CONFIG=''
SDL_CONFIG=''
SEAMONKEY_CONFIG=''
SED=''
SET_MAKE=''
SHELL='/bin/sh'
SHOUT_CFLAGS=''
SHOUT_LIBS=''
STRIP=''
SVG_CFLAGS=''
SVG_LIBS=''
SYMPREF=''
SYS=''
USE_INCLUDED_LIBINTL=''
USE_LIBTOOL_FALSE=''
USE_LIBTOOL_TRUE=''
USE_NLS=''
VCDINFO_CFLAGS=''
VCDINFO_LIBS=''
VERSION='0.8.6i'
VERSION_MAJOR='0'
VERSION_MINOR='8'
VERSION_REVISION='6'
VLC_CONFIG=''
VLC_ENTRY=''
WIDL=''
WINDRES=''
WINE_SDK_PATH=''
WX_CONFIG=''
XGETTEXT=''
XMKMF=''
XML2_CONFIG=''
XPIDL=''
XPIDL_INCL=''
XULRUNNER_CONFIG=''
X_CFLAGS=''
X_EXTRA_LIBS=''
X_LIBS=''
X_PRE_LIBS=''
ac_ct_CC='gcc -mno-cygwin'
ac_ct_CXX=''
ac_ct_F77=''
am__fastdepCC_FALSE=''
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE=''
am__fastdepCXX_TRUE=''
am__fastdepOBJC_FALSE=''
am__fastdepOBJC_TRUE=''
am__include=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-pc-cygwin'
build_alias=''
build_cpu='i686'
build_os='cygwin'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='i686-pc-cygwin'
host_alias=''
host_cpu='i686'
host_os='cygwin'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='/cygdrive/c/vlc/vlc-0.8.6i/autotools/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='mkdir -p --'
oldincludedir='/usr/include'
pdfdir='${docdir}'
pic=''
prefix='NONE'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target='i686-pc-cygwin'
target_alias=''
target_cpu='i686'
target_os='cygwin'
target_vendor='pc'
uudecode=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME "vlc"
#define PACKAGE_TARNAME "vlc"
#define PACKAGE_VERSION "0.8.6i"
#define PACKAGE_STRING "vlc 0.8.6i"
#define PACKAGE_BUGREPORT ""
#define PACKAGE "vlc"
#define VERSION "0.8.6i"

configure: exit 77


Return to “VLC media player for Windows Troubleshooting”

Who is online

Users browsing this forum: Majestic-12 [Bot] and 64 guests