Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/acinclude.m4
Commit message (Collapse)AuthorAgeFilesLines
* Included the latest binreloc detection code from autopackage svn.Bruno Coudoin2007-05-071-33/+8
| | | | | | | Now binreloc detection works again, it follow the user choice and is on auto by default. svn path=/trunk/; revision=2633
* first work on OSX support.Yves Combe2007-03-121-0/+175
| | | | svn path=/trunk/; revision=2507
* Landing of GCOMPRIS_8_2_CROSSCOMPIL branch.Yves Combe2006-11-091-8/+15
| | | | | | | Allow cross compilation for win32 with mingw/Linux. Use GLib functions instead of unix one . Adapt Tuxpaint launcher to make it work on Windows.
* === WARNING THIS PATCH SET HAS BEEN REVERTED ===Bruno Coudoin2006-10-241-15/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | autotools croos compilation with mingw32 use glib headers instead of glibc (g_mkdir, g_unlink, g_stat) NEED MORE WORK. cvs maybe broken now. * Makefile.am: * acinclude.m4: * configure.in: * cross-configure.sh: script to run configure. Look variables. * po/Makefile.in.in: * src/boards/Makefile.am: * src/boards/gtans.c: * src/boards/gtans_support.c: (check_file_exists): * src/boards/py-mod-gcompris.c: (py_gcompris_child_watch_add), (py_gcompris_spawn_async): * src/gcompris/Makefile.am: * src/gcompris/binreloc.c: (_br_find_exe): * src/gcompris/board.c: * src/gcompris/board.h: * src/gcompris/file_selector.c: (parse_doc): * src/gcompris/gameutil.c: (gc_util_create_rootdir): * src/gcompris/gcompris.c: (activation_done), (gc_init): * src/gcompris/gcompris_db.c: (gc_db_init): * src/gcompris/images_selector.c: (parse_doc): * src/gcompris/menu.c: (gc_menu_load): * src/gcompris/properties.c: (gc_prop_new): * src/gcompris/sdlplayer.c: (errorv): * src/gcompris/soundutil.c:
* autotools croos compilation with mingw32Yves Combe2006-10-231-8/+15
| | | | | use glib headers instead of glibc (g_mkdir, g_unlink, g_stat) NEED MORE WORK. cvs maybe broken now.
* - Added support for relocation using http://autopackage.org/docs/binreloc/Bruno Coudoin2006-08-131-0/+78
| | | | | | | | | | | | | | | | | | (Needed to create an autopackage installer) Now GCompris will detect at runtime where it is installed and find it's data. As a fallback, default set at compile time are used (like before). To disable is, use sh configure --disable-binreloc Very usefull for developers, you can now run gcompris from within it's source code without even installing it !. The new code detect that and set the data dir accordingly. Warning, developers must no more use the PACKAGE_DATA_DIR define but must get the data dir always from the property object like this: GcomprisProperties *properties = gcompris_get_properties(); properties->package_xxx_dir contains the root data directory, like: package_data_dir = /usr/local/share/gcompris/boards package_locale_dir = /usr/local/share/locale package_plugin_dir = /usr/local/lib/gcompris package_python_plugin_dir= /usr/local/share/gcompris/python
* created by Yves, contain python checkings code.Bruno Coudoin2005-05-251-0/+94
* acinclude.m4: created by Yves, contain python checkings code.