› Foros › PC › Software libre
jlljmansilla escribió:Prueba esto, no se que sistema usas , pero creo que te valga
instalarlo en Ubuntu o Linux Mint
Ha sido publicado Wine 1.6. Con Wine podemos ejecutar aplicaciones desarrolladas para Windows en sistemas operativos tipo Unix como Linux. Esta última versión llega después de 16 meses de desarrollo y con casi 10.000 cambios realizados. Wine es más compatible que nunca.
Para instalarlo en nuestro sistema haremos uso del procedimiento habitual. Esto es abriremos una terminal (CTRL + ALT +T) y ejecutaremos las siguientes ordenes:
Cómo instalar Wine 1.6 en Ubuntu y Linux Mint
Shell
sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install wine1.6 sudo apt-get install winetricks
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.6
sudo apt-get install winetricks
Tras esto Wine quedará instalado en nuestro sistema listo para ejecutar aplicaciones Windows en él.
./configure
make
sudo make install
sudo aptitude update
sudo aptitude install wine
noentiendero escribió:Qué distro tienes? muchas distribuciones en los repositorios que traen tienen el propio wine, incluyendo la version 1.6.
elchicosinhada escribió:El problema es que no sabemos que distribución tienes pues cada una tiene un sistema de paquetes (instaladores por decirlo de alguna manera) distinto. Las soluciones basadas en apt son para distros derivadas de Debian.
Aún así, para un usuario no experimentado se recomienda siempre usar las versiones proporcionadas por la distribución en vez de instalarlas de forma manual. Además de ser mucho más sencillo, te aseguras de tener compatibilidad con el resto de las aplicaciones y no tener que preocuparte de actualizar la aplicación.
aselR escribió:No sabemos que distribución usas (Linux no es una distribución) aunque suponemos que es alguna basada en Debian.
Como te han comentado los compañeros, olvídate de compilar a mano el código fuente ya que si no sabes lo que hacer con esa carpeta que te crea te vas a liar mucho más. Por cierto, tendrás que hacer algo parecido a:./configure
make
sudo make install
Y ya ni hablamos de que tendrás que buscar las dependencias e ir instalándolas para poder compilar el paquete.
Yo instalaría Wine desde repositorios (o si necesitas una versión específica PPA, si estás en Ubuntu claro). Por tus explicaciones, veo que no tienes mucha idea de lo que estás haciendo, por lo tanto yo no andaría pegando comandos sin saber ni lo que hacen.
Tienes 2 modos de instalarlo:
1 - Compilar el código fuente, que es como lo estas intentando. Como te he comentado al principio, ni lo intentes.
2 - Utilizar un gestor de paquetes que lo haga todo por ti. Es la que se usa el 99% de las veces, rápido, fácil y para toda la familia. En este caso:sudo aptitude update
sudo aptitude install wine
Lo que dices del /etc/apt/sources.list son los repositorios donde busca el gestor de paquetes. Si añades alguno tienes que hacer un aptitude update para que lo actualice.
A ver si tienes suerte, y pon los errores que te da para que podamos ayudarte mejor.
PD: Has probado con estos binarios que vienen ya preparados para las distintas distribuciones?
http://www.winehq.org/download
blackgem escribió:Los comandos en el terminal, las dudas de ese paquete en su readme o pagina oficial.
Luego ya los errores y las dudas las puedes poner aquí después de haber consultar y realizar esos pasos ^^.
Todo ello con el sistema actualizado al máximo claro.
1. INTRODUCTION
Wine is a program which allows running Microsoft Windows programs
(including DOS, Windows 3.x, Win32, and Win64 executables) on Unix.
It consists of a program loader which loads and executes a Microsoft
Windows binary, and a library (called Winelib) that implements Windows
API calls using their Unix or X11 equivalents. The library may also
be used for porting Windows code into native Unix executables.
Wine is free software, released under the GNU LGPL; see the file
LICENSE for the details.
2. QUICK START
Whenever you compile from source, it is recommended to use the Wine
Installer to build and install Wine. From the top-level directory
of the Wine source (which contains this file), run:
./tools/wineinstall
Run programs as "wine program". For more information and problem
resolution, read the rest of this file, the Wine man page, and
especially the wealth of information found at http://www.winehq.org.
3. REQUIREMENTS
To compile and run Wine, you must have one of the following:
Linux version 2.0.36 or later
FreeBSD 7.0 or later
Solaris x86 9 or later
NetBSD-current
Mac OS X 10.5 or later
As Wine requires kernel-level thread support to run, only the operating
systems mentioned above are supported. Other operating systems which
support kernel threads may be supported in the future.
FreeBSD info:
Wine will generally not work properly on versions before FreeBSD 7.0.
See http://wiki.freebsd.org/Wine for more information.
Solaris info:
You will most likely need to build Wine with the GNU toolchain
(gcc, gas, etc.). Warning : installing gas does *not* ensure that it
will be used by gcc. Recompiling gcc after installing gas or
symlinking cc, as and ld to the gnu tools is said to be necessary.
NetBSD info:
Make sure you have the USER_LDT, SYSVSHM, SYSVSEM, and SYSVMSG options
turned on in your kernel.
Mac OS X info:
You need Xcode 2.4 or later to build properly on x86.
The Mac driver requires OS X 10.6 or later and won't be built on 10.5.
Supported file systems:
Wine should run on most file systems. A few compatibility problems
have also been reported using files accessed through Samba. Also,
NTFS does not provide all the file system features needed by some
applications. Using a native Unix file system is recommended.
Basic requirements:
You need to have the X11 development include files installed
(called xlib6g-dev in Debian and XFree86-devel in Red Hat).
Of course you also need "make" (most likely GNU make).
You also need flex version 2.5.33 or later and bison.
Optional support libraries:
Configure will display notices when optional libraries are not found
on your system. See http://wiki.winehq.org/Recommended_Packages for
hints about the packages you should install.
On 64-bit platforms, if compiling Wine as 32-bit (default), you have
to make sure to install the 32-bit versions of these libraries; see
http://wiki.winehq.org/WineOn64bit for details. If you want a true
64-bit Wine (or a mixed 32-bit and 64-bit Wine setup), see
http://wiki.winehq.org/Wine64 for details.
4. COMPILATION
In case you chose to not use wineinstall, run the following commands
to build Wine:
./configure
make
This will build the program "wine" and numerous support libraries/binaries.
The program "wine" will load and run Windows executables.
The library "libwine" ("Winelib") can be used to compile and link
Windows source code under Unix.
To see compile configuration options, do ./configure --help.
5. SETUP
Once Wine has been built correctly, you can do "make install"; this
will install the wine executable and libraries, the Wine man page, and
other needed files.
Don't forget to uninstall any conflicting previous Wine installation
first. Try either "dpkg -r wine" or "rpm -e wine" or "make uninstall"
before installing.
Once installed, you can run the "winecfg" configuration tool. See the
Support area at http://www.winehq.org/ for configuration hints.
6. RUNNING PROGRAMS
When invoking Wine, you may specify the entire path to the executable,
or a filename only.
For example: to run Notepad:
wine notepad (using the search Path as specified in
wine notepad.exe the registry to locate the file)
wine c:\\windows\\notepad.exe (using DOS filename syntax)
wine ~/.wine/drive_c/windows/notepad.exe (using Unix filename syntax)
wine notepad.exe readme.txt (calling program with parameters)
Wine is not perfect, so some programs may crash. If that happens you
will get a crash log that you should attach to your report when filing
a bug.
7. GETTING MORE INFORMATION
WWW: A great deal of information about Wine is available from WineHQ at
http://www.winehq.org/ : various Wine Guides, application database,
bug tracking. This is probably the best starting point.
FAQ: The Wine FAQ is located at http://www.winehq.org/FAQ
Wiki: The Wine Wiki is located at http://wiki.winehq.org
Mailing lists:
There are several mailing lists for Wine users and developers;
see http://www.winehq.org/forums for more information.
Bugs: Report bugs to Wine Bugzilla at http://bugs.winehq.org
Please search the bugzilla database to check whether your
problem is already known or fixed before posting a bug report.
IRC: Online help is available at channel #WineHQ on irc.freenode.net.
Git: The current Wine development tree is available through Git.
Go to http://www.winehq.org/git for more information.
If you add something, or fix a bug, please send a patch (preferably
using git-format-patch) to the wine-patches@winehq.org list for
inclusion in the next release.
--
Alexandre Julliard
julliard@winehq.org
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Wine configure 1.7.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure
## --------- ##
## Platform. ##
## --------- ##
hostname = canaima-popular
uname -m = i686
uname -r = 3.2.0-3-686-pae
uname -s = Linux
uname -v = #1 SMP Mon Jul 23 03:50:34 UTC 2012
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/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/local/games
PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2904: checking build system type
configure:2918: result: i686-pc-linux-gnu
configure:2938: checking host system type
configure:2951: result: i686-pc-linux-gnu
configure:2981: checking whether make sets $(MAKE)
configure:3003: result: yes
configure:3060: checking for gcc
configure:3076: found /usr/bin/gcc
configure:3087: result: gcc
configure:3316: checking for C compiler version
configure:3325: gcc --version >&5
gcc (Debian 4.8.1-9) 4.8.1
Copyright (C) 2013 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:3336: $? = 0
configure:3325: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i486-linux-gnu/4.8/lto-wrapper
Target: i486-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.8.1-9' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --with-arch-32=i586 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.8.1 (Debian 4.8.1-9)
configure:3336: $? = 0
configure:3325: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3336: $? = 4
configure:3325: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:3336: $? = 4
configure:3356: checking whether the C compiler works
configure:3378: gcc conftest.c >&5
/usr/bin/ld: cannot find crt1.o: No such file or directory
/usr/bin/ld: cannot find crti.o: No such file or directory
/usr/bin/ld: cannot find -lc
/usr/bin/ld: cannot find crtn.o: No such file or directory
collect2: error: ld returned 1 exit status
configure:3382: $? = 1
configure:3420: result: no
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "Wine"
| #define PACKAGE_TARNAME "wine"
| #define PACKAGE_VERSION "1.7.1"
| #define PACKAGE_STRING "Wine 1.7.1"
| #define PACKAGE_BUGREPORT "wine-devel@winehq.org"
| #define PACKAGE_URL "http://www.winehq.org"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:3425: error: in `/home/canaima/wine-1.7.1':
configure:3427: error: C compiler cannot create executables
See `config.log' for more details
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-pc-linux-gnu
ac_cv_env_CAPI20_CFLAGS_set=
ac_cv_env_CAPI20_CFLAGS_value=
ac_cv_env_CAPI20_LIBS_set=
ac_cv_env_CAPI20_LIBS_value=
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_DBUS_CFLAGS_set=
ac_cv_env_DBUS_CFLAGS_value=
ac_cv_env_DBUS_LIBS_set=
ac_cv_env_DBUS_LIBS_value=
ac_cv_env_FREETYPE_CFLAGS_set=
ac_cv_env_FREETYPE_CFLAGS_value=
ac_cv_env_FREETYPE_LIBS_set=
ac_cv_env_FREETYPE_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_GPHOTO2_CFLAGS_set=
ac_cv_env_GPHOTO2_CFLAGS_value=
ac_cv_env_GPHOTO2_LIBS_set=
ac_cv_env_GPHOTO2_LIBS_value=
ac_cv_env_GPHOTO2_PORT_CFLAGS_set=
ac_cv_env_GPHOTO2_PORT_CFLAGS_value=
ac_cv_env_GPHOTO2_PORT_LIBS_set=
ac_cv_env_GPHOTO2_PORT_LIBS_value=
ac_cv_env_GSTREAMER_CFLAGS_set=
ac_cv_env_GSTREAMER_CFLAGS_value=
ac_cv_env_GSTREAMER_LIBS_set=
ac_cv_env_GSTREAMER_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_JPEG_CFLAGS_set=
ac_cv_env_JPEG_CFLAGS_value=
ac_cv_env_JPEG_LIBS_set=
ac_cv_env_JPEG_LIBS_value=
ac_cv_env_LCMS2_CFLAGS_set=
ac_cv_env_LCMS2_CFLAGS_value=
ac_cv_env_LCMS2_LIBS_set=
ac_cv_env_LCMS2_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_MPG123_CFLAGS_set=
ac_cv_env_MPG123_CFLAGS_value=
ac_cv_env_MPG123_LIBS_set=
ac_cv_env_MPG123_LIBS_value=
ac_cv_env_PNG_CFLAGS_set=
ac_cv_env_PNG_CFLAGS_value=
ac_cv_env_PNG_LIBS_set=
ac_cv_env_PNG_LIBS_value=
ac_cv_env_SANE_CFLAGS_set=
ac_cv_env_SANE_CFLAGS_value=
ac_cv_env_SANE_LIBS_set=
ac_cv_env_SANE_LIBS_value=
ac_cv_env_TIFF_CFLAGS_set=
ac_cv_env_TIFF_CFLAGS_value=
ac_cv_env_TIFF_LIBS_set=
ac_cv_env_TIFF_LIBS_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_value=
ac_cv_env_XML2_CFLAGS_set=
ac_cv_env_XML2_CFLAGS_value=
ac_cv_env_XML2_LIBS_set=
ac_cv_env_XML2_LIBS_value=
ac_cv_env_XSLT_CFLAGS_set=
ac_cv_env_XSLT_CFLAGS_value=
ac_cv_env_XSLT_LIBS_set=
ac_cv_env_XSLT_LIBS_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-linux-gnu
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_make_make_set=yes
## ----------------- ##
## Output variables. ##
## ----------------- ##
ALL_TEST_RESOURCES=''
ALSALIBS=''
APPKITLIB=''
APPLICATIONSERVICESLIB=''
AR=''
ARFLAGS=''
BISON=''
BUILTINFLAG=''
CAPI20_CFLAGS=''
CAPI20_LIBS=''
CARBONLIB=''
CC='gcc'
CFLAGS=''
CONVERT=''
COREAUDIO=''
COREFOUNDATIONLIB=''
CORESERVICESLIB=''
CPP=''
CPPBIN=''
CPPFLAGS=''
CROSSCC=''
CROSSTARGET=''
CROSSTEST_DISABLE=''
CUPSINCL=''
CXX=''
CXXFLAGS=''
DBUS_CFLAGS=''
DBUS_LIBS=''
DEFS=''
DISKARBITRATIONLIB=''
DLLEXT=''
DLLFLAGS=''
DLLTOOL=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP=''
EXEEXT=''
EXTRACFLAGS=''
EXTRA_BINARIES=''
FLEX=''
FONTCONFIGINCL=''
FONTFORGE=''
FORCEFEEDBACKLIB=''
FRAMEWORK_OPENAL=''
FREETYPE_CFLAGS=''
FREETYPE_LIBS=''
GNUTLS_CFLAGS=''
GNUTLS_LIBS=''
GPHOTO2_CFLAGS=''
GPHOTO2_LIBS=''
GPHOTO2_PORT_CFLAGS=''
GPHOTO2_PORT_LIBS=''
GREP=''
GSTREAMER_CFLAGS=''
GSTREAMER_LIBS=''
HAL_CFLAGS=''
HAL_LIBS=''
ICOTOOL=''
IMPLIBEXT=''
INSTALL_DATA=''
INSTALL_PROGRAM=''
INSTALL_SCRIPT=''
IOKITLIB=''
JPEG_CFLAGS=''
JPEG_LIBS=''
LCMS2_CFLAGS=''
LCMS2_LIBS=''
LDAPLIBS=''
LDCONFIG=''
LDD=''
LDEXECFLAGS=''
LDFLAGS=''
LDPATH=''
LDRPATH_INSTALL=''
LDRPATH_LOCAL=''
LIBDL=''
LIBGETTEXTPO=''
LIBKSTAT=''
LIBOBJS=''
LIBOPENAL=''
LIBOPENCL=''
LIBPOLL=''
LIBPROCSTAT=''
LIBPTHREAD=''
LIBRT=''
LIBS=''
LIBWINE_RULES=''
LINGUAS=''
LINT=''
LINTFLAGS=''
LN_S=''
LTLIBOBJS=''
MAINTAINER_MODE=''
MAIN_BINARY=''
MPG123_CFLAGS=''
MPG123_LIBS=''
MSGFMT=''
OBJEXT=''
OPENGL_LIBS=''
OSS4INCL=''
PACKAGE_BUGREPORT='wine-devel@winehq.org'
PACKAGE_NAME='Wine'
PACKAGE_STRING='Wine 1.7.1'
PACKAGE_TARNAME='wine'
PACKAGE_URL='http://www.winehq.org'
PACKAGE_VERSION='1.7.1'
PATH_SEPARATOR=':'
PKG_CONFIG=''
PNG_CFLAGS=''
PNG_LIBS=''
PORCFLAGS=''
PRELINK=''
QUICKTIMELIB=''
RANLIB=''
READELF=''
RESOLVLIBS=''
RSVG=''
SANE_CFLAGS=''
SANE_LIBS=''
SECURITYLIB=''
SET_MAKE=''
SHELL='/bin/bash'
SOCKETLIBS=''
TARGETFLAGS=''
TIFF_CFLAGS=''
TIFF_LIBS=''
TOOLSDIR=''
TOOLSEXT=''
UNWINDFLAGS=''
WOW64_DISABLE=''
XLIB=''
XMKMF=''
XML2_CFLAGS=''
XML2_LIBS=''
XSLT_CFLAGS=''
XSLT_LIBS=''
X_CFLAGS=''
X_EXTRA_LIBS=''
X_LIBS=''
X_PRE_LIBS=''
ZLIB=''
ac_ct_AR=''
ac_ct_CC='gcc'
ac_ct_CXX=''
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='NONE'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ------------------- ##
## File substitutions. ##
## ------------------- ##
MAKE_DLL_RULES=''
MAKE_IMPLIB_RULES=''
MAKE_PROG_RULES=''
MAKE_RULES=''
MAKE_TEST_RULES=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "Wine"
#define PACKAGE_TARNAME "wine"
#define PACKAGE_VERSION "1.7.1"
#define PACKAGE_STRING "Wine 1.7.1"
#define PACKAGE_BUGREPORT "wine-devel@winehq.org"
#define PACKAGE_URL "http://www.winehq.org"
configure: exit 77
canaima@canaima-popular:~/wine-1.7.1$ ./tools/wineinstall
Wine Installer v1.0
We need to install Wine as the root user. Do you want us to build Wine,
'su root' and install Wine? Enter 'no' to build Wine without installing:
(yes/no) yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/home/canaima/wine-1.7.1':
configure: error: C compiler cannot create executables
See `config.log' for more details
Configure failed, aborting install.
canaima@canaima-popular:~/wine-1.7.1$ ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/home/canaima/wine-1.7.1':
configure: error: C compiler cannot create executables
See `config.log' for more details
gcc version 4.8.1 (Debian 4.8.1-9)
configure:3336: $? = 0
configure:3325: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
blackgem escribió:Mucha info y to poco tiempo...
Así a bote pronto... ¿tienes los paquetes build-essential, libc6-dev y semejantes instalado?, el te debería proporcionar lo necesario para compilar.
Y para ejecutar una instalacion al principio deberas hacerlo como root tal como comenta por ahi. Ahi pone que le diste a que si pero entonces deberia pedirte contraseña :/ asi que mejor antes de ellos realizar un "su root".
Del log leo:gcc version 4.8.1 (Debian 4.8.1-9)
configure:3336: $? = 0
configure:3325: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
Y no, yo tampoco conozco la opcion -V
Cannot open SVG file at ./tools/buildimage line 31.
Masón escribió:blackgem escribió:Mucha info y to poco tiempo...
Así a bote pronto... ¿tienes los paquetes build-essential, libc6-dev y semejantes instalado?, el te debería proporcionar lo necesario para compilar.
Y para ejecutar una instalacion al principio deberas hacerlo como root tal como comenta por ahi. Ahi pone que le diste a que si pero entonces deberia pedirte contraseña :/ asi que mejor antes de ellos realizar un "su root".
Del log leo:gcc version 4.8.1 (Debian 4.8.1-9)
configure:3336: $? = 0
configure:3325: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
Y no, yo tampoco conozco la opcion -V
Bueno sigo haciendo pruebas y nada... Con root me da exactamente la misma respuesta. :/
Hay un archivo en esa carpeta que dice buildimage, pero me da la siguiente respuesta.Cannot open SVG file at ./tools/buildimage line 31.
Ya estoy que no sé que hacer hermano... no sé a quién contactar...
Saludos