| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
The common practice is to name the first stable version in which
a function is deprecated. Following that here and mark things
as deprecated in 1.38.
|
|
|
|
|
| |
Ugh. With 64-bit machines, weird things were happening inside MIN/MAX()
when one of the arguments was unsigned...
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=700592
|
|
|
|
|
|
|
|
| |
These all are general utility functions that do not belong to Pango’s
public interface. Most of them are unused internally now, the few ones
that are still used should be made private at some point.
https://bugzilla.gnome.org/show_bug.cgi?id=682840
|
|
|
|
| |
This allows the docscanner to find pango/pango-enum-types.h
|
| |
|
|
|
|
|
|
|
| |
We use a compile-time check: if compiling for platforms 10.8 or higher,
use the public function, otherwise use the undocumented function.
Fixes bug 737813.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=748822
https://bugzilla.gnome.org/show_bug.cgi?id=744836
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Do it before it's too late!
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Clean up our shi^W"stuff". Please confirm I didn't break everything.
|
| |
|
|
|
|
| |
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=694697
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this change, out-of-tree distcheck doesn't get very far.
Similarly, allow *.vcxproj, *.props to be in either the builddir or
the srcdir.
Finally, since I'm touching these lines anyway, eliminate some
useless uses of cat: "cat x | sed 's/foo/bar/' > y" is
equivalent to "sed 's/foo/bar/' < x > y".
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=748176
Reviewed-by: Chun-wei Fan <fanchunwei@src.gnome.org>
|
| |
|
| |
|
|
|
|
| |
We can use $< for generating the MSVC 2012/2013 Solution files, so use it.
|
|
|
|
|
|
|
| |
This reverts commit c8b1d5bea67155ae51cb9a145d43df79a52faeb4.
See discussion:
https://bugzilla.gnome.org/show_bug.cgi?id=747772
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
After the removal of modules and configuration files, both
pango_get_lib_subdirectory and pango_get_sysconf_subdirectory are
meaningless now. This patch deprecates them and removes the Windows
specific behaviour as it prevents statically compiling Pango under
Windows.
https://bugzilla.gnome.org/show_bug.cgi?id=682840
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=747772
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Apaprently there are many incompatible realpath(1) implementations out
there, so things like --relative-to can't be assured to work everywhere,
such as on Ubuntu.
Instead, simply use the subst feature of automake to fulfil the same
purpose, which is like what the rest of this file does, and follows the
pattern of the introspection makefile, which this is modelled on.
Also update the simple tutorial and clean up a bit, changing $(empty) to
<nothing> as Behdad pointed out.
This is also checked with 'make -j8 distcheck'.
https://bugzilla.gnome.org/show_bug.cgi?id=735039
|
| |
|
|
|
|
|
|
|
| |
This reverts commit aa7a9e08d33ac01aa43460a064e086b099f71642.
Sorry, I accidently committed this in master, when I am supposed to commit
in my own local branch.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Apaprently there are many incompatible realpath(1) implementations out
there, so things like --relative-to can't be assured to work everywhere,
such as on Ubuntu.
Instead, simply use the subst feature of automake to fulfil the same
purpose, which is like what the rest of this file does, and follows the
pattern of the introspection makefile, which this is modelled on.
This is also checked with 'make -j8 distcheck'
https://bugzilla.gnome.org/show_bug.cgi?id=735039
|
|
|
|
|
|
|
| |
Since we are no longer using the interim Makefile-msvcproj.am way to
generate the complete MSVC build files, change all PangoApiVersion to
ApiVersion, to be consistent with the other MSVC build files in the GTK+/
Clutter stack.
|
|
|
|
|
|
| |
Create the directory where the headers should be copied. I did not notice
this as there was always
$(GlibEtcInstallRoot)\vs$(VSVER)\$(PLAT)\include\pango-1.0\pango. Oops.
|
|
|
|
| |
We don't need them around anymore
|
|
|
|
|
| |
...as this is interim that is to be superceded by Makefile.msvcproj, which
is meant to be usable across different projects.
|
|
|
|
|
| |
The command macro for copying config.h.win32 to config.h was wrong due to
a leftover when copying the rule. Fix that, oops.
|
|
|
|
|
|
|
|
|
| |
This restores the EXTRA_DIST for the project file related items, as the
underlying mechanism in the previous commit (i.e. Makefile-newvs.am) has
been cleaned up and fixed to allow 'make -jN distcheck' to complete
successfully.
https://bugzilla.gnome.org/show_bug.cgi?id=735039
|
|
|
|
|
|
|
| |
This allows this common autotools file to be cleaned up quite a bit, and
has the benefit of having 'make -jN distcheck' complete successfully.
https://bugzilla.gnome.org/show_bug.cgi?id=735039
|
|
|
|
|
|
|
|
|
|
| |
... in a way that 'make distcheck' (with or without -jN) completes
successfully. This uses the common autotools module that was added in
a previous commit so that we just need to define the items needed and call
the things in there during 'make dist' (or 'make distcheck'), which would
have things in a more tidy manner for this.
https://bugzilla.gnome.org/show_bug.cgi?id=735039
|
|
|
|
|
|
|
|
|
|
| |
This adds a common autotools module that can be used by various projects to
generate the Visual Studio projects as needed, and if necessary, generate
the headers listings to "install" for that project, based on items passed
in to this. This is modelled on the Makefile.introspection autotools file
that is used by many GNOME projects to generate the introspection files.
https://bugzilla.gnome.org/show_bug.cgi?id=735039
|