Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Stephen Apostolopoulos
Problems compiling libgdiplus-1.2.6 on Ubuntu 7.10 (amd64):

1) The configure script didn't catch a missing dependency on libcairo-dev

2) After installing the dependency, make throws an error:
./configure --prefix=/usr/local
make
[...]
make[4]: Entering directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
[...]
 gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../pixman/src -I/usr/include/freetype2 
-DPNG_NO_MMX_CODE 
 -I/usr/include/libpng12 -Wall -Wextra -Wsign-compare 
-Werror-implicit-function-declaration 
 -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes 
-Wmissing-declarations 
 -Wnested-externs -Wpacked -Wswitch-enum -Wmissing-format-attribute 
-Wstrict-aliasing=2 
 -Winit-self -Wunsafe-loop-optimizations -Wdeclaration-after-statement 
-Wold-style-definition 
 -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes 
-fno-strict-aliasing 
 -g -O2 -MT cairo-xlib-surface.lo -MD -MP -MF 
.deps/cairo-xlib-surface.Tpo -c cairo-xlib-surface.c  -fPIC -DPIC -o 
.libs/cairo-xlib-surface.o
cairo-xlib-surface.c:2170: error: 
'EXT_mono_cairo_xlib_surface_create_with_xrender_format' aliased to 
undefined symbol 'INT_mono_cairo_xlib_surface_create_with_xrender_format'
make[4]: *** [cairo-xlib-surface.lo] Error 1
make[4]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6'
make: *** [all] Error 2

Version 1.2.5 compiled ok. Didn't test with 1.2.6 Preview 1. Any ideas?

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Stephen Apostolopoulos
Regression: cannot cast IntPtr to enum.

using System;

namespace Test
{
enum Key { A }

class Regression
{
public static void Main()
{
IntPtr a = new IntPtr(1);
Key k = (Key)a;
}
}
}

Works on 1.2.4 and 1.2.5, as well csc.exe (2.0). Fails on 1.2.6 Preview 2 
(both mcs and gmcs).

Confirmation?


- Original Message - 
From: Rusty Howell [EMAIL PROTECTED]
To: mono-devel mono-devel-list@lists.ximian.com
Sent: Saturday, November 17, 2007 5:14 AM
Subject: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!


 Hey everyone,

 We've release our second preview of Mono 1.2.6 today! Please help us out 
 by giving it a try on your applications.
 Don't forget to log any bugs that you find!

 You can get the preview releases here:
 http://mono.ximian.com/monobuild/preview/download-preview/

 Please report any bugs that you may find using our Bugs page.
 http://www.mono-project.com/Bugs

 Please help the Mono team to make 1.2.6 the best release of Mono ever.
 Thanks!

 Mono QA

 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list
 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Alan McGovern
Works on MS.NET. This is a regression.

File a bug report at bugzilla.novell.com on this and post the bug number
here.

Alan.

On Nov 18, 2007 1:43 PM, Stephen Apostolopoulos [EMAIL PROTECTED] wrote:

 Regression: cannot cast IntPtr to enum.

 using System;

 namespace Test
 {
enum Key { A }

class Regression
{
public static void Main()
{
IntPtr a = new IntPtr(1);
Key k = (Key)a;
}
}
 }

 Works on 1.2.4 and 1.2.5, as well csc.exe (2.0). Fails on 1.2.6 Preview 2
 (both mcs and gmcs).

 Confirmation?


 - Original Message -
 From: Rusty Howell [EMAIL PROTECTED]
 To: mono-devel mono-devel-list@lists.ximian.com
 Sent: Saturday, November 17, 2007 5:14 AM
 Subject: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!


  Hey everyone,
 
  We've release our second preview of Mono 1.2.6 today! Please help us out
  by giving it a try on your applications.
  Don't forget to log any bugs that you find!
 
  You can get the preview releases here:
  http://mono.ximian.com/monobuild/preview/download-preview/
 
  Please report any bugs that you may find using our Bugs page.
  http://www.mono-project.com/Bugs
 
  Please help the Mono team to make 1.2.6 the best release of Mono ever.
  Thanks!
 
  Mono QA
 
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 

 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Stephen Apostolopoulos
