Sponsored Content
Special Forums UNIX Desktop Questions & Answers Know anything about wine????? Post 17880 by killerserv on Wednesday 20th of March 2002 09:29:12 PM
Old 03-20-2002
Get the development packages you need and install them properly. Get the source package and install it into a directory of your choice.

$ ./configure
$ make depend
$ make

If there are errors, ensure that you got all the packages you need, and ensure that the changes you made to the configure script work. For some errors you have to delete config.cache (or just do a make distclean) in the directory with the Wine source tree and try again...

$ sudo make install
or
$ sudo -c make install

If you succesfully make at this steps.. then you wont have problem to configure on it. And yet you need to check this website.
http://www.la-sorciere.de/Wine-HOWTO/configsystem.html
Do check it..
Quote:
Originally Replyed by TRUEST
Please, for god's sake, if your going to refer me to a web site, please dont bother replying
*For some Instructions that are quite large and more word dependents some of us might direct you to check webpages or suggest some url's. Actually there might have webpages with more information and wide large Tips and tricks.. Hope you do understand..
Pls post back if the above doesnt help much..
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Wine

Hi! I have installed wine but when I wan't to run it it says Can't open configuration file /root/.wine/config .. I'm root when i run it.. (2 Replies)
Discussion started by: CreamHarry
2 Replies

2. UNIX for Dummies Questions & Answers

help need help on wine how to put in

how the hell do you put wine in because i don't know i have mandrake please tell how to put in (1 Reply)
Discussion started by: amicrawler
1 Replies

3. Linux

Install with wine

Hello, here I am again with another question! :) I am installing some programs in Linux that are acctually ment for windows (using wine ofcourse), oftenly the installation works just fine and the programs execute fine after the installation is complete. Now to my problem. I cant find my ... (2 Replies)
Discussion started by: Kimm
2 Replies

4. Linux

Wine

Hey, I've switched my main PC over to Mandrake 10.1. Everything is set up except for Wine. I'm having problems installing WoW(world of warcraft). It says that it can not install it because i may be out of hard drive room. I've checked and i'm not. Wine is installed on the correct... (1 Reply)
Discussion started by: byblyk
1 Replies

5. Linux

Wine Problems...

i was under the impression that the Gens Emulator would work fine using Wine, and I have had it function once before (although im not sure how i got it to work)... it loads up fine but when i go to load a ROM it just closes... this is a fresh FC3 installation and ive set everything up the same...... (3 Replies)
Discussion started by: HMSS013
3 Replies

6. Linux

Wine

# wine Endless.exe fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x3ffaa6a0)->(0001002a,00000008) fixme:dmime:IDirectMusicPerformance8Impl_Init (iface = 0x3ffabd98, dmusic = (nil), dsound = (nil), hwnd = (nil))... (0 Replies)
Discussion started by: Archduke Qualin
0 Replies

7. Solaris

wine could not load

Hi All, I have wine error on solaris 10 , like's below : bash-3.00$ wine wine: creating configuration directory '/usr/user/zonk/.wine'... fixme:file:get_default_drive_device auto detection of DOS devices not supported on this platform fixme:ntdll:NtQueryVolumeInformationFile device info... (0 Replies)
Discussion started by: zonk
0 Replies

8. Fedora

WIne ... Diablo 2 ?

Hello probably not the best website to talk about gaming on your unix box :) but lets say I have wanted to see how well DIABLO 2 Runs on my Fedora 9 box What all would I have to DOWNLOAD and or install and what order :) any direction would be great I just want to try out wine , and... (2 Replies)
Discussion started by: Producer
2 Replies

9. SuSE

Wine Installation Failure

When I try to install wine either through yast or zypper it fails with below message: zypper in wine Refreshing service 'nu_novell_com'. Loading repository data... Reading installed packages... Resolving package dependencies... Problem: nothing provides libOSMesa.so.8()(64bit) needed by... (0 Replies)
Discussion started by: rupeshkp728
0 Replies
DEBIAN-MATLAB-MEXHELPER(1)					   User Commands					DEBIAN-MATLAB-MEXHELPER(1)

