~ubuntu-branches/ubuntu/quantal/libxml2/quantal-updates

« back to all changes in this revision

Viewing changes to xpath.c

  • Committer: Bazaar Package Importer
  • Author(s): Mike Hommey
  • Date: 2010-03-21 09:51:17 UTC
  • mfrom: (1.1.14 upstream)
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: james.westby@ubuntu.com-20100321095117-1xe3ad1tzlu648h2
Tags: 2.7.7.dfsg-1
* New upstream release.
* debian/control:
  + Bump Standards-Version to 3.8.4.0.
  + Depend on a version of debhelper that provides dh and supports
    overrides.
* debian/compat: Bump to 7.
* debian/rules:
  + Don't avoid to build in example/. There is no reason to do so anymore.
  + Remove remains of WORKAROUND_MODIFIED_FILES, that was removed 2 years
    ago.
  + Change the way python libs are built. We now use configure to set
    different environment with and without python, and arrange things so
    that we don't have to build the base libxml2 library several times.
  + Deduplicate in /usr/lib/pyshared, not
    /usr/lib/python-support/python-libxml2.
  + Remove old source and diff rules that only displayed a message
    inviting to use dpkg-source -b.
  + Force -Wl,--as-needed at the beginning of the gcc command line.
  + Simplify rules by switching to dh.
  + Don't refresh COPYING during clean target, it appears not to be
    necessary anymore.
  + Use a common cache for main and python configure passes.
* debian/python-libxml2.install: Install python files from
  /usr/lib/python*/dist-packages.
* python/generator.py: Sort python generated stubs so that libxml2.py
  doesn't differ between python 2.5 and 2.6.
* doc/devhelp/Makefile.{am,in}: Properly install devhelp files when
  builddir != srcdir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11333
11333
        SKIP_BLANKS;
11334
11334
    }
11335
11335
    xmlXPathCompStep(ctxt);
 
11336
    CHECK_ERROR;
11336
11337
    SKIP_BLANKS;
11337
11338
    while (CUR == '/') {
11338
11339
        if ((CUR == '/') && (NXT(1) == '/')) {
11392
11393
                     (CUR == '@') || (CUR == '*')))
11393
11394
                    xmlXPathCompRelativeLocationPath(ctxt);
11394
11395
            }
 
11396
            CHECK_ERROR;
11395
11397
        }
11396
11398
    }
11397
11399
}