Filed as bug 342584 (https://bugzilla.novell.com/show_bug.cgi?id=342584)


  - Original Message - 
  From: Alan McGovern 
  To: Stephen Apostolopoulos 
  Cc: Rusty Howell ; mono-devel 
  Sent: Sunday, November 18, 2007 3:48 PM
  Subject: Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!


  Works on MS.NET. This is a regression.

  File a bug report at bugzilla.novell.com on this and post the bug number here.

  Alan.


  On Nov 18, 2007 1:43 PM, Stephen Apostolopoulos [EMAIL PROTECTED] wrote:

Regression: cannot cast IntPtr to enum.

using System;

namespace Test
{
   enum Key { A }

   class Regression
   {
   public static void Main()
   {
   IntPtr a = new IntPtr(1); 
   Key k = (Key)a;
   }
   }
}

Works on 1.2.4 and 1.2.5, as well csc.exe (2.0). Fails on 1.2.6 Preview 2
(both mcs and gmcs).

Confirmation?



- Original Message -
From: Rusty Howell [EMAIL PROTECTED]
To: mono-devel  mono-devel-list@lists.ximian.com
Sent: Saturday, November 17, 2007 5:14 AM
Subject: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!


 Hey everyone,

 We've release our second preview of Mono 1.2.6 today! Please help us out
 by giving it a try on your applications.
 Don't forget to log any bugs that you find!

 You can get the preview releases here:
 http://mono.ximian.com/monobuild/preview/download-preview/

 Please report any bugs that you may find using our Bugs page.
 http://www.mono-project.com/Bugs 

 Please help the Mono team to make 1.2.6 the best release of Mono ever.
 Thanks!

 Mono QA

 ___
 Mono-devel-list mailing list 
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list 


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Sebastien Pouliot
Hello again,

On Sun, 2007-11-18 at 11:23 +0200, Stephen Apostolopoulos wrote:
 Problems compiling libgdiplus-1.2.6 on Ubuntu 7.10 (amd64):
 
 1) The configure script didn't catch a missing dependency on libcairo-dev
 
 2) After installing the dependency, make throws an error:
 ./configure --prefix=/usr/local

