mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
7382cc71e6
parts of the library we have omitted. storage/bdb/dist/s_config: Change mode to -rw-r--r-- storage/bdb/dist/s_crypto: Change mode to -rw-r--r-- storage/bdb/dist/s_dir: Change mode to -rw-r--r-- storage/bdb/dist/s_include: Change mode to -rw-r--r-- storage/bdb/dist/s_java_const: Change mode to -rw-r--r-- storage/bdb/dist/s_java_stat: Change mode to -rw-r--r-- storage/bdb/dist/s_java_swig: Change mode to -rw-r--r-- storage/bdb/dist/s_javah: Change mode to -rw-r--r-- storage/bdb/dist/s_java: Change mode to -rw-r--r-- storage/bdb/dist/s_je2db: Change mode to -rw-r--r-- storage/bdb/dist/s_readme: Change mode to -rw-r--r-- storage/bdb/dist/s_rpc: Change mode to -rw-r--r-- storage/bdb/dist/s_test: Change mode to -rw-r--r-- storage/bdb/dist/s_vxworks: Change mode to -rw-r--r-- storage/bdb/dist/s_win32_dsp: Change mode to -rw-r--r-- storage/bdb/dist/s_win32: Change mode to -rw-r--r-- storage/bdb/dist/s_winmsi: Change mode to -rw-r--r-- storage/bdb/dist/s_all: Don't bother with VxWorks or Java stuff storage/bdb/dist/s_perm: Skip mod_db4 handling storage/bdb/dist/s_recover: Skip examples handling storage/bdb/dist/s_symlink: Skip examples handling storage/bdb/dist/s_tags: Skip test_perf handling BitKeeper/deleted/.del-build_all.dsp~8d55522d9eb8f029: Delete: storage/bdb/build_win32/build_all.dsp BitKeeper/deleted/.del-db_java_xa.dsp~dffbaca42fa2dc81: Delete: storage/bdb/build_win32/db_java_xa.dsp BitKeeper/deleted/.del-db_lib.dsp~4cc7531e4cd72267: Delete: storage/bdb/build_win32/db_lib.dsp BitKeeper/etc/ignore: Simplify some storage/bdb ignore rules storage/bdb/build_win32/small_dsp.src: New BitKeeper file ``storage/bdb/build_win32/small_dsp.src'' storage/bdb/build_win64/app_dsp.src: New BitKeeper file ``storage/bdb/build_win64/app_dsp.src'' storage/bdb/build_win64/db_test.src: New BitKeeper file ``storage/bdb/build_win64/db_test.src'' storage/bdb/build_win64/dynamic_dsp.src: New BitKeeper file ``storage/bdb/build_win64/dynamic_dsp.src'' storage/bdb/build_win64/ex_repquote.src: New BitKeeper file ``storage/bdb/build_win64/ex_repquote.src'' storage/bdb/build_win64/java_dsp.src: New BitKeeper file ``storage/bdb/build_win64/java_dsp.src'' storage/bdb/build_win64/libdbrc.src: New BitKeeper file ``storage/bdb/build_win64/libdbrc.src'' storage/bdb/build_win64/small_dsp.src: New BitKeeper file ``storage/bdb/build_win64/small_dsp.src'' storage/bdb/build_win64/srcfile_dsp.src: New BitKeeper file ``storage/bdb/build_win64/srcfile_dsp.src'' storage/bdb/build_win64/static_dsp.src: New BitKeeper file ``storage/bdb/build_win64/static_dsp.src'' storage/bdb/build_win64/tcl_dsp.src: New BitKeeper file ``storage/bdb/build_win64/tcl_dsp.src''
57 lines
1.6 KiB
Bash
Executable file
57 lines
1.6 KiB
Bash
Executable file
#!/bin/sh -
|
|
# $Id: s_symlink,v 1.32 2004/04/01 15:10:53 bostic Exp $
|
|
|
|
echo 'Creating Berkeley DB source tree symbolic links...'
|
|
|
|
build()
|
|
{
|
|
#echo " $1 -> $2"
|
|
(cd ../`dirname $1` && rm -f `basename $1` && ln -s $2 `basename $1`)
|
|
}
|
|
|
|
build btree/tags ../dist/tags
|
|
build build_unix/tags ../dist/tags
|
|
build clib/tags ../dist/tags
|
|
build common/tags ../dist/tags
|
|
build crypto/tags ../dist/tags
|
|
build cxx/tags ../dist/tags
|
|
build db/tags ../dist/tags
|
|
build db185/tags ../dist/tags
|
|
build db_archive/tags ../dist/tags
|
|
build db_checkpoint/tags ../dist/tags
|
|
build db_deadlock/tags ../dist/tags
|
|
build db_dump/tags ../dist/tags
|
|
build db_dump185/tags ../dist/tags
|
|
build db_load/tags ../dist/tags
|
|
build db_printlog/tags ../dist/tags
|
|
build db_recover/tags ../dist/tags
|
|
build db_stat/tags ../dist/tags
|
|
build db_upgrade/tags ../dist/tags
|
|
build db_verify/tags ../dist/tags
|
|
build dbinc/tags ../dist/tags
|
|
build dbinc_auto/tags ../dist/tags
|
|
build dbm/tags ../dist/tags
|
|
build dbreg/tags ../dist/tags
|
|
build env/tags ../dist/tags
|
|
#build examples_c/tags ../dist/tags
|
|
#build examples_cxx/tags ../dist/tags
|
|
build fileops/tags ../dist/tags
|
|
build hash/tags ../dist/tags
|
|
build hmac/tags ../dist/tags
|
|
build hsearch/tags ../dist/tags
|
|
build libdb_java/tags ../dist/tags
|
|
build lock/tags ../dist/tags
|
|
build log/tags ../dist/tags
|
|
build mp/tags ../dist/tags
|
|
build mutex/tags ../dist/tags
|
|
build os/tags ../dist/tags
|
|
build os_vxworks/tags ../dist/tags
|
|
build os_win32/tags ../dist/tags
|
|
build qam/tags ../dist/tags
|
|
build rep/tags ../dist/tags
|
|
build rpc_client/tags ../dist/tags
|
|
build rpc_server/tags ../dist/tags
|
|
build sequence/tags ../dist/tags
|
|
build tcl/tags ../dist/tags
|
|
build txn/tags ../dist/tags
|
|
build xa/tags ../dist/tags
|