NAME
debian-matlab-mexhelper - helper to build Matlab extensions on Debian SYNOPSIS
debian-matlab-mexhelper [OPTIONS] <package name> <mode> DESCRIPTION
The is a small helper that eases building and installing MEX extensions for Matlab toolbox packages in Debian binary packages. Because these packages cannot build-depend on Matlab (for obvious reasons) they need to compile their extensions at installation time using a local Matlab installation. The helper is somewhat flexible by supporting custom build, install and clean commands, as well as source and destina- tion directories. It also deals with moving extensions into library directories and automatically symlinks them into the toolbox direc- tory. There are two major modes: 'install' to build, install and symlink extensions (useful in postinst) and 'clean' to remove installed exten- sions and symlinks (useful in prerm). The command to build the extensions is invoked in the source directory. By default, this is /usr/src/matlab/<package name>, but can be overridden with the --src-dir option. Any optional 'install' (--install-cmd) and 'clean' (--clean-cmd) are invoked in the source directory too. Moreover, this helper will also take any installed extensions from a default installation path /usr/share/matlab/site/m/<package name>, move them into /usr/lib/matlab/site/<package name> and symlink back to the original location. These locations can be configured with the --m-dir and --mex-dir options respectively. Again, this step is optional and is only performed if a package actually installs extensions inot this location. OPTIONS
-h Print usage summary and option list. --help Print full help. --version Print version information and exit. --build-cmd Command to build the extensions in the source directory --install-cmd Command to install the extensions after building --clean-cmd Command to clean the source tree after installation. This is not the command that is executed in 'clean' mode. --src-dir Directory with the extension sources. This is also the directory in which build, install and clean commands get invoked. --mex-dir Target directory into which binary extensions get moved. --m-dir Target directory in which symlinks to binary extensions get created. --make Set default commands for 'build-cmd' (make), 'install-cmd' (make install DESTDIR=$m_dir) and 'clean-cmd' (make distclean) if no spe- cific command has been provided via the respective options. EXAMPLES
The following call can be used in a package's postinst script if it comes with a Matlab script 'build_matlab.m' that builds and installs its extension into the desired locations. The --src-dir option is used to point to a non-standard location of the extension sources. debian-matlab-mexhelper somepackagename install --src-dir /usr/src/dynare-matlab/mex/sources --build-cmd 'matlab -nodesktop -nodisplay -nojvm -r build_matlab' If a package installs extension sources into the standard location and builds its extensions using a Makefile that support the DESTDIR for installing the built extensions and a 'distclean' target it is sufficient to run the following. debian-matlab-mexhelper somepackagename install --make Otherwise it is also possible to fully customize all commands. debian-matlab-mexhelper difficultpackage install --build-cmd 'make -C src all toolbox MEXBIN="matlab-mex"' --install-cmd 'make -C src install && find . ! -wholename "./src" -name "*.mex?*" -print0 | xargs -0 -I {} cp -v --parent {} /usr/share/difficultpackage' --clean-cmd 'make -C src distclean tool- box-distclean && find . -name "*.mex?*" -delete' If a package uses debian-matlab-mexhelper to install extensions into the standard location it can also be used to remove all MEX extensions and created symlinks when a package is removed from a system. To achieve this simply put the following call into a package's prerm script. debian-matlab-mexhelper packagename clean AUTHOR
Written by Michael Hanke. COPYRIGHT
Copyright (C) 2010-2011 Michael Hanke <michael.hanke@gmail.com> Licensed under GNU Public License version 3 or later. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. debian-matlab-mexhelper 0.0.18 March 2012 DEBIAN-MATLAB-MEXHELPER(1)
All times are GMT -4. The time now is 09:39 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy