[mythtv] [mythtv-commits] mythtv commit: r17081 - in trunk/mythtv/libs by nigel

buzz davidbuzz at gmail.com
Fri Apr 18 00:54:02 UTC 2008


Ah yes, I had that problem too, but I deliberately overlooked it ( by just
copying each xxxxx.dll after it was built to libxxxxx.dll ) , and carried
on, cause I'm keen to get it compiling.     horrible, but functional.   :-)

Buzz.

quick perl code (run it after every failed make that mentions a missing dll)
:
#!c:/perl/bin/perl.exe -w
use strict;
use File::Find;
use File::Copy qw(cp);
find(\&wanted, ('c:/mythtv/mythtv/') );
sub wanted {
  my $d = $File::Find::dir;
  return unless /\.dll/;
  return if /^lib/;
  my $new = $_;
  $new =~ s#^myth#libmyth#;
    print "copy from ($_) to ($new)\n";
    cp("$d/$_", "$d/$new");
}


On Fri, Apr 18, 2008 at 10:23 AM, Nigel Pearson <nigel at ind.tansu.com.au>
wrote:

> >> I'm not that far yet. My shared libs are
> >> being built with shortened library names
> >> (myth-0.22.dll instead of libmyth-0.22.dll).
> >> I dunno why.
> >
> > Because that's default for QT/Win32.
>
> Very annoying that the static libs are named the same as
> their Unix brothers, but that the dynamic ones aren't.
>
> I didn't realise we patched Qt 3 to fix that.
> Will have to investigate further, but I am
> tempted to raise a bug with Trolltech.
>
> --
> Nigel Pearson, nigel at ind.tansu.com.au|
> Telstra Net. Eng., Sydney, Australia |
> Office: 9202 3900    Fax:  9261 3912 |
> Mobile: 0408 664435  Home: 9792 6998 |
>
> _______________________________________________
> mythtv-dev mailing list
> mythtv-dev at mythtv.org
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mythtv.org/pipermail/mythtv-dev/attachments/20080418/8105bb56/attachment.htm 


More information about the mythtv-dev mailing list