Is there an easier way of doing this?

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
Jekktis
Level 1
Level 1
Posts: 7
Joined: Wed Nov 02, 2011 6:34 pm

Is there an easier way of doing this?

Post by Jekktis »

I'm trying to compile the latest wine release from source after a fresh linux mint install, and this is what I get when I do './configure'

Code: Select all

configure: libxcursor development files not found, the Xcursor extension won't be supported.
configure: libxi development files not found, the Xinput extension won't be supported.
configure: XShape development files not found, XShape won't be supported.
configure: libxrandr development files not found, XRandr won't be supported.
configure: libxinerama development files not found, multi-monitor setups won't be supported.
configure: libxcomposite development files not found, Xcomposite won't be supported.
configure: OpenCL development files not found, OpenCL won't be supported.
configure: libdbus development files not found, no dynamic device support.
configure: libgnutls development files not found, no schannel support.
configure: lib(n)curses development files not found, curses won't be supported.
configure: libsane development files not found, scanners won't be supported.
configure: libv4l development files not found.
configure: libgphoto2 development files not found, digital cameras won't be supported.
configure: liblcms development files not found, Color Management won't be supported.
configure: gstreamer-0.10 base plugins development files not found, gstreamer support disabled
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be supported.
configure: libcapi20 development files not found, ISDN won't be supported.
configure: libcups development files not found, CUPS won't be supported.
configure: fontconfig development files not found, fontconfig won't be supported.
configure: libgsm development files not found, gsm 06.10 codec won't be supported.
configure: libtiff development files not found, TIFF won't be supported.
configure: libmpg123 development files not found (or too old), mp3 codec won't be supported.
configure: libopenal development files not found (or too old), OpenAL won't be supported.
configure: libldap (OpenLDAP) development files not found, LDAP won't be supported.

configure: WARNING: prelink not found, base address of core dlls won't be set correctly.

configure: WARNING: libxrender development files not found, XRender won't be supported.

configure: WARNING: OpenGL development headers not found.
OpenGL and Direct3D won't be supported.

configure: WARNING: libxml2 development files not found (or too old), XML won't be supported.

configure: WARNING: libxslt development files not found, xslt won't be supported.

configure: WARNING: OpenSSL development files not found, SSL won't be supported.

configure: WARNING: libjpeg development files not found, JPEG won't be supported.

configure: WARNING: libpng development files not found, PNG won't be supported.

configure: WARNING: No sound system was found. Windows applications will be silent.
Do I really have to go through all of these and install them manually? isn't there an easier way of doing that?
Tlarhices
Level 4
Level 4
Posts: 101
Joined: Sun Mar 02, 2008 9:28 pm

Is there an easier way of doing this?

Post by Tlarhices »

"apt-get build-dep wine-dev" should get you all (or at least most of)
the dependencies at once (the package name may be different)

2012/2/27 Jekktis <[email protected]>:
I'm trying to compile the latest wine release from source after a fresh linux mint install, and this is what I get when I do './configure'

Code:
configure: libxcursor development files not found, the Xcursor extension won't be supported.
configure: libxi development files not found, the Xinput extension won't be supported.
configure: XShape development files not found, XShape won't be supported.
configure: libxrandr development files not found, XRandr won't be supported.
configure: libxinerama development files not found, multi-monitor setups won't be supported.
configure: libxcomposite development files not found, Xcomposite won't be supported.
configure: OpenCL development files not found, OpenCL won't be supported.
configure: libdbus development files not found, no dynamic device support.
configure: libgnutls development files not found, no schannel support.
configure: lib(n)curses development files not found, curses won't be supported.
configure: libsane development files not found, scanners won't be supported.
configure: libv4l development files not found.
configure: libgphoto2 development files not found, digital cameras won't be supported.
configure: liblcms development files not found, Color Management won't be supported.
configure: gstreamer-0.10 base plugins development files not found, gstreamer support disabled
configure: OSS sound system found but too old (OSSv4 needed), OSS won't be supported.
configure: libcapi20 development files not found, ISDN won't be supported.
configure: libcups development files not found, CUPS won't be supported.
configure: fontconfig development files not found, fontconfig won't be supported.
configure: libgsm development files not found, gsm 06.10 codec won't be supported.
configure: libtiff development files not found, TIFF won't be supported.
configure: libmpg123 development files not found (or too old), mp3 codec won't be supported.
configure: libopenal development files not found (or too old), OpenAL won't be supported.
configure: libldap (OpenLDAP) development files not found, LDAP won't be supported.

configure: WARNING: prelink not found, base address of core dlls won't be set correctly.

configure: WARNING: libxrender development files not found, XRender won't be supported.

configure: WARNING: OpenGL development headers not found.
OpenGL and Direct3D won't be supported.

configure: WARNING: libxml2 development files not found (or too old), XML won't be supported.

configure: WARNING: libxslt development files not found, xslt won't be supported.

configure: WARNING: OpenSSL development files not found, SSL won't be supported.

configure: WARNING: libjpeg development files not found, JPEG won't be supported.

configure: WARNING: libpng development files not found, PNG won't be supported.

configure: WARNING: No sound system was found. Windows applications will be silent.



Do I really have to go through all of these and install them manually? isn't there an easier way of doing that?



Jekktis
Level 1
Level 1
Posts: 7
Joined: Wed Nov 02, 2011 6:34 pm

Re: Is there an easier way of doing this?

Post by Jekktis »

Tlarhices wrote:"apt-get build-dep wine-dev" should get you all (or at least most of)
the dependencies at once (the package name may be different)
oh ok, I was following the instructions on this site for compiling. Does this replace the 'make depend' command? if it does then I would just do 'make', then 'make install', correct?
Jekktis
Level 1
Level 1
Posts: 7
Joined: Wed Nov 02, 2011 6:34 pm

Post by Jekktis »

Oh, when I use that command it returns this:

Code: Select all

E: You must put some 'source' URIs in your sources.list
jjmckenzie
Moderator
Moderator
Posts: 1153
Joined: Wed Apr 27, 2011 11:01 pm

Is there an easier way of doing this?

Post by jjmckenzie »

On Mon, Feb 27, 2012 at 6:35 AM, Jekktis <[email protected]> wrote:
Tlarhices wrote:
"apt-get build-dep wine-dev" should get you all (or at least most of)
the dependencies at once (the package name may be different)
oh ok, I was following the instructions on this site for compiling. Does this replace the 'make depend' command? if
it does then I would just do 'make', then 'make install', correct?
make depend or make deps has been deprecated for quite some time and
should actually be removed from the code base and give an error
message.

Use the apt-get command and then:

./configure <with any variables/changes you need/want>
make
sudo made install (the installer does require root privileges but
running Wine does not and should not be done.)

James
Locked