Displaying 7 results from an estimated 7 matches for "nosource".
2009 Sep 03
4
build wine dll problem
...indlls-wrapper) to build a dll with wine that i can load dynamically in a windows wine application.
this is what i am doing:
MyWinDll.spec
Code:
2 stdcall MyWinFunc (int) MyProxyWinFunc
MyWin.c
Code:
#include <windef.h>
short MyProxyWinFunc(int *i)
{
return 5;
}
shell
Code:
winemaker --nosource-fix --dll --single-target MyWin --nomfc .
make
I get the following error:
Code:
/usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main':
(.text+0xa9): undefined reference to `WinMain'
Why is it asking for a main function, i am trying to build a dll...
2006 Sep 12
4
2.6.9-42.ELsmp kernel and 3ware 9550 tools
I have the latest kernel with the drivers for my 3ware 9550SX built in.
Where
can I find the tools and monitoring apps for this card? Are there rpms
hiding
somewhere, or do I need to build it from source?
--
Bowie
2010 Jun 09
2
Help with simple dll wrapper around linux so
...dd(int,int);
WinAdd.c:
WinAdd.c:
Code:
#include <windef.h>
#include "add.h"
int WINAPI WinAdd (int a,int b) {
return add(a,b);
}
WinAdd.dll.spec:
Code:
2 stdcall WinAdd (long long) WinAdd
now, i have these all in a directory called test. I type:
Code:
winemaker . --nosource-fix --nomfc -iadd --single-target WinAdd -L"."
(ive already compiled to libadd.so for linux), and then run
Code:
make
And i get:
Code:
winegcc -o WinAdd.so add.o WinAdd.o -L. -ladd
/usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main':
(.text+0xa0): undefined...
2011 Jun 21
2
Using winemaker / building wine DLLs
...ritten for a Windows binary that will run in
Linux (I'm basically trying to wrap a Linux system call so that I can
call it from a Windows program).
So, I followed the guide at
http://www.winehq.org/docs/winelib-guide/bindlls, and winemaker gave me
a makefile. I ran winemaker with:
winemaker --nosource-fix --dll --single-target MyLib --nomfc
Running make produced errors related to 32/64-bit incompatibility, which
persisted until I:
1. added -m32 to CEXTRA and
2. added an explicit target for .o files (since the implicit target
doesn't use CEXTRA)
This made the compile fail with errors about...
2007 Aug 10
3
Building rpm-s from binaries
Hi,
We'd like to simplify deployment of new blades and I need to package some of
proprietary libs we are using, and obviously I don't have sources for them.
Can anybody point me into good direction how to make packages from binaries? I
have basic knowledge about building rpms, but it seems to be source oriented.
Thanks in advance
--
Tomasz Napierala
System Administrator
Allegro Team
2009 Feb 03
1
Some question of DHT Translator?
Does DHT Translator all files under the same directory will be store on the
same node?
It sounds terrible.
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://supercolony.gluster.org/pipermail/gluster-users/attachments/20090203/ebbdc7a5/attachment.html>
2007 Jun 13
0
[RPMS] XGL/Compiz git Fedora packages
...post, if you're not a Fedora
user just skip it.
I've been building Compiz packages since Fedora Core 5 came out (Xgl
only) and updating since then with all the new stuff, AIGLX and
whatever. I use them on a very large range of hardware.
Attached are my source rpm packages built with "NoSource" in the spec
file to make them smaller as I don't have a webspace to host them, to
get the sources just look at the urls in the spec file or the commented
info on how to get them through git.
What do my Compiz packages differ from Fedora ones or the other floating
around the web? I made m...