I've got my GWT trunk up and running with OOPHM, by following
instructions on wiki and googling, here is the short description of
what I did: 
http://makeapp.blogspot.com/2009/06/how-to-build-google-web-toolkit-and-use.html

I've also managed to compile the the firefox plugin with unlocked FF
3.5, it works. You just need to checkout the oophm and apply this
patch (if you are on 32bit system than skip the 64bit parts):


Index: firefox/ScriptableInstance.h
===================================================================
--- firefox/ScriptableInstance.h        (revision 5719)
+++ firefox/ScriptableInstance.h        (working copy)
@@ -70,6 +70,9 @@
   JavaObject* createJavaWrapper(int objectId);
   void destroyJavaWrapper(JavaObject*);

+  // Fix virtural void problem
+  void sendFreeValues(HostChannel& channel) { }
+
   static const uint32_t VERSION = 1;
 private:
   // Map of object ID to JavaObject
Index: firefox/Makefile
===================================================================
--- firefox/Makefile    (revision 5719)
+++ firefox/Makefile    (working copy)
@@ -1,6 +1,8 @@
 INC=-I. -I../common -Inpapi
-FLAG32BIT=$(shell ./get32bitflag arch)
-CFLAGS=-Wall -g -O2 -fPIC $(INC) -rdynamic -m$(FLAG32BIT) -DLINUX -
DBROWSER_NPAPI
+#FLAG32BIT=$(shell ./get32bitflag arch)
+#CFLAGS=-Wall -g -O2 -fPIC $(INC) -rdynamic -m$(FLAG32BIT) -DLINUX -
DBROWSER_NPAPI
+FLAG32BIT=64
+CFLAGS=-Wall -g -O2 -fPIC $(INC) -rdynamic -m64 -DLINUX -
DBROWSER_NPAPI
 CXXFLAGS=$(CFLAGS)

 INSTDIR := extension/platform/$(shell ./getarch arch)/plugins
Index: firefox/install-template.rdf
===================================================================
--- firefox/install-template.rdf        (revision 5719)
+++ firefox/install-template.rdf        (working copy)
@@ -12,7 +12,7 @@
         <!-- Firefox 1.5-3.0 supported -->
         <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
         <em:minVersion>1.5</em:minVersion>
-        <em:maxVersion>3.0.*</em:maxVersion>
+        <em:maxVersion>3.*</em:maxVersion>
       </Description>
     </em:targetApplication>

Index: common/Makefile
===================================================================
--- common/Makefile     (revision 5719)
+++ common/Makefile     (working copy)
@@ -26,7 +26,8 @@
 OBJ64= $(patsubst %.cpp,obj64/%.o,$(SRCS))

 #all:: libcommon32.a libcommon64.a
-all:: libcommon32.a
+#all:: libcommon32.a
+all:: libcommon64.a


Good luck :)

On Jul 15, 12:28 am, kwas <[email protected]> wrote:
> has anyone been able to get the oophm version of gwt 1.5.3 for linux
> working?
> if so, can you provide some details on where to get it and how you did
> it?
>
> i found a gwt-linux-1.5.3-oophm package and tried installing it, found
> the FF3 plugin within and installed that in FF3, but when I try yo run
> my project through eclipse nothing happens.  i don't get any error
> messages,  just a java process that starts up and appears to do
> nothing.
>
> unfortunately the constraints of the project i'm working on mean i
> need to stick with GWT 1.5 so checking out the latest version of gwt
> with oophm (which seems to be what most instructions indicate) is not
> possible for me.
>
> and the native hosted mode browser in gwt linux 1.5.3 is something
> akin to firefox 1.0 which is way too out of date for the js
> requirements of my project.
>
> the only other alternative i can think of is to run a Windows version
> of eclipse/gwt through vmware or wine.
>
> appreciate any help or suggestions!
> thanks,
> ken
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to