So I
a. booted a vmware image of Ubuntu 7.10 (amd64)
b. removed the libcairo2-dev package (there's no libcairo-dev)
c. downloaded and extracted libgdiplus preview 2 sources [1]
d. executed ./configure --prefix=/usr/local
e. executed make

without any error in the process. Since this is a near-pristine image
(with added packages to enable to compile stuff) I assume you have some
other problems in your environment (and maybe you configure log will
show it).

[1]
http://mono.ximian.com/monobuild/preview/sources/libgdiplus/libgdiplus-1.2.6.tar.bz2

 make
 [...]
 make[4]: Entering directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
 [...]
  gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../pixman/src -I/usr/include/freetype2 
 -DPNG_NO_MMX_CODE 
  -I/usr/include/libpng12 -Wall -Wextra -Wsign-compare 
 -Werror-implicit-function-declaration 
  -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes 
 -Wmissing-declarations 
  -Wnested-externs -Wpacked -Wswitch-enum -Wmissing-format-attribute 
 -Wstrict-aliasing=2 
  -Winit-self -Wunsafe-loop-optimizations -Wdeclaration-after-statement 
 -Wold-style-definition 
  -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes 
 -fno-strict-aliasing 
  -g -O2 -MT cairo-xlib-surface.lo -MD -MP -MF 
 .deps/cairo-xlib-surface.Tpo -c cairo-xlib-surface.c  -fPIC -DPIC -o 
 .libs/cairo-xlib-surface.o
 cairo-xlib-surface.c:2170: error: 
 'EXT_mono_cairo_xlib_surface_create_with_xrender_format' aliased to 
 undefined symbol 'INT_mono_cairo_xlib_surface_create_with_xrender_format'
 make[4]: *** [cairo-xlib-surface.lo] Error 1
 make[4]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
 make[2]: *** [all] Error 2
 make[2]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6'
 make: *** [all] Error 2
 
 Version 1.2.5 compiled ok. Didn't test with 1.2.6 Preview 1. Any ideas?
 
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Stephen Apostolopoulos
Ah, that was it:
 b. removed the libcairo2-dev package (there's no libcairo-dev)

did that and it compiles perfectly now.

Sorry for the false alarm.




- Original Message - 
From: Sebastien Pouliot [EMAIL PROTECTED]
To: Stephen Apostolopoulos [EMAIL PROTECTED]
Cc: mono-devel mono-devel-list@lists.ximian.com
Sent: Sunday, November 18, 2007 6:19 PM
Subject: Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!


 Hello again,

 On Sun, 2007-11-18 at 11:23 +0200, Stephen Apostolopoulos wrote:
 Problems compiling libgdiplus-1.2.6 on Ubuntu 7.10 (amd64):

 1) The configure script didn't catch a missing dependency on libcairo-dev

 2) After installing the dependency, make throws an error:
 ./configure --prefix=/usr/local

 So I
 a. booted a vmware image of Ubuntu 7.10 (amd64)
 b. removed the libcairo2-dev package (there's no libcairo-dev)
 c. downloaded and extracted libgdiplus preview 2 sources [1]
 d. executed ./configure --prefix=/usr/local
 e. executed make

 without any error in the process. Since this is a near-pristine image
 (with added packages to enable to compile stuff) I assume you have some
 other problems in your environment (and maybe you configure log will
 show it).

 [1]
 http://mono.ximian.com/monobuild/preview/sources/libgdiplus/libgdiplus-1.2.6.tar.bz2

 make
 [...]
 make[4]: Entering directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
 [...]
  gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../pixman/src -I/usr/include/freetype2 
  -DPNG_NO_MMX_CODE
  -I/usr/include/libpng12 -Wall -Wextra -Wsign-compare 
 -Werror-implicit-function-declaration
  -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes 
  -Wmissing-declarations
  -Wnested-externs -Wpacked -Wswitch-enum -Wmissing-format-attribute 
 -Wstrict-aliasing=2
  -Winit-self -Wunsafe-loop-optimizations -Wdeclaration-after-statement 
 -Wold-style-definition
  -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes 
 -fno-strict-aliasing
  -g -O2 -MT cairo-xlib-surface.lo -MD -MP -MF
 .deps/cairo-xlib-surface.Tpo -c cairo-xlib-surface.c  -fPIC -DPIC -o
 .libs/cairo-xlib-surface.o
 cairo-xlib-surface.c:2170: error:
 'EXT_mono_cairo_xlib_surface_create_with_xrender_format' aliased to
 undefined symbol 'INT_mono_cairo_xlib_surface_create_with_xrender_format'
 make[4]: *** [cairo-xlib-surface.lo] Error 1
 make[4]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
 make[2]: *** [all] Error 2
 make[2]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6'
 make: *** [all] Error 2

 Version 1.2.5 compiled ok. Didn't test with 1.2.6 Preview 1. Any ideas?

 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Sebastien Pouliot
Hey,

On Sun, 2007-11-18 at 21:23 +0200, Stephen Apostolopoulos wrote:
 Ah, that was it:
  b. removed the libcairo2-dev package (there's no libcairo-dev)
 
 did that and it compiles perfectly now.

hmmm... I'm glad it helped but...

I only removed libcairo2-dev because you told us you didn't have
libcairo-dev installed (and I guessed it was a typo).

In other words, in my VM I can configure/make libgdiplus with or without
having libcairo2-dev installed.

 Sorry for the false alarm.
 

No problem, but you still could have some other issues on your system.

 
 
 - Original Message - 
 From: Sebastien Pouliot [EMAIL PROTECTED]
 To: Stephen Apostolopoulos [EMAIL PROTECTED]
 Cc: mono-devel mono-devel-list@lists.ximian.com
 Sent: Sunday, November 18, 2007 6:19 PM
 Subject: Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!
 
 
  Hello again,
 
  On Sun, 2007-11-18 at 11:23 +0200, Stephen Apostolopoulos wrote:
  Problems compiling libgdiplus-1.2.6 on Ubuntu 7.10 (amd64):
 
  1) The configure script didn't catch a missing dependency on libcairo-dev
 
  2) After installing the dependency, make throws an error:
  ./configure --prefix=/usr/local
 
  So I
  a. booted a vmware image of Ubuntu 7.10 (amd64)
  b. removed the libcairo2-dev package (there's no libcairo-dev)
  c. downloaded and extracted libgdiplus preview 2 sources [1]
  d. executed ./configure --prefix=/usr/local
  e. executed make
 
  without any error in the process. Since this is a near-pristine image
  (with added packages to enable to compile stuff) I assume you have some
  other problems in your environment (and maybe you configure log will
  show it).
 
  [1]
  http://mono.ximian.com/monobuild/preview/sources/libgdiplus/libgdiplus-1.2.6.tar.bz2
 
  make
  [...]
  make[4]: Entering directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
  [...]
   gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../pixman/src -I/usr/include/freetype2 
   -DPNG_NO_MMX_CODE
   -I/usr/include/libpng12 -Wall -Wextra -Wsign-compare 
  -Werror-implicit-function-declaration
   -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes 
   -Wmissing-declarations
   -Wnested-externs -Wpacked -Wswitch-enum -Wmissing-format-attribute 
  -Wstrict-aliasing=2
   -Winit-self -Wunsafe-loop-optimizations -Wdeclaration-after-statement 
  -Wold-style-definition
   -Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes 
  -fno-strict-aliasing
   -g -O2 -MT cairo-xlib-surface.lo -MD -MP -MF
  .deps/cairo-xlib-surface.Tpo -c cairo-xlib-surface.c  -fPIC -DPIC -o
  .libs/cairo-xlib-surface.o
  cairo-xlib-surface.c:2170: error:
  'EXT_mono_cairo_xlib_surface_create_with_xrender_format' aliased to
  undefined symbol 'INT_mono_cairo_xlib_surface_create_with_xrender_format'
  make[4]: *** [cairo-xlib-surface.lo] Error 1
  make[4]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
  make[3]: *** [all-recursive] Error 1
  make[3]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
  make[2]: *** [all] Error 2
  make[2]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6'
  make: *** [all] Error 2
 
  Version 1.2.5 compiled ok. Didn't test with 1.2.6 Preview 1. Any ideas?
 
  ___
  Mono-devel-list mailing list
  Mono-devel-list@lists.ximian.com
  http://lists.ximian.com/mailman/listinfo/mono-devel-list
 
  
 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-18 Thread Stephen Apostolopoulos
I don't mean to pollute this thread, but this might still be relevant. I
am using an almost vanilla Ubuntu 7.10 system (actually a virtual
machine for testing, which is precisely the reason why I keep it clean).
The only changes from the stock installation are that: a) all updates
are installed and b) Mono 1.2.5 was compiled and installed from source
(stock is 1.2.4).

