On Thu, 3 Jul 2008, Brian Dessent wrote:
module_la_LIBADD = evas_wince_gapi.o
However, if you try that with a libtool library you run into (B), with
something like:
libtool: link: cannot build libtool library `module.la' from non-libtool
objects on this host: evas_wince_gapi.o
This is where
Hello, Brian
Thank you for your hint on `make' from CVS. It really works.
On 7/2/08, Brian Dessent <[EMAIL PROTECTED]> wrote:
> I never said that fopen("c:/foo") wouldn't work, but it's because the
> Cygwin APIs simply pass-thru arguments to the underlying Win32 APIs that
> don't look like POSI
Hello,
* Brian Dessent wrote on Fri, Jul 04, 2008 at 12:00:35AM CEST:
>
> B. Libtool only lets you create libtool libraries from libtool objects,
> which is fair enough -- it wants control of the process. But AFAIK
> libtool has no way of creating a libtool object of a resource, unless
> perhaps
Vincent Torri wrote:
> .rc.o:
> $(WINDRES) -o $@ $<
>
> pkg_LTLIBRARIES = module.la
>
> module_la_SOURCES = \
> evas_wince_gapi.rc \
> other_source_files
>
> But windres is not called and evas_wince_gapi.rc is ignored.
There are roughly two problems here, mostly independent:
A. autom
Hey,
I would like to create a shared object from a .rc file and link the
resulting .o with the other object file to get my dll.
I tried different things, without success. Mainly, in Makefile.am, I use:
.rc.o:
$(WINDRES) -o $@ $<
pkg_LTLIBRARIES = module.la
module_la_SOURCES = \
ev