head	1.5;
access;
symbols
	rpm-4_4_8-release:1.3.2.2
	rpm-4_4_7-release:1.3.2.2
	db-4_5_20:1.5
	rpm-4_4_6-release:1.3.2.1
	rpm-4_4_5-release:1.3.2.1
	db-4_4_20:1.4
	rpm-4_4_4-release:1.3.2.1
	db-4_4_16:1.4
	rpm-4_4_3-release:1.3.2.1
	db-4_4_11:1.4
	db-4_3_29:1.3
	jbj_before_tklcpatches:1.3
	rpm-4_4_2-release:1.3
	pjones-sparse-experiment:1.4.0.2
	db-4_4_4:1.4
	rpm-4_4_1-release:1.3
	db-4_3_27:1.3
	rpm-4_4-release:1.3
	rpm-4_4:1.3.0.2
	db-4_3_21:1.3
	db-4_3_14:1.3
	db-4_2_52:1.2
	rpm-4_3_1-start:1.2
	rpm-4_3:1.2.0.2
	rpm-4_2_1-release:1.1.1.2
	rpm-4_1_1-release:1.1.1.2
	rpm-4_2-release:1.1.1.2
	rpm-4_2:1.1.1.2.0.2
	postmerge-db-4_1_24-release:1.1.1.2
	premerge-db-4_1_24-release:1.1.1.2
	db-4_1_24-release:1.1.1.2
	pre-db-4_1_24-release:1.1.1.1
	postmerge-db-4_1_17:1.1.1.1
	pre-db-4_1_17:1.1.1.1
	premerge-db-4_1_17:1.1.1.1
	db-4_1_17:1.1.1.1
	db-3_2_9-vendor:1.1.1;
locks; strict;
comment	@# @;
expand	@o@;


1.5
date	2006.10.01.20.18.54;	author jbj;	state Exp;
branches;
next	1.4;

1.4
date	2005.02.21.15.53.57;	author jbj;	state Exp;
branches;
next	1.3;

1.3
date	2004.10.16.01.31.55;	author jbj;	state Exp;
branches
	1.3.2.1;
next	1.2;

1.2
date	2003.12.15.21.42.41;	author jbj;	state Exp;
branches;
next	1.1;

1.1
date	2002.08.14.16.31.56;	author jbj;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2002.08.14.16.31.56;	author jbj;	state Exp;
branches;
next	1.1.1.2;

1.1.1.2
date	2002.09.19.20.33.51;	author jbj;	state Exp;
branches;
next	;

1.3.2.1
date	2005.10.28.18.44.32;	author jbj;	state Exp;
branches;
next	1.3.2.2;

1.3.2.2
date	2006.10.01.22.29.21;	author jbj;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Update to db-4.5.20.
@
text
@#!/bin/sh -
#	$Id: s_crypto,v 12.1 2005/12/01 03:24:24 bostic Exp $

# Remove crypto from the DB source tree.

d=..

t=/tmp/__db_a
trap 'rm -f $t ; exit 0' 0
trap 'rm -f $t ; exit 1' 1 2 3 13 15

if ! test -d $d/crypto; then
	echo "s_crypto: no crypto sources found in the source tree."
	exit 1
fi

# Remove the crypto.
rm -rf $d/crypto

# Update the release splash page.
f=$d/docs/index.html
chmod 664 $f
(echo '/DOES/' &&
 echo 's/DOES/DOES NOT/' &&
 echo 'w' &&
 echo 'q') | ed $f

# Win/32.
f=win_config.in
chmod 664 $f
(echo '/#define.HAVE_CRYPTO/' &&
 echo 'c' &&
 echo '/* #undef HAVE_CRYPTO */'
 echo '.' &&
 echo 'w' &&
 echo 'q') | ed $f

f=srcfiles.in
chmod 664 $f
(echo 'g/^crypto\//d' &&
 echo '/crypto_stub\.c/' &&
 echo 's/small/dynamic small static vx/' &&
 echo 'w' &&
 echo 'q') | ed $f

 sh ./s_windows
 sh ./s_windows_dsp

# VxWorks
f=vx_config.in
chmod 664 $f
(echo '/#define.HAVE_CRYPTO/' &&
 echo 'c' &&
 echo '/* #undef HAVE_CRYPTO */'
 echo '.' &&
 echo 'w' &&
 echo 'q') | ed $f

 sh ./s_vxworks
@


1.4
log
@Upgrade to db-4.4.4.
@
text
@d2 1
a2 1
#	$Id: s_crypto,v 12.0 2004/11/17 03:43:35 bostic Exp $
d46 2
a47 2
 sh ./s_win32
 sh ./s_win32_dsp
@


1.3
log
@... and in with the New ...
@
text
@d2 1
a2 1
#	$Id: s_crypto,v 11.8 2003/11/24 22:41:26 bostic Exp $
@


1.3.2.1
log
@Update to db-4.4.11.
@
text
@d2 1
a2 1
#	$Id: s_crypto,v 12.0 2004/11/17 03:43:35 bostic Exp $
@


1.3.2.2
log
@Merge db-4.5.20 onto rpm-4_4 branch.
@
text
@d2 1
a2 1
#	$Id: s_crypto,v 12.1 2005/12/01 03:24:24 bostic Exp $
d46 2
a47 2
 sh ./s_windows
 sh ./s_windows_dsp
@


1.2
log
@- upgrade to db-4.2.52.
@
text
@@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
#	Id: s_crypto,v 11.2 2002/03/26 23:07:52 bostic Exp 
d18 9
a26 1
rm -rf $d/crypto			# Remove the crypto.
d29 2
d36 1
a36 1
 echo 'q') | ed $d/build_win32/db_config.h
d38 5
a42 1
(echo '1,$s/^\(^crypto[^	]*	*\)\(.*\)/\1skip/' &&
d44 1
a44 1
 echo 'q') | ed ./srcfiles.in
d50 2
d57 1
a57 1
 echo 'q') | ed $d/build_vxworks/db_config.h
a58 2
 cp vx_2.0/filelist $t
 sed '/^crypto/d' < $t > vx_2.0/filelist
@


1.1.1.1
log
@track: auto import
@
text
@@


1.1.1.2
log
@track: auto import
@
text
@d2 1
a2 1
#	Id: s_crypto,v 11.5 2002/09/13 13:14:14 bostic Exp 
d18 1
a18 9
rm -rf $d/crypto

# Update the docs.
f=$d/docs/ref/env/encrypt.html
chmod 664 $f
(echo '/DOES/' &&
 echo 's/DOES/DOES NOT/' &&
 echo 'w' &&
 echo 'q') | ed $f
a20 2
f=win_config.in
chmod 664 $f
d26 1
a26 1
 echo 'q') | ed $f
d28 1
a28 3
f=srcfiles.in
chmod 664 $f
(echo 'g/^crypto\//d' &&
d30 1
a30 1
 echo 'q') | ed $f
a35 2
f=vx_config.in
chmod 664 $f
d41 1
a41 1
 echo 'q') | ed $f
d43 2
@

