svn commit: r228114 - head/lib/libedit/edit/readline

[ Available lists | Index of svn-src-head | Month of Nov 2011 | Week of 29 Nov 2011 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Max Khon <fjoe@FreeBSD.org>
Date
29 Nov 2011 04:50:57
Subject
svn commit: r228114 - head/lib/libedit/edit/readline
Message-ID
201111290450.pAT4ovZf024314@svn.freebsd.org


[ Hide this part ]
Author: fjoe
Date: Tue Nov 29 04:50:57 2011
New Revision: 228114
URL: http://svn.freebsd.org/changeset/base/228114

Log:
- Hide _rl_qsort_string_compare() that should be private to libreadline()
implementation.
- Add symlink /usr/include/edit/readline/tilde.h -> readline.h

All this makes it possible to build and link gdb with -ledit.

Modified:
head/lib/libedit/edit/readline/Makefile
head/lib/libedit/edit/readline/readline.h

Modified: head/lib/libedit/edit/readline/Makefile
==============================================================================
--- head/lib/libedit/edit/readline/Makefile Tue Nov 29 03:49:03 2011 (r228113)
+++ head/lib/libedit/edit/readline/Makefile Tue Nov 29 04:50:57 2011 (r228114)
@@ -2,6 +2,7 @@
# $FreeBSD$

INCS= readline.h history.h
+SYMLINKS= readline.h ${INCLUDEDIR}/edit/readline/tilde.h

INCSDIR= ${INCLUDEDIR}/edit/readline


Modified: head/lib/libedit/edit/readline/readline.h
==============================================================================
--- head/lib/libedit/edit/readline/readline.h Tue Nov 29 03:49:03 2011 (r228113)
+++ head/lib/libedit/edit/readline/readline.h Tue Nov 29 04:50:57 2011 (r228114)
@@ -200,7 +200,6 @@ void rl_get_screen_size(int *, int *);
void rl_set_screen_size(int, int);
char *rl_filename_completion_function (const char *, int);
int _rl_abort_internal(void);
-int _rl_qsort_string_compare(char **, char **);
char **rl_completion_matches(const char *, rl_compentry_func_t *);
void rl_forced_update_display(void);
int rl_set_prompt(const char *);

Elapsed time: 0.147 seconds