[sqlite] Introducing Bedrock: SQLite for the Enterprise

2016-10-18 Thread David Barrett
Love SQLite? Wish you could use it to power your enterprise SaaS or web service? Now you can! Check out Expensify Bedrock, our distributed transaction layer built atop SQLite, powering Expensify's millions of users. More information is here: http://bedrockdb.com Keep all the power and

Re: [sqlite] freebsd 11 SQLite build: readline/readline.h file not found

2016-10-18 Thread jungle Boogie
On 18 October 2016 at 15:09, Warren Young wrote: > On Oct 18, 2016, at 3:59 PM, jungle Boogie wrote: >> >> On 18 October 2016 at 13:55, Warren Young wrote: >>> Did you ./configure after the upgrade? If not, do so. >> >> yes, this is

Re: [sqlite] freebsd 11 SQLite build: readline/readline.h file not found

2016-10-18 Thread Warren Young
On Oct 18, 2016, at 3:59 PM, jungle Boogie wrote: > > On 18 October 2016 at 13:55, Warren Young wrote: >> Did you ./configure after the upgrade? If not, do so. > > yes, this is my standard config: > ./configure --disable-editline; make If you don’t

Re: [sqlite] freebsd 11 SQLite build: readline/readline.h file not found

2016-10-18 Thread jungle Boogie
On 18 October 2016 at 13:55, Warren Young wrote: > Did you ./configure after the upgrade? If not, do so. yes, this is my standard config: ./configure --disable-editline; make sqliteup is an alias in my shell to do this and then sudo make install -- --- inum:

Re: [sqlite] freebsd 11 SQLite build: readline/readline.h file not found

2016-10-18 Thread Warren Young
On Oct 16, 2016, at 12:45 AM, jungle Boogie wrote: > > I just re-installed freebsd 11 on a machine of mine and as usual, I > build sqlite from source. However, I see this: > sqlite3/src/shell.c:66:11: fatal error: 'readline/readline.h' file not found Did you ./configure

Re: [sqlite] freebsd 11 SQLite build: readline/readline.h file not found

2016-10-18 Thread Pavel Volkov
Hello. Readline now don't part of FreeBSD. You should add flag -I /usr/local/include into your compilation process. See flags in the port database/sqlite3. PS I'm sorry. I am in vacation now. On Oct 16, 2016 2:46 AM, "jungle Boogie" wrote: > Hi All, > > I just