Changes of Revision 9
[-] | Changed | couchdb.spec |
x 1
2 %setup 3 ./bootstrap -C 4 5 -%configure \ 6 - CFLAGS="`xulrunner-config --cflags`" \ 7 - LDFLAGS="`xulrunner-config --libs`" || cat config.log 8 +export JSINCLUDE=`xulrunner-config --idlflags | sed -e s@-I@@g` 9 +export JSLIB=`xulrunner-config --libs | sed -e s@-L@@g` 10 + 11 +%configure --with-js-include=${JSINCLUDE} --with-js-lib=${JSLIB} || cat config.log 12 13 %build 14 %{__make} 15 |