mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
build
conf
debian
docs
dtd
freeswitch.xcodeproj
htdocs
libs
apr
apr-util
codec
curl
iksemel
js
libdingaling
libedit
doc
examples
patches
00-vis.h.patch
01-term.c.patch
02-el_term.h.patch
03-unvis.c.patch
04-strlcpy.c.patch
05-strlcat.c.patch
06-readline.c.patch
07-sys.h.patch
08-el.h.patch
09-search.c.patch
10-readline.h.patch
11-el.c.patch
12-history.c.patch
13-vis.c.patch
14-fgetln.c.patch
15-filecomplete.c.patch
16-tc1.c.patch
17-editline.3.roff.patch
18-editrc.5.roff.patch
README
cvs_export.sh
extra_dist_list.sh
patches_apply.sh
patches_check.sh
patches_make.sh
timestamp.cvsexport
update_dist.sh
update_version.sh
src
COPYING
ChangeLog
INSTALL
Makefile.am
THANKS
acinclude.m4
configure.ac
configure.gnu
libedit.pc.in
libresample
libsndfile
libteletone
pcre
portaudio
sofia-sip
spandsp
speex
sqlite
srtp
stfu
udns
voipcodecs
win32
xmlrpc-c
yaml
scripts
src
ssh_keys
support
w32
Freeswitch.2008.sln
Freeswitch.sln
INSTALL
Makefile.am
acinclude.m4
bootstrap.sh
configure.in
freeswitch.spec
51 lines
978 B
Bash
51 lines
978 B
Bash
![]() |
#!/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
|