summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Use pkg-config to check for libffi again.Johan Dahlin2008-07-201-28/+15
| | | | | | | | | | | 2008-07-20 Johan Dahlin <johan@gnome.org> * configure.ac: * gobject/Makefile.am: Use pkg-config to check for libffi again. svn path=/trunk/; revision=841
* Add glib bindings, currently not installed or used. Add some internal APIJohan Dahlin2008-07-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-07-20 Johan Dahlin <johan@gnome.org> * Makefile.am: * configure.ac: * glib/Makefile.am: * glib/__init__.py: * glib/glibmodule.c (pyg_destroy_notify), (get_handler_priority), (pyg_handler_marshal), (pyg_idle_add), (pyg_timeout_add), (pyg_timeout_add_seconds), (iowatch_marshal), (pyg_io_add_watch), (pyg_source_remove), (pyg_main_context_default), (child_watch_func), (child_watch_dnotify), (pyg_child_watch_add), (pyg_markup_escape_text), (pyg_get_current_time), (pyg_main_depth), (pyg_filename_display_name), (pyg_filename_display_basename), (pyg_filename_from_utf8), (pyg_get_application_name), (pyg_set_application_name), (pyg_get_prgname), (pyg_set_prgname), (pyg_register_api), (pyg_register_error), (pyg_register_version_tuples), (init_glib): * glib/pyglib-private.h: * glib/pyglib.c (pyglib_init), (pyglib_init_internal), (pyglib_gil_state_ensure), (pyglib_gil_state_release), (pyglib_enable_threads), (pyglib_gil_state_ensure_py23), (pyglib_gil_state_release_py23), (pyglib_error_check): * glib/pyglib.h: * glib/pygspawn.c (pyg_pid_close), (pyg_pid_free), (pyg_pid_tp_init), (pyg_pid_new), (_pyg_spawn_async_callback), (pyglib_spawn_async), (pyg_spawn_register_types): * glib/pygspawn.h: Add glib bindings, currently not installed or used. Add some internal API and move over a couple of functions from the gobject module. Still very much a work in progress. svn path=/trunk/; revision=839
* Post release version bumpJohan Dahlin2008-07-161-1/+1
| | | | | | | | | 2008-07-16 Johan Dahlin <johan@gnome.org> * configure.ac: Post release version bump svn path=/trunk/; revision=816
* Rename from 'pygtk-codegen-2.0.in'.Paul Pogonyshev2008-07-151-1/+1
| | | | | | | | | | | | 2008-07-15 Paul Pogonyshev <pogonyshev@gmx.net> * codegen/pygobject-codegen-2.0.in: Rename from 'pygtk-codegen-2.0.in'. * configure.ac: * codegen/Makefile.am: Update accordingly. svn path=/trunk/; revision=813
* Post release version bumpJohan Dahlin2008-07-141-1/+1
| | | | | | | | | 2008-07-15 Johan Dahlin <johan@gnome.org> * configure.ac: Post release version bump svn path=/trunk/; revision=812
* Bug 471559 – add AM_PROG_CC_C_O to configure.ac for recent automakeJohan Dahlin2008-07-141-0/+1
| | | | | | | | | | | 2008-07-14 Johan Dahlin <johan@gnome.org> Bug 471559 – add AM_PROG_CC_C_O to configure.ac for recent automake * configure.ac: Patch by Tim Mooney svn path=/trunk/; revision=806
* Bug 448173 – use python-config to get python includesJohan Dahlin2008-07-141-2/+6
| | | | | | | | | | | | 2008-07-14 Johan Dahlin <johan@gnome.org> Bug 448173 – use python-config to get python includes * configure.ac: Really close the by, patch by Matthias Klose svn path=/trunk/; revision=805
* Require gio and giounix 2.15.7.Johan Dahlin2008-03-091-2/+2
| | | | | | | | | 2008-03-10 Johan Dahlin <johan@gnome.org> * configure.ac: Require gio and giounix 2.15.7. svn path=/trunk/; revision=751
* Import codegen from pygtk. Add initial gio and gio.unix bindings.Johan Dahlin2008-01-191-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-01-19 Johan Dahlin <johan@gnome.org> * Makefile.am: * codegen/Makefile.am: * codegen/README.defs: * codegen/__init__.py: * codegen/argtypes.py: * codegen/code-coverage.py: * codegen/codegen.py: * codegen/createdefs.py: * codegen/definitions.py: * codegen/defsconvert.py: * codegen/defsgen.py: * codegen/defsparser.py: * codegen/docextract.py: * codegen/docextract_to_xml.py: * codegen/docgen.py: * codegen/h2def.py: * codegen/mergedefs.py: * codegen/missingdefs.py: * codegen/mkskel.py: * codegen/override.py: * codegen/pygtk-codegen-2.0.in: * codegen/reversewrapper.py: * codegen/scanvirtuals.py: * codegen/scmexpr.py: * configure.ac: * gio/Makefile.am: * gio/__init__.py: * gio/gio-types.defs: * gio/gio.defs: * gio/gio.override: * gio/giomodule.c: (init_gio): * gio/unix-types.defs: * gio/unix.defs: * gio/unix.override: * gio/unixmodule.c: (initunix): Import codegen from pygtk. Add initial gio and gio.unix bindings. svn path=/trunk/; revision=730
* Don't link against libffi if we cannot find libffi on the system.Johan Dahlin2008-01-111-4/+27
| | | | | | | | | | 2008-01-11 Johan Dahlin <johan@gnome.org> * configure.ac: Don't link against libffi if we cannot find libffi on the system. (#496006, Ed Catmur) svn path=/trunk/; revision=729
* Include -Wall and -Werror when checking for PySignal_SetWakeupFdJohan Dahlin2008-01-031-1/+1
| | | | | | | | * configure.ac (CPPFLAGS): Include -Wall and -Werror when checking for PySignal_SetWakeupFd svn path=/trunk/; revision=725
* Reviewed by: GustavoJohan Dahlin2008-01-031-0/+16
| | | | | | | | | | | | | | | 2008-01-03 Johan Dahlin <johan@gnome.org> Reviewed by: Gustavo * configure.ac: * gobject/pygmainloop.c (pyg_signal_watch_prepare): Optinally use PySignal_SetWakeupFd to avoid having to do a timeout to find out if there are any pending signals from python. Fixes #481569 svn path=/trunk/; revision=723
* Add pyg_option_group_new to the public APIJohan Dahlin2007-11-051-2/+2
| | | | | | | | | | | | | 2007-11-05 Johan Dahlin <johan@gnome.org> * gobject/pygobject.h: * gobject/gobjectmodule.c: Add pyg_option_group_new to the public API * configure.ac: Branch, bump version to 2.15.0. svn path=/trunk/; revision=714
* post-relase bumpGustavo J. A. M. Carneiro2007-09-161-1/+1
| | | | svn path=/trunk/; revision=709
* 2.14.0PYGOBJECT_2_14_0Gustavo J. A. M. Carneiro2007-09-161-2/+2
| | | | svn path=/trunk/; revision=707
* Bug 339924 – pygobject doesn't compile on opensolarisGustavo J. A. M. Carneiro2007-08-271-1/+9
| | | | svn path=/trunk/; revision=696
* bump versionGustavo J. A. M. Carneiro2007-07-071-1/+1
| | | | svn path=/trunk/; revision=688
* Bug 339924 – pygobject doesn't compile on opensolarisGustavo J. A. M. Carneiro2007-07-071-3/+5
| | | | svn path=/trunk/; revision=685
* Post-release version bump.Johan Dahlin2007-05-021-1/+1
| | | | | | * configure.ac: Post-release version bump. svn path=/trunk/; revision=671
* reviewed by: Johan Dahlin <johan@gnome.org>Damien Carbery2007-04-291-0/+1
| | | | | | | | | | | | | | 2007-04-29 Damien Carbery <damien.carbery@sun.com> reviewed by: Johan Dahlin <johan@gnome.org> * configure.ac: * pygobject-2.0-uninstalled.pc.in: Add an uninstalled pkg-config file, fixes #385129 svn path=/trunk/; revision=652
* Add a generic CClosure marshaller based on ffi. This makes it possible toJohan Dahlin2007-04-291-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | 2007-04-29 Johan Dahlin <jdahlin@async.com.br> * README: * configure.ac: * gobject/Makefile.am: * gobject/ffi-marshaller.c: (g_value_to_ffi_type), (g_value_from_ffi_type), (g_cclosure_marshal_generic_ffi): * gobject/ffi-marshaller.h: * gobject/gobjectmodule.c: (create_signal), (init_gobject): * pygobject-2.0.pc.in: * tests/test_signal.py: * tests/testhelpermodule.c: (test1_callback), (test1_callback_swapped), (test2_callback), (test3_callback), (test4_callback), (test_float_callback), (test_double_callback), (test_string_callback), (test_object_callback), (connectcallbacks), (_wrap_connectcallbacks), (inittesthelper): Add a generic CClosure marshaller based on ffi. This makes it possible to connect to signals on PyGObjects from C. libffi is now an optional dependency Fixes #353816 (Edward Hervey) svn path=/trunk/; revision=651
* release bumpGustavo J. A. M. Carneiro2007-04-231-1/+1
| | | | svn path=/trunk/; revision=650
* 2.13.0PYGOBJECT_2_13_0Gustavo J. A. M. Carneiro2007-04-231-2/+2
| | | | svn path=/trunk/; revision=648
* Fix the docs option so that it's possible to disable building the docs.Richard Hult2007-03-061-1/+1
| | | | | | | | | 2007-03-06 Richard Hult <richard@imendio.com> * configure.ac: Fix the docs option so that it's possible to disable building the docs. svn path=/trunk/; revision=639
* treat --enable-docs like in gtk+, closes #361722Gustavo J. A. M. Carneiro2007-01-091-2/+2
| | | | svn path=/trunk/; revision=635
* Post release version bumpJohan Dahlin2006-11-181-1/+1
|
* post release version bump ;)Johan Dahlin2006-11-181-1/+1
|
* 2.12.2PYGOBJECT_2_12_2Johan Dahlin2006-10-031-1/+1
|
* Post release version bumpJohan Dahlin2006-09-041-1/+1
|
* 2.12PYGOBJECT_2_12_0Johan Dahlin2006-09-041-2/+2
|
* version bumpGustavo J. A. M. Carneiro2006-08-271-1/+1
|
* Post release version bumpJohan Dahlin2006-08-211-1/+1
| | | | * configure.ac: Post release version bump
* Use builddate.xml for the builddate entity and have builddate.xml beJohn Finlay2006-08-101-3/+0
| | | | | | | | | * docs/reference/entities.docbook.in: * docs/reference/pygobject-ref.xml: * docs/Makefile.am: * configure.ac: Use builddate.xml for the builddate entity and have builddate.xml be updated when the docs are built not during configure time.
* Post release version bump.Johan Dahlin2006-08-081-1/+1
| | | | | | 2006-08-08 Johan Dahlin <jdahlin@async.com.br> * configure.ac: Post release version bump.
* New file to workaround automake sillinessJohan Dahlin2006-08-061-0/+3
| | | | | | | | | * m4/as-expand.m4: New file to workaround automake silliness * docs/xsl/fixxref.py.in: New script * docs/Makefile.am (XSLFILES): Add fixxref.py script, moved in from PyGTK.
* Post release version bumpJohan Dahlin2006-08-041-1/+1
| | | | * configure.ac: Post release version bump
* Clean up the build date/version mess I created. Now it's created duringJohan Dahlin2006-08-041-0/+4
| | | | | | | | | | | * configure.ac: * docs/Makefile.am: * docs/reference/.cvsignore: * docs/reference/entities.docbook.in: * docs/reference/pygobject-ref.xml: Clean up the build date/version mess I created. Now it's created during configure time and properly included in the docbook files. Also make sure distcheck passes
* hack to kill off all the libtool tagsGustavo J. A. M. Carneiro2006-08-041-0/+6
|
* Forgot to commit the changes to configure.acJohan Dahlin2006-07-201-1/+0
|
* Output xref links for unknown links.John Finlay2006-07-191-0/+1
| | | | | | | | | | | | | | | * docs/xsl/html.xsl: Output xref links for unknown links. * docs/xsl/ref-html-style.xsl: Include refsect1 and refsect2 in indexed items but only ig they have ids. * configure.ac (AC_CONFIG_FILES) : Add docs/reference/version.xml * docs/reference/pygobject-ref.xml: Add pygobject-introduction.xml and version and builddate entities. Remove commented out items. * docs/Makefile.am: Add reference/pygobject-introduction.xml and reference/version.xml.in
* Import GObject part of John Finlay's PyGTK Reference Manual, copy overJohan Dahlin2006-07-121-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.am: * configure.ac: * docs/.cvsignore: * docs/Makefile.am: * docs/common.xsl: * docs/devhelp.xsl: * docs/html.xsl: * docs/pdf-style.xsl: * docs/pdf.xsl: * docs/ref-html-style.xsl: * docs/reference/.cvsignore: * docs/reference/pygobject-classes.xml: * docs/reference/pygobject-constants.xml: * docs/reference/pygobject-functions.xml: * docs/reference/pygobject-gboxed.xml: * docs/reference/pygobject-ginterface.xml: * docs/reference/pygobject-gpointer.xml: * docs/reference/pygobject-maincontext.xml: * docs/reference/pygobject-mainloop.xml: * docs/reference/pygobject-ref.xml: * docs/reference/pygobject.xml: Import GObject part of John Finlay's PyGTK Reference Manual, copy over infrastructure from the pygtk-web module.
* post-release version bumpGustavo J. A. M. Carneiro2006-07-121-1/+1
|
* bump to right version...Johan Dahlin2006-04-111-2/+2
|
* Post release version bumpPYGOBJECT_2_10_BRANCHPOINTpygobject-2-10Johan Dahlin2006-04-111-1/+1
|
* post release version bumpJohan Dahlin2006-03-131-1/+1
|
* 2.10.0PYGOBJECT_2_10_0Johan Dahlin2006-03-131-2/+2
|
* Add a make egg targetJohan Dahlin2006-01-201-0/+3
| | | | | | * configure.ac (export_dynamic): * Makefile.am (egg): Add a make egg target
* post release version bumpJohan Dahlin2006-01-171-1/+1
|
* branch; version 2.9.1Gustavo J. A. M. Carneiro2006-01-111-1/+1
|
* post release version bumppygobject-2-8Johan Dahlin2006-01-091-1/+1
|