svnno****@sourc*****
svnno****@sourc*****
Sat Mar 8 20:09:50 JST 2008
Revision: 3456 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=kazehakase&view=rev&rev=3456 Author: ikezoe Date: 2008-03-08 20:09:50 +0900 (Sat, 08 Mar 2008) Log Message: ----------- * macro/gecko.m4: Check exsitence of nsIAppShell::Spinup() method. Modified Paths: -------------- kazehakase/trunk/ChangeLog kazehakase/trunk/macros/gecko.m4 Modified: kazehakase/trunk/ChangeLog =================================================================== --- kazehakase/trunk/ChangeLog 2008-03-08 11:01:11 UTC (rev 3455) +++ kazehakase/trunk/ChangeLog 2008-03-08 11:09:50 UTC (rev 3456) @@ -4,6 +4,7 @@ Append unstable to MOZILLA_INCLUDE_ROOT. * module/embed/gecko/gtkmozembed/EmbedPrivate.h: include <nsIDOMEventReceiver.h> if it exists. + * macro/gecko.m4: Check exsitence of nsIAppShell::Spinup() method. 2008-03-07 Hiroyuki Ikezoe <poinc****@ikezo*****> Modified: kazehakase/trunk/macros/gecko.m4 =================================================================== --- kazehakase/trunk/macros/gecko.m4 2008-03-08 11:01:11 UTC (rev 3455) +++ kazehakase/trunk/macros/gecko.m4 2008-03-08 11:09:50 UTC (rev 3456) @@ -179,6 +179,7 @@ AC_MSG_RESULT([$result]) +AC_MSG_CHECKING([whether nsICanvasRenderingContextInternal has GetInputStream method]) AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#define MOZILLA_INTERNAL_API @@ -193,6 +194,18 @@ AC_MSG_RESULT([$result]) +AC_MSG_CHECKING([whether nsIAppShell has Spinup method]) +AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM( + [[#include <nsIAppShell.h>]], + [[nsIAppShell *p; + p->Spinup();]] + )], + [AC_DEFINE([MOZ_NSIAPPSHELL_HAVE_SPINUP_],[1],[Define if nsIAppShell has Spinup]) no_nsiappshell_have_spinup=yes], + [no_nsiappshellspinup_have_spinup=no]) + +AC_MSG_RESULT([$result]) + AC_MSG_CHECKING([whether nsIPrintSettings has SetPaperSize method]) AC_COMPILE_IFELSE(