Merge lp:~hingo/drizzle/drizzle-warn-if-libv8-missing into lp:~drizzle-trunk/drizzle/development

Proposed by Henrik Ingo
Status: Merged
Merged at revision: 2497
Proposed branch: lp:~hingo/drizzle/drizzle-warn-if-libv8-missing
Merge into: lp:~drizzle-trunk/drizzle/development
Diff against target: 9 lines (+3/-0)
1 file modified
plugin/js/plugin.ac (+3/-0)
To merge this branch: bzr merge lp:~hingo/drizzle/drizzle-warn-if-libv8-missing
Reviewer Review Type Date Requested Status
Drizzle Merge Team Pending
Review via email: mp+90257@code.launchpad.net

Description of the change

    JS Plugin: Print warning if libv8.so is not found in configure.

    I noticed other plugins are doing this and copied from there.
    Btw: As far as I'm concerned this should be a feature of pandora-build itself.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugin/js/plugin.ac'
2--- plugin/js/plugin.ac 2011-11-06 19:00:34 +0000
3+++ plugin/js/plugin.ac 2012-01-26 12:36:29 +0000
4@@ -1,1 +1,4 @@
5 PANDORA_HAVE_LIBV8
6+
7+AS_IF([test "x$ac_cv_libv8" = "xno"],
8+ AC_MSG_WARN([libv8 not found: not building js() function. (You'll find v8 in the libv8-dev package on Debian systems, and libv8-devel on Red Hat systems.)]))
9\ No newline at end of file