From c61584b6e54263b7dcb9e26d310abce8e8a553e6 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 2 Oct 2006 00:53:48 +0000 Subject: [PATCH] fix sqlite build on netbsd git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2929 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- libs/sqlite-3.3.6.build.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 libs/sqlite-3.3.6.build.sh diff --git a/libs/sqlite-3.3.6.build.sh b/libs/sqlite-3.3.6.build.sh new file mode 100755 index 0000000000..50e9164b09 --- /dev/null +++ b/libs/sqlite-3.3.6.build.sh @@ -0,0 +1,7 @@ +if [ `uname -s` = "NetBSD" ] ; then +config_TARGET_READLINE_LIBS="-L/usr/pkg/lib -lreadline" ./configure $@ +else +./configure $@ +fi +$MAKE +$MAKE install