mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 01:26:58 +00:00
add --enable-core-libedit-support configure flag in case you want nicer command line stuff in the debug console (I know I do when I am coding dunno about you)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5044 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
50
libs/libedit/patches/cvs_export.sh
Normal file
50
libs/libedit/patches/cvs_export.sh
Normal file
@@ -0,0 +1,50 @@
|
||||
#!/bin/bash
|
||||
|
||||
## export NetBSD source to ./export
|
||||
|
||||
rm -r export
|
||||
rm -r export.unpatched
|
||||
|
||||
## cvs ... -dexport/src doesn't work
|
||||
mkdir -p export
|
||||
cd export
|
||||
|
||||
PSERV=:pserver:anoncvs@anoncvs.netbsd.org
|
||||
|
||||
## initial login (pw anoncvs)
|
||||
##cvs -d :pserver:anoncvs@anoncvs.netbsd.org:/cvsroot login
|
||||
|
||||
for i in src/common/lib/libc/string/strlcat.c\
|
||||
src/common/lib/libc/string/strlcpy.c\
|
||||
src/lib/libc/gen/vis.c\
|
||||
src/lib/libc/gen/unvis.c\
|
||||
src/include/vis.h \
|
||||
src/tools/compat/fgetln.c
|
||||
do
|
||||
echo $i
|
||||
cvs -d $PSERV:/cvsroot export -Dnow -dsrc $i
|
||||
done
|
||||
|
||||
cvs -d $PSERV:/cvsroot export -Dnow -dsrc src/lib/libedit
|
||||
|
||||
|
||||
## hierarchy canges
|
||||
|
||||
rm src/readline/Makefile
|
||||
rm src/TEST/Makefile
|
||||
rm src/Makefile
|
||||
rm src/config.h
|
||||
|
||||
mv src/TEST examples
|
||||
|
||||
mkdir doc
|
||||
mv src/editline.3 doc/editline.3.roff
|
||||
mv src/editrc.5 doc/editrc.5.roff
|
||||
|
||||
mv src/readline src/editline
|
||||
mv src/term.h src/el_term.h
|
||||
|
||||
cd ..
|
||||
date +"%Y%m%d" > timestamp.cvsexport
|
||||
|
||||
cp -rf export export.unpatched
|
Reference in New Issue
Block a user