~ubuntu-branches/ubuntu/lucid/couchdb/lucid

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Elliot Murphy
  • Date: 2009-09-10 11:35:54 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090910113554-dnk88gci7ap66iyp
Tags: 0.10.0~svn813472-0ubuntu1
* New snapshot of couchdb 0.10.x stable prerelease branch
  - pass config reset option to recursed background startup (LP: #424330)
    closes COUCHDB-498
  - Fix for building on snow leopard COUCHDB-490
  - Fix SSL replication (LP: #422178) COUCHDB-491
  - Fix continuous-after-normal replication
  - Use the same password hash calculation for user creation via ini
    file and user db, closes COUCHDB-492
  - Fix for WebKit XHR, closes COUCHDB-483
  - Don't check for response code text, closes COUCHDB-482
  - Remove a debugging leftover

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
 
104
104
AM_CONDITIONAL([WINDOWS], [test x$IS_WINDOWS = xTRUE])
105
105
 
106
 
AC_CHECK_LIB([mozjs], [JS_NewContext], [], [
107
 
    AC_CHECK_LIB([js], [JS_NewContext], [], [
108
 
        AC_CHECK_LIB([js3250], [JS_NewContext], [], [
109
 
            AC_CHECK_LIB([js32], [JS_NewContext], [], [
 
106
AC_CHECK_LIB([mozjs], [JS_NewContext], [JSLIB=-lmozjs], [
 
107
    AC_CHECK_LIB([js], [JS_NewContext], [JSLIB=-ljs], [
 
108
        AC_CHECK_LIB([js3250], [JS_NewContext], [JSLIB=-ljs3250], [
 
109
            AC_CHECK_LIB([js32], [JS_NewContext], [JSLIB=-ljs32], [
110
110
                AC_MSG_ERROR([Could not find the js library.
111
111
 
112
112
Is the Mozilla SpiderMonkey library installed?])])])])])
122
122
Are the Mozilla SpiderMonkey headers installed?])
123
123
        ])])
124
124
 
 
125
AC_SUBST(JSLIB)
 
126
 
125
127
AC_LANG_PUSH(C)
126
128
OLD_CFLAGS="$CFLAGS"
127
129
CFLAGS="-Werror-implicit-function-declaration"