summaryrefslogtreecommitdiff
path: root/Makefile-giscanner.am
Commit message (Collapse)AuthorAgeFilesLines
* Compare filenames using g_file_equal()Johan Dahlin2012-04-091-2/+2
| | | | | | Makes it work on case-sensitive file systems such as HFS+. https://bugzilla.gnome.org/show_bug.cgi?id=667405
* Now make AnnotationParser do what gobject-introspection needs it to do.Dieter Verfaillie2012-04-051-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672254
* g-ir-doc-tool: Add missing filesRico Tzschichholz2012-02-221-0/+2
|
* g-ir-doc-tool: Add enum templates to the MakefileTomeu Vizoso2012-02-201-0/+2
|
* g-ir-doc-tool: Install the Mako template filesTomeu Vizoso2012-02-201-0/+14
|
* g-ir-doc-tool: Remove stale DocBook filesTomeu Vizoso2012-02-201-2/+0
|
* Fix linking against libpythonDieter Verfaillie2011-09-171-1/+8
| | | | | | | | | | | | - AM_CHECK_PYTHON_LIBS doesn't work for 64bit sytems (lib64) - Python extension modules do not need to be linked against libpython on linux anyway, but it is needed on Windows So only run AM_CHECK_PYTHON_LIBS in configure.ac for the windows case and make it clear in Makefile-giscanner.am linking against libpython is a windows only thing. https://bugzilla.gnome.org/show_bug.cgi?id=658914
* Windows port: Simplify _giscanner's .pyd file extension handling.Dieter Verfaillie2011-09-071-14/+2
| | | | | | By simply using -shrext ".pyd". https://bugzilla.gnome.org/show_bug.cgi?id=620566
* Windows port: Use an improved python.m4Dieter Verfaillie2011-09-071-5/+3
| | | | | | | | | | | | | | | | | | | | - AM_CHECK_PYTHON_HEADERS macro now allows PYTHON_INCLUDES to be overridden from an environment variable and - the new AM_CHECK_PYTHON_LIBS macro to check for ability to link against libpython. This also allows PYTHON_LIBS and PYTHON_LIB_LOC to be overridden from their respective environment variables. This allows gobject-introspection to be built with MinGW/MSYS by doing: PYTHON_DIR="/c/Python27" SRC_DIR="/d/dev/gnome.org/checkout/gobject-introspection/src" ... PYTHON_INCLUDES="-I${PYTHON_DIR}/include/" \ PYTHON_LIBS="-L${PYTHON_DIR}/libs/ -lpython${PYTHON_VERSION}" \ PYTHON_LIB_LOC="${PYTHON_DIR}/libs/" \ "${SRC_DIR}/configure" \ https://bugzilla.gnome.org/show_bug.cgi?id=620566
* windows: Use the real python version instead of an hardcoded oneAndoni Morales Alastruey2011-09-031-1/+2
|
* Install docbookdescription.pyColin Walters2011-08-301-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=657686
* giscanner/mallardwriter: Adding experimental Mallard output to g-ir-doc-toolShaun McCance2011-08-151-0/+1
|
* WIP doctoolJohan Dahlin2011-08-111-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=625494
* Kill off config.pyColin Walters2011-07-271-1/+0
| | | | | Generating Python source code is problematic for srcdir != builddir; steal a the trick of putting global data in __builtins__ from jhbuild.
* build: Fix srcdir != builddir for flex/bisonColin Walters2011-07-271-1/+1
| | | | Build artifacts go in the builddir, so drop the giscanner/ prefix.
* Switch to nonrecursive make for core (i.e. not tests/)Colin Walters2010-11-091-0/+82
This is cleaner and faster, and prepares us better for an incoming import of CMPH.