I do not know why libcairo2-dev affects the build (libcairo-dev was a
spelling mistake, sorry for the confusion), but as soon as I removed it
libgdiplus built correctly. I could make clean and try to rebuild with
libcairo2-dev installed, but I'm not sure what that would prove - I'll
do it if necessary.


On Κυρ, 2007-11-18 at 15:34 -0500, Sebastien Pouliot wrote:
 Hey,
 
 On Sun, 2007-11-18 at 21:23 +0200, Stephen Apostolopoulos wrote:
  Ah, that was it:
   b. removed the libcairo2-dev package (there's no libcairo-dev)
  
  did that and it compiles perfectly now.
 
 hmmm... I'm glad it helped but...
 
 I only removed libcairo2-dev because you told us you didn't have
 libcairo-dev installed (and I guessed it was a typo).
 
 In other words, in my VM I can configure/make libgdiplus with or without
 having libcairo2-dev installed.
 
  Sorry for the false alarm.
  
 
 No problem, but you still could have some other issues on your system.
 
  
  
  - Original Message - 
  From: Sebastien Pouliot [EMAIL PROTECTED]
  To: Stephen Apostolopoulos [EMAIL PROTECTED]
  Cc: mono-devel mono-devel-list@lists.ximian.com
  Sent: Sunday, November 18, 2007 6:19 PM
  Subject: Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!
  
  
   Hello again,
  
   On Sun, 2007-11-18 at 11:23 +0200, Stephen Apostolopoulos wrote:
   Problems compiling libgdiplus-1.2.6 on Ubuntu 7.10 (amd64):
  
   1) The configure script didn't catch a missing dependency on libcairo-dev
  
   2) After installing the dependency, make throws an error:
   ./configure --prefix=/usr/local
  
   So I
   a. booted a vmware image of Ubuntu 7.10 (amd64)
   b. removed the libcairo2-dev package (there's no libcairo-dev)
   c. downloaded and extracted libgdiplus preview 2 sources [1]
   d. executed ./configure --prefix=/usr/local
   e. executed make
  
   without any error in the process. Since this is a near-pristine image
   (with added packages to enable to compile stuff) I assume you have some
   other problems in your environment (and maybe you configure log will
   show it).
  
   [1]
   http://mono.ximian.com/monobuild/preview/sources/libgdiplus/libgdiplus-1.2.6.tar.bz2
  
   make
   [...]
   make[4]: Entering directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
   [...]
gcc -DHAVE_CONFIG_H -I. -I.. -I. -I../pixman/src 
   -I/usr/include/freetype2 
-DPNG_NO_MMX_CODE
-I/usr/include/libpng12 -Wall -Wextra -Wsign-compare 
   -Werror-implicit-function-declaration
-Wpointer-arith -Wwrite-strings -Wstrict-prototypes 
   -Wmissing-prototypes 
-Wmissing-declarations
-Wnested-externs -Wpacked -Wswitch-enum -Wmissing-format-attribute 
   -Wstrict-aliasing=2
-Winit-self -Wunsafe-loop-optimizations -Wdeclaration-after-statement 
   -Wold-style-definition
-Wno-missing-field-initializers -Wno-unused-parameter -Wno-attributes 
   -fno-strict-aliasing
-g -O2 -MT cairo-xlib-surface.lo -MD -MP -MF
   .deps/cairo-xlib-surface.Tpo -c cairo-xlib-surface.c  -fPIC -DPIC -o
   .libs/cairo-xlib-surface.o
   cairo-xlib-surface.c:2170: error:
   'EXT_mono_cairo_xlib_surface_create_with_xrender_format' aliased to
   undefined symbol 'INT_mono_cairo_xlib_surface_create_with_xrender_format'
   make[4]: *** [cairo-xlib-surface.lo] Error 1
   make[4]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo/src'
   make[3]: *** [all-recursive] Error 1
   make[3]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
   make[2]: *** [all] Error 2
   make[2]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6/cairo'
   make[1]: *** [all-recursive] Error 1
   make[1]: Leaving directory `/home/vm/Mono/libgdiplus-1.2.6'
   make: *** [all] Error 2
  
   Version 1.2.5 compiled ok. Didn't test with 1.2.6 Preview 1. Any ideas?
  
   ___
   Mono-devel-list mailing list
   Mono-devel-list@lists.ximian.com
   http://lists.ximian.com/mailman/listinfo/mono-devel-list
  
   
  
 

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-17 Thread Jonathan Chambers
It seems that 341112 is a regression from 1.2.5.1. It would be nice to
have it fixed, but I am not sure of the effort required.

Thanks,
Jonathan

On Nov 16, 2007 11:07 PM, Thomas Wiest [EMAIL PROTECTED] wrote:
 Rusty Howell wrote:
  Hey everyone,
 
  We've release our second preview of Mono 1.2.6 today! Please help us out by 
  giving it a try on your applications.
  Don't forget to log any bugs that you find!
 
  You can get the preview releases here:
  http://mono.ximian.com/monobuild/preview/download-preview/
 
  Please report any bugs that you may find using our Bugs page.
  http://www.mono-project.com/Bugs
 
  Please help the Mono team to make 1.2.6 the best release of Mono ever.
  Thanks!
 
  Mono QA
 
 After filing regression bugs against 1.2.6 preview 2, please reply to
 this message with the bug number so that we can track these.


 Thanks,
 Thomas



 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-17 Thread Zoltan Varga
I think it is a bit too complex to be backported.

   Zoltan

On Nov 17, 2007 5:59 PM, Miguel de Icaza [EMAIL PROTECTED] wrote:
 Hello,

   We've release our second preview of Mono 1.2.6 today! Please help us out 
   by giving it a try on your applications.
   Don't forget to log any bugs that you find!
 
  Is there any chance the fix for #317488 can be included?

 [Edited Bug# in your post]

 I believe the change came in after we branched, and am not sure how the
 JIT team feels about backporting this, as usually more testing for these
 areas is required.

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-16 Thread Sanghyeon Seo
2007/11/17, Rusty Howell [EMAIL PROTECTED]:
 We've release our second preview of Mono 1.2.6 today! Please help us out by 
 giving it a try on your applications.
 Don't forget to log any bugs that you find!

Is there any chance the fix for #3174888 can be included?

-- 
Seo Sanghyeon
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-16 Thread Thomas Wiest
Rusty Howell wrote:
 Hey everyone,

 We've release our second preview of Mono 1.2.6 today! Please help us out by 
 giving it a try on your applications.
 Don't forget to log any bugs that you find!

 You can get the preview releases here:
 http://mono.ximian.com/monobuild/preview/download-preview/

 Please report any bugs that you may find using our Bugs page.
 http://www.mono-project.com/Bugs

 Please help the Mono team to make 1.2.6 the best release of Mono ever.
 Thanks!

 Mono QA
   
After filing regression bugs against 1.2.6 preview 2, please reply to
this message with the bug number so that we can track these.


Thanks,
Thomas


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Announcing Mono 1.2.6 Preview 2 !!

2007-11-16 Thread Thomas Wiest
Sanghyeon Seo wrote:
 2007/11/17, Rusty Howell [EMAIL PROTECTED]:
   
 We've release our second preview of Mono 1.2.6 today! Please help us out by 
 giving it a try on your applications.
 Don't forget to log any bugs that you find!
 

 Is there any chance the fix for #3174888 can be included?
   
I added it to my list to talk about for Preview 3, however we're really
only fixing regressions at this point.

Thanks,
Thomas
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list