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

Max Khon fjoe at FreeBSD.org
Tue Nov 29 04:50:57 UTC 2011


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 *);


More information about the svn-src-head mailing list