diff options
| author | MenTaLguY <mental@rydia.net> | 2006-07-25 02:35:16 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-07-25 02:35:16 +0000 |
| commit | e2f77c079f2ca6f4093d394947f9b0c8b1d3f80f (patch) | |
| tree | 5686ba23ce77733c410eb66902c2f1e4a675b400 | |
| parent | added Rune and Riku (diff) | |
| download | inkscape-e2f77c079f2ca6f4093d394947f9b0c8b1d3f80f.tar.gz inkscape-e2f77c079f2ca6f4093d394947f9b0c8b1d3f80f.zip | |
further work on LSB build configuration
(bzr r1471)
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.ac | 9 |
2 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2006-07-24 MenTaLguY <mental@rydia.net> + + * configure.ac: further work on LSB build configuration + 2006-07-23 John Bintz <jcoswell@coswellproductions.org> * src/verbs.cpp, src/event-context.cpp, src/node-context.cpp: diff --git a/configure.ac b/configure.ac index c99363b88..61cc95397 100644 --- a/configure.ac +++ b/configure.ac @@ -11,9 +11,14 @@ AC_CANONICAL_HOST AC_CONFIG_SRCDIR(src/main.cpp) AM_INIT_AUTOMAKE -AC_ARG_ENABLE([lsb], AS_HELP_STRING([--enable-lsb], [LSB-comaptible build configuration]), [ +AC_ARG_ENABLE([lsb], AS_HELP_STRING([--enable-lsb], [LSB-compatible build configuration]), [ prefix=/opt/inkscape - # FIXME: need to force static linking of libraries not in LSB whitelist + PATH="/opt/lsb/bin:$PATH" + AC_CHECK_PROG(LSBCC, lsbcc, [], AC_MSG_ERROR([lsbcc not found; do you have the LSB SDK installed?])) + AC_CHECK_PROG(LSBCXX, lsbc++, [], AC_MSG_ERROR([lsbc++ not found; do you have the LSB SDK installed?])) + CC=lsbcc + CXX=lsbc++ + export CC CXX ]) AM_CONFIG_HEADER(config.h) |
