This message was forwarded from [email protected]. The MonetDB
mailing lists have moved to monetdb.org. Please subscribe to
[email protected], and unsubscribe from this list.
See: http://mail.monetdb.org/mailman/listinfo/developers-list
Send developers-list mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://mail.monetdb.org/mailman/listinfo/developers-list
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of developers-list digest..."
Today's Topics:
1. Re: readline and the Mac build (Charalampos Nikolaou)
2. New Feb2013 stable branch created (Sjoerd Mullender)
3. Re: readline and the Mac build (Masood Mortazavi)
4. Re: readline and the Mac build (Masood Mortazavi)
----------------------------------------------------------------------
Message: 1
Date: Thu, 29 Nov 2012 13:16:31 +0200
From: Charalampos Nikolaou <[email protected]>
To: "Communication channel for developers of the MonetDB suite."
<[email protected]>
Subject: Re: readline and the Mac build
Message-ID:
<CAGVKX=cs0vre85cw_k-rrwanshzzv6pu5sncvcp7vjyytcu...@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Hi, in my case I always pass the following parameters to the configure
script, both for the case of readline and iconv:
--with-readline=/usr/local/Cellar/readline/6.1
--with-libiconv-prefix=/usr/local/Cellar/libiconv/1.13.1
The contents of /usr/local/Cellar/readline/6.1 are the following:
$ ls /usr/local/Cellar/readline/6.1
COPYING ChangeLog README include/ lib/ share/
And I do not use the system's readline, but the one provided by
Homebrew (http://mxcl.github.com/homebrew/).
In your case, I suppose that you have to specify something like this:
/Developer/SDKs/MacOSX10.X.sdk/usr (X depending on your OS X version).
Hope that helps,
Babis
P.S.: A little out of context, but it might come in handy during the
build process. I also pass the following parameter/value during
configure, because at some point an update in Xcode messed things up
by not removing/updating some old function prototypes (I think in the
SSL library, but I might be mistaken here).
CFLAGS=-Wno-deprecated-declarations
On Thu, Nov 29, 2012 at 9:38 AM, Fabian Groffen <[email protected]> wrote:
> On 29-11-2012 04:16:22 +0100, Masood Mortazavi wrote:
>> On my system, with default (no argument or options) configure, make and make
>> install, I have:
>>
>> masood$ mclient --version
>>
>> mclient, the MonetDB interactive terminal (unreleased)
>>
>> character encoding: UTF-8
>>
>> despite the fact that readline (headers and libraries) seem to be installed
>> under /opt/local.
>
> You give the answer yourself. The configure script does not know you
> happened to install (GNU) readline under /opt/local/{include,lib}. Tell
> it where your readline is, so it can consider using it.
>
> Fabian
>
>
> --
> Fabian Groffen [email protected]
> column-store pioneer http://www.monetdb.org/Home
>
> _______________________________________________
> developers-list mailing list
> [email protected]
> http://mail.monetdb.org/mailman/listinfo/developers-list
>
------------------------------
Message: 2
Date: Thu, 29 Nov 2012 17:22:08 +0100
From: Sjoerd Mullender <[email protected]>
To: "Communication channel for developers of the MonetDB suite."
<[email protected]>
Subject: New Feb2013 stable branch created
Message-ID: <[email protected]>
Content-Type: text/plain; charset="utf-8"
I have created a new stable branch for the next feature release. This
branch was created in order to stabilize the code before the feature
release.
>From now on *only* bug fixes may go to this new stable branch. I
reserve the right to undo any changes that do not comply with this rule.
I also reserve the right to admit changes that are not strictly bug fixes.
The name for the branch is Feb2013. So in each of your stable checkout
directories you can do
hg pull
hg update -rFeb2013
to update to this new branch.
--
Sjoerd Mullender
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 369 bytes
Desc: OpenPGP digital signature
URL:
<http://mail.monetdb.org/pipermail/developers-list/attachments/20121129/39b73b0b/attachment.sig>
------------------------------
Message: 3
Date: Thu, 29 Nov 2012 13:11:05 -0800
From: Masood Mortazavi <[email protected]>
To: "Communication channel for developers of the MonetDB suite."
<[email protected]>
Subject: Re: readline and the Mac build
Message-ID:
<caemn6cu88jeupye48zys12ryfysqqqx00kelb+jsormfqjo...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
On Wed, Nov 28, 2012 at 11:10 PM, Stefan Manegold <[email protected]>wrote:
> What does
>
> grep -i readline <BUILDDIR>/config.*
>
> say?
>
config.log:configure:18493: checking readline/readline.h usability
config.log:configure:18493: checking readline/readline.h presence
config.log:configure:18493: checking for readline/readline.h
config.log:configure:18495: checking for readline in -lreadline
config.log:configure:18520: gcc -o conftest -g conftest.c -lreadline
>&5
config.log:configure:18631: checking for rl_completion_matches in -lreadline
config.log:configure:18656: gcc -o conftest -g conftest.c -lreadline
-lreadline >&5
config.log:| #include <readline/readline.h>
config.log:ac_cv_header_readline_readline_h=yes
config.log:ac_cv_lib_readline_readline=yes
config.log:ac_cv_lib_readline_rl_completion_matches=yes
config.log:READLINE_INCS=''
config.log:READLINE_LIBS=''
config.status:S["READLINE_INCS"]=""
config.status:S["READLINE_LIBS"]=""
>
>
> ----- Original Message -----
> > On my system, with default (no argument or options) configure, make
> > and
> > make install, I have:
> >
> > masood$ mclient --version
> > mclient, the MonetDB interactive terminal (unreleased)
> > character encoding: UTF-8
> >
> >
> > despite the fact that readline (headers and libraries) seem to be
> > installed
> > under /opt/local.
> >
> > Thanks,
> > - m.
> >
> >
> >
> > On Wed, Nov 28, 2012 at 4:44 AM, Fabian Groffen <[email protected]>
> > wrote:
> >
> > > On 26-11-2012 08:40:41 +0100, Masood Mortazavi wrote:
> > > > It seems "readline" isn't linked in the Mac build and
> > > > installation.
> > > >
> > > > Configure or package repository don't indicate any issues, and
> > > > yet
> > > history
> > > > completions fail on mclient's sql prompt.
> > >
> > > fabian% scanmacho --needed install/bin/mclient |grep readline
> > > x86_64 MH_EXECUTE
> > >
> > >
> /Volumes/scratch/monet/GNU-Darwin-x86_64-propcheck-8324309eddfb-Oct2012/install/lib/libmapi.6.dylib,/Volumes/scratch/monet/GNU-Darwin-x86_64-propcheck-8324309eddfb-Oct2012/install/lib/libstream.3.dylib,/Volumes/scratch/gentoo/x86_64/lib/libz.1.dylib,/Volumes/scratch/gentoo/x86_64/lib/libbz2.1.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/libssl.1.0.0.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/libcrypto.1.0.0.dylib,/Volumes/scratch/gentoo/x86_64/lib/libreadline.6.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/libcurl.4.dylib,/Volumes/scratch/gentoo/x86_64/lib/libiconv.2.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/gcc/x86_64-apple-darwin9/4.2.1/libgcc_s.1.dylib,/usr/lib/libSystem.B.dylib
> > > install/bin/mclient
> > > fabian% ./install/bin/mclient --version
> > > mclient, the MonetDB interactive terminal (Oct2012-8324309eddfb)
> > > support for command-line editing compiled-in
> > > character encoding: UTF-8
> > >
> > > Seems to be working fine for me?
> > >
> > > Fabian
> > >
> > >
> > > --
> > > Fabian Groffen [email protected]
> > > column-store pioneer http://www.monetdb.org/Home
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://mail.monetdb.org/pipermail/developers-list/attachments/20121129/bda77b3c/attachment.html>
------------------------------
Message: 4
Date: Thu, 29 Nov 2012 13:40:12 -0800
From: Masood Mortazavi <[email protected]>
To: "Communication channel for developers of the MonetDB suite."
<[email protected]>
Subject: Re: readline and the Mac build
Message-ID:
<CAEMN6cVTAR8Pq5xCaB45SUg5BmHn9FdeWWT3=c3w+awu41i...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Specifying
--with-readline=/opt/local
fills up the READLINE_LIBS and INCS, and adds #define HAVE_LIBREADLINE 1,
as expected
However, some other build issues rear there heads which I need to solve now.
Thanks,
- m.
On Thu, Nov 29, 2012 at 1:11 PM, Masood Mortazavi <[email protected]
> wrote:
> On Wed, Nov 28, 2012 at 11:10 PM, Stefan Manegold
> <[email protected]>wrote:
>
>> What does
>>
>> grep -i readline <BUILDDIR>/config.*
>>
>> say?
>>
>
>
> config.log:configure:18493: checking readline/readline.h usability
> config.log:configure:18493: checking readline/readline.h presence
> config.log:configure:18493: checking for readline/readline.h
> config.log:configure:18495: checking for readline in -lreadline
> config.log:configure:18520: gcc -o conftest -g conftest.c -lreadline
> >&5
> config.log:configure:18631: checking for rl_completion_matches in
> -lreadline
> config.log:configure:18656: gcc -o conftest -g conftest.c -lreadline
> -lreadline >&5
> config.log:| #include <readline/readline.h>
> config.log:ac_cv_header_readline_readline_h=yes
> config.log:ac_cv_lib_readline_readline=yes
> config.log:ac_cv_lib_readline_rl_completion_matches=yes
> config.log:READLINE_INCS=''
> config.log:READLINE_LIBS=''
> config.status:S["READLINE_INCS"]=""
> config.status:S["READLINE_LIBS"]=""
>
>
>
>>
>>
>> ----- Original Message -----
>> > On my system, with default (no argument or options) configure, make
>> > and
>> > make install, I have:
>> >
>> > masood$ mclient --version
>> > mclient, the MonetDB interactive terminal (unreleased)
>> > character encoding: UTF-8
>> >
>> >
>> > despite the fact that readline (headers and libraries) seem to be
>> > installed
>> > under /opt/local.
>> >
>> > Thanks,
>> > - m.
>> >
>> >
>> >
>> > On Wed, Nov 28, 2012 at 4:44 AM, Fabian Groffen <[email protected]>
>> > wrote:
>> >
>> > > On 26-11-2012 08:40:41 +0100, Masood Mortazavi wrote:
>> > > > It seems "readline" isn't linked in the Mac build and
>> > > > installation.
>> > > >
>> > > > Configure or package repository don't indicate any issues, and
>> > > > yet
>> > > history
>> > > > completions fail on mclient's sql prompt.
>> > >
>> > > fabian% scanmacho --needed install/bin/mclient |grep readline
>> > > x86_64 MH_EXECUTE
>> > >
>> > >
>> /Volumes/scratch/monet/GNU-Darwin-x86_64-propcheck-8324309eddfb-Oct2012/install/lib/libmapi.6.dylib,/Volumes/scratch/monet/GNU-Darwin-x86_64-propcheck-8324309eddfb-Oct2012/install/lib/libstream.3.dylib,/Volumes/scratch/gentoo/x86_64/lib/libz.1.dylib,/Volumes/scratch/gentoo/x86_64/lib/libbz2.1.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/libssl.1.0.0.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/libcrypto.1.0.0.dylib,/Volumes/scratch/gentoo/x86_64/lib/libreadline.6.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/libcurl.4.dylib,/Volumes/scratch/gentoo/x86_64/lib/libiconv.2.dylib,/Volumes/scratch/gentoo/x86_64/usr/lib/gcc/x86_64-apple-darwin9/4.2.1/libgcc_s.1.dylib,/usr/lib/libSystem.B.dylib
>> > > install/bin/mclient
>> > > fabian% ./install/bin/mclient --version
>> > > mclient, the MonetDB interactive terminal (Oct2012-8324309eddfb)
>> > > support for command-line editing compiled-in
>> > > character encoding: UTF-8
>> > >
>> > > Seems to be working fine for me?
>> > >
>> > > Fabian
>> > >
>> > >
>> > > --
>> > > Fabian Groffen [email protected]
>> > > column-store pioneer http://www.monetdb.org/Home
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://mail.monetdb.org/pipermail/developers-list/attachments/20121129/ae4e33bc/attachment.html>
------------------------------
_______________________________________________
developers-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/developers-list
End of developers-list Digest, Vol 3, Issue 12
**********************************************
------------------------------------------------------------------------------
Keep yourself connected to Go Parallel:
VERIFY Test and improve your parallel project with help from experts
and peers. http://goparallel.sourceforge.net
_______________________________________________
Monetdb-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-developers