summaryrefslogtreecommitdiff
path: root/autogen.sh
Commit message (Collapse)AuthorAgeFilesLines
* Allow to use automake 1.11Paolo Borelli2009-08-131-6/+7
|
* use absolute path of srcdir; and use it in ACLOCAL_FLAGS.Yevgen Muntyan2007-11-121-1/+2
| | | | | | | | | 2007-11-12 Yevgen Muntyan <muntyan@tamu.edu> * autogen.sh: use absolute path of srcdir; and use it in ACLOCAL_FLAGS. svn path=/trunk/; revision=2928
* Reverted last change: accidentally committed lot of irrelevant stuffYevgen Muntyan2007-06-161-2/+2
| | | | svn path=/trunk/; revision=2828
* reviewed by: Gustavo J. A. M. Carneiro.Yevgen Muntyan2007-06-161-2/+2
| | | | | | | | | | | | 2007-06-16 Yevgen Muntyan <muntyan@tamu.edu> reviewed by: Gustavo J. A. M. Carneiro. * codegen/argtypes.py: prepend const to const boxed return values in generated code (#448111). svn path=/trunk/; revision=2827
* Make it work with automake 1.10.Kjartan Maraas2006-12-141-5/+6
| | | | | | 2006-12-14 Kjartan Maraas <kmaraas@gnome.org> * autogen.sh: Make it work with automake 1.10.
* Sync with gnome-common. Require automake 1.8. Fixes #314128 and #311958Johan Dahlin2005-09-021-54/+107
| | | | | * autogen.sh: Sync with gnome-common. Require automake 1.8. Fixes #314128 and #311958
* Check for automake-1.9 aswell, fixes 162396 (Raphael Kubo da Costa)Johan Dahlin2005-01-101-4/+5
| | | | | * autogen.sh: Check for automake-1.9 aswell, fixes 162396 (Raphael Kubo da Costa)
* set srcdir to dirname $0, fixes out of source tree builds. Fixes #158360Johan Dahlin2004-12-231-2/+2
| | | | | * autogen.sh: set srcdir to dirname $0, fixes out of source tree builds. Fixes #158360 (Marco Pesenti Gritti)
* Takes ACLOCAL_FLAGS into account. Fixes #149115 (Mariano Suárez-Alvarez)Xavier Ordoquy2004-08-031-1/+1
| | | | | | | 2004-08-03 Xavier Ordoquy <xordoquy@linovia.com> * autogen.sh: Takes ACLOCAL_FLAGS into account. Fixes #149115 (Mariano Suárez-Alvarez)
* Remove, replaced with:Johan Dahlin2004-07-261-79/+395
| | | | | | | | * acinclude.m4: Remove, replaced with: * m4/jhflags.m4: New file, includes compiler macros * m4/python.m4: New file, includes python macros
* Don't hardcode automake-1.7, Fixes #148377Johan Dahlin2004-07-261-4/+4
| | | | | | * autogen.sh: Don't hardcode automake-1.7, Fixes #148377 * gtk/__init__.py: Readd _gobject, but warn if it's used
* same here.James Henstridge2003-07-241-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2003-07-24 James Henstridge <james@daa.com.au> * gtk/pygtk.h (init_pygtk): same here. * pygobject.h (init_pygobject): convert fatal errors to normal exceptions. * gtk/gtkglmodule.c (initgl): same here. * gtk/libglademodule.c (initglade): same here. * gtk/gtkmodule.c (init_gtk): same here. * atkmodule.c (initatk): same here. * pangomodule.c (initpango): same here. * gobjectmodule.c (initgobject): don't cause fatal errors if an exception on init. * codegen/codegen.py (write_source): print an error message if it isn't possible to import a particular name from the module. * autogen.sh (DIE): require Automake 1.7. * configure.in (AC_ARG_ENABLE): enable thread support by default.
* use automake-1.7 in preference to 1.6.James Henstridge2002-12-241-10/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2002-12-23 James Henstridge <james@daa.com.au> * autogen.sh (AUTOMAKE): use automake-1.7 in preference to 1.6. * configure.in (GLIB_LIBS): remove -export-dynamic from flags. 2002-12-23 James Henstridge <james@daa.com.au> * configure.in (PYORBIT_LIBS): add code to get rid of the "-export-dynamic" from the link flags, since we want to limit the number of exported symbols. * autogen.sh (AUTOMAKE): allow building with automake 1.7 or 1.6. * src/ORBitmodule.c (add_tc_constants): new function to add CORBA.TC_* constants. 2002-12-23 James Henstridge <james@daa.com.au> * configure.in (PYORBIT_LIBS): add code to get rid of the "-export-dynamic" from the link flags, since we want to limit the number of exported symbols. * autogen.sh (AUTOMAKE): allow building with automake 1.7 or 1.6. * src/ORBitmodule.c (add_tc_constants): new function to add CORBA.TC_* constants.
* use automake-1.6/aclocal-1.6 unless otherwise requestedSander Vesik2002-08-301-2/+2
| | | | | | | 2002-08-30 Sander Vesik <sander.vesik@sun.com> * autogen.sh: use automake-1.6/aclocal-1.6 unless otherwise requested
* allow override of autoconf and autoheaderMatt Wilson2002-03-191-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2002-03-19 Matt Wilson <msw@redhat.com> * autogen.sh: allow override of autoconf and autoheader * gtk/gtk.defs (GtkTreeModel.get_iter_root): use the gtk_tree_model_get_iter_first code, get_iter_root is going to be deprecated. (GtkTreeModel.get_iter_first): added * gtk/gtk.override (_wrap_gtk_tree_model_get_iter_root): check the return value of gtk_tree_model_get_iter_root and return None if it failed. Rename to _wrap_gtk_tree_model_get_iter_first. * codegen/codegen.py (write_class, write_interface, write_boxed write_pointer): use overrides.is_already_included to prevent from having the same override code included twice in one file. This allows two methods to point to the same function. * codegen/override.py (Overrides.is_already_included): added a function that returns true if the override code has been emitted already. 2002-03-11 Matt Wilson <msw@redhat.com> * gobjectmodule.c: remove pygobject_exception_notifiers and pyg_fatal_exceptions_notify.
* add check and usage for AUTOMAKE and ACLOCAL.Johan Dahlin2001-09-101-4/+7
| | | | | | 2001-09-10 Johan Dahlin <zilch.am@home.se> * autogen.sh: add check and usage for AUTOMAKE and ACLOCAL.
* fix up autogen script to call autoheaderJames Henstridge2001-05-021-2/+10
| | | | | | | | 2001-05-01 James Henstridge <james@daa.com.au> * autogen.sh: fix up autogen script to call autoheader * gtk/gtk.defs: remove colorsel palette manipulation functions.
* only run the AC_PATH_PROGS check if we don't have a PYTHON environmentMatthew Wilson2001-05-011-0/+1
| | | | | | | | | 2001-05-01 Matthew Wilson <msw@redhat.com> * acinclude.m4 (AM_PATH_PYTHON_JH): only run the AC_PATH_PROGS check if we don't have a PYTHON environment variable set * autogen.sh: run autoheader
* include the autogen.sh script from extension-class-branchJames Henstridge2000-10-261-0/+89