summaryrefslogtreecommitdiff
path: root/solenv/bin/install-gdb-printers
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-05-22 12:33:06 +0200
committerThorsten Behrens <tbehrens@suse.com>2013-05-22 12:49:07 +0200
commiteed0e18b21cc807b40217d8f4adbfd376cb5d475 (patch)
treef1fd0ed526131f5bd7ece6591f6b0b90c01a0a1f /solenv/bin/install-gdb-printers
parent36ea135d9b9cfbe34de364d32af52d8c9a0ace92 (diff)
Add gdb pretty-printers for basegfx
First cut - polygons and B2DRange covered. Change-Id: I042bff8c3fa5c889a926d450090494e2e20f76b1
Diffstat (limited to 'solenv/bin/install-gdb-printers')
-rwxr-xr-xsolenv/bin/install-gdb-printers4
1 files changed, 3 insertions, 1 deletions
diff --git a/solenv/bin/install-gdb-printers b/solenv/bin/install-gdb-printers
index e55e305226e8..6201e0cfc72c 100755
--- a/solenv/bin/install-gdb-printers
+++ b/solenv/bin/install-gdb-printers
@@ -157,13 +157,14 @@ if [[ ${DESTDIR}${pythondir} != ${GDBDIR} ]]; then
fi
if [[ -n "${MERGELIBS}" ]]; then
- make_autoload merged program libmergedlo."$DYLIB" merge svl tl `[[ ${MERGELIBS} == "ALL" ]] && echo sw`
+ make_autoload merged program libmergedlo."$DYLIB" merge svl tl basegfx `[[ ${MERGELIBS} == "ALL" ]] && echo sw`
if [[ ${MERGELIBS} == "ALL" ]]; then
make_autoload urelibs ure-link/lib liburelibs."$DYLIB" merge cppu sal
else
make_autoload cppu ure-link/lib libuno_cppu."$DYLIB".3
make_autoload sal ure-link/lib libuno_sal."$DYLIB".3
make_autoload sw program libswlo."$DYLIB"
+ make_autoload basegfx program libbasegfxlo."$DYLIB"
fi
else
make_autoload cppu ure-link/lib libuno_cppu."$DYLIB".3
@@ -171,6 +172,7 @@ else
make_autoload svl program libsvllo."$DYLIB"
make_autoload tl program libtllo."$DYLIB"
make_autoload sw program libswlo."$DYLIB"
+ make_autoload basegfx program libbasegfxlo."$DYLIB"
fi
# vim:set shiftwidth=4 softtabstop=4 expandtab: