Hi, I was puzzled about why I couldn't rebuild cairo with PS or PDF support. It turned out that cairo.def was not being regenerated after each re-run of configure. I'm not sure if cairo.def needs an extra dependency specified in the Makefile to make sure it's fresh, but it should at least be removed during "make clean". That would have saved me some time.
Agreed. Trivial patch: diff --git a/src/Makefile.am b/src/Makefile.am index c982244..2141113 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -233,3 +233,5 @@ install-data-local: echo "****************************************************************" ; \ false ; \ fi + +CLEANFILES = cairo.def
I'm pushing this fix out now. Behdad, What's the rationale for burying a useful patch here in bugzilla instead of just pushing it out into cairo? Please feel free to push obvious fixes like this straight out. -Carl
Carl: gitophobia.
*** Bug 7277 has been marked as a duplicate of this bug. ***
Sorry, ignore the duplicate, it was a typo.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.