Re: gdiplus: added stub implementation of gdiplus.dll
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory. Mounir IDRASSI IDRIX - Cryptography and IT Security Experts http://www.idrix.fr Evan Stade wrote:
Changelog: * added stub implementation of gdiplus.dll (3 files)
dlls/gdiplus/Makefile.in | 16 + dlls/gdiplus/gdiplus.c | 45 +++ dlls/gdiplus/gdiplus.spec | 609 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 670 insertions(+), 0 deletions(-)
On 5/25/07, Mounir IDRASSI <mounir.idrassi(a)idrix.fr> wrote:
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory.
The only file outside of gdiplus that he has to modify is configure.ac. -- James Hawkins
James Hawkins wrote:
On 5/25/07, Mounir IDRASSI <mounir.idrassi(a)idrix.fr> wrote:
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory.
The only file outside of gdiplus that he has to modify is configure.ac.
I thought he should run tools/make_makefiles
On 5/25/07, Andrey Turkin <andrey.turkin(a)gmail.com> wrote:
James Hawkins wrote:
On 5/25/07, Mounir IDRASSI <mounir.idrassi(a)idrix.fr> wrote:
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory.
The only file outside of gdiplus that he has to modify is configure.ac.
I thought he should run tools/make_makefiles
That's not required. -- James Hawkins
I think all the files that Mounir said to include are all modified automatically or by Julliard "You should not include any autogenerated code, that was created from 'autoconf' or a tool inside 'tools/' ( tools/make_makefiles or winedump as examples), when you submit your Patch to winehq.org" On 5/25/07, James Hawkins <truiken(a)gmail.com> wrote:
On 5/25/07, Andrey Turkin <andrey.turkin(a)gmail.com> wrote:
James Hawkins wrote:
On 5/25/07, Mounir IDRASSI <mounir.idrassi(a)idrix.fr> wrote:
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory.
The only file outside of gdiplus that he has to modify is configure.ac .
I thought he should run tools/make_makefiles
That's not required.
-- James Hawkins
James Hawkins wrote:
On 5/25/07, Andrey Turkin <andrey.turkin(a)gmail.com> wrote:
James Hawkins wrote:
On 5/25/07, Mounir IDRASSI <mounir.idrassi(a)idrix.fr> wrote:
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory. > The only file outside of gdiplus that he has to modify is configure.ac. > I thought he should run tools/make_makefiles That's not required. When adding a directory into the local repository I have found need to add the Makefiles and configure, etc, in addition the the configure.ac if you want to compile from your new directory as part of a make at the top level. Is there a secret to propagating the configuration? Or is this a prerogative of Alexandre's?
Jeff Latimer
On Sa, 2007-05-26 at 23:37 +1000, Jeff L wrote:
When adding a directory into the local repository I have found need to add the Makefiles and configure, etc, in addition the the configure.ac
1) git must know the new dll: git update-index --add dlls/<yourdll>/Makefile.in 2) run tools/make_makefiles See the wiki: http://wiki.winehq.org/Developers-Hints#head-30a7f7f51ce0e42b4141749c9832bae... You should not include any autogenerated stuff in your Patch, otherwise your patch will possibly not apply, when another dll was added. -- By by ... Detlef
James Hawkins wrote:
On 5/25/07, Andrey Turkin <andrey.turkin(a)gmail.com> wrote:
James Hawkins wrote:
On 5/25/07, Mounir IDRASSI <mounir.idrassi(a)idrix.fr> wrote:
Hi, You also have to modify other files in order to integrate your stub implementation to the wine build chain: Makefile.in, configure and configure.ac in the wine root directory, Makefile.in in the "dlls" directory. > The only file outside of gdiplus that he has to modify is configure.ac.
I thought he should run tools/make_makefiles That's not required. tools/make_makefiles I have tried this a number of ways but it seems that you need to /autoconf/ to create configure and you need to run /tools/make_makefiles./ Did you mean that you only need to submit /configure.ac /in the patch? If so then I can add a note to the wiki otherwise the issue is another mystery.
Jeff
participants (6)
-
Andrey Turkin -
Detlef Riekenberg -
Evan Stade -
James Hawkins -
Jeff L -
Mounir IDRASSI