gambas-source-code/gb.corba
Benoît Minisini 61997e8921 [DEVELOPMENT ENVIRONMENT]
* NEW: Use the new mascot to draw project directory icon.

[EXAMPLES]
* NEW: Some little changes in the Painting example.

[INTERPRETER]
* NEW: The component GB_INIT function now returns an integer that gives an 
  unloading order. The higher the returned number, the later the component 
  is unloaded. If GB_INIT returns -1, then the component shared library 
  will not be unloaded.
* NEW: Update GB_INIT functions in all components.

[GB.DRAW]
* BUG: Paint.Image() optional translation arguments are not inverted 
  anymore.

[GB.QT4]
* BUG: If Paint.LineWidth is zero, then nothing is stroked, as in gb.gtk.
* BUG: TabStrip is now correctly arranged when it has only one tab.


git-svn-id: svn://localhost/gambas/trunk@2605 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2010-01-10 13:40:48 +00:00
..
src [DEVELOPMENT ENVIRONMENT] 2010-01-10 13:40:48 +00:00
acinclude.m4
AUTHORS
ChangeLog
component.am
configure.ac [CONFIGURATION] 2009-08-16 22:07:48 +00:00
COPYING
gambas.h
gb_common.h
INSTALL
ltmain.sh
m4 [CONFIGURATION] 2009-08-16 22:51:28 +00:00
Makefile.am [CONFIGURATION] 2009-08-16 22:07:48 +00:00
NEWS
README
reconf

** IMPORTANT NOTES

Before installing gb.corba, compiling it and then complaining, please read the
following remarks CAREFULLY! 
To compile gb.corba, you must install the following packages on your system : 
 - The omniORB4 core. 
 - The libomniorb4
 - The libomniorb4-dev
 - The libomniorb4-nameserver

** HOW TO COMPILE GB.CORBA ?

1) First, check that you installed all the needed development packages

2) Copy the gb.corba dir in to gambas directory.
  
3) When done, type the following magic sentences in a shell.
   '#' represents your shell prompt, and "..." are the
   messages printed during the configuration and compilation.

  This command analyzes the system and configure the package:

     # ./configure
     ...

   This command compiles the programs:

     # make
     ...

   And finally this command installs everything:

     # su -c "make install"
     Password: <Type the root password here>
     ...

   If something fails during this process, try to type the
   following command before ./configure :

     # ./reconf

   If it does not work, I need to know what happened exactly.
   To do so, type the following command :

     # ( ./configure; make; make install ) > output.txt 2>&1

   And send me the file "output.txt" by mail, with every other
   detail about your computer and your distribution you find
   useful.
3) If everything was fine, type "gambas" to run the development
   environment. There are an example in the "gambas-examples"
   directory.

Enjoy it !

Carlo.