18 lines
590 B
Bash
Executable File
18 lines
590 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Use this script to switch back to the previous Crypto++ version before
|
|
# building the docs. Before running the script, copy it to the root
|
|
# directory. After running this script, you can 'make docs'
|
|
|
|
sed 's|Library 8.2 API|Library 8.1 API|g' cryptlib.h > cryptlib.h.new
|
|
mv cryptlib.h.new cryptlib.h
|
|
|
|
sed 's|= 8.2|= 8.1|g' Doxyfile > Doxyfile.new
|
|
mv Doxyfile.new Doxyfile
|
|
|
|
sed 's|CRYPTOPP_MINOR 2|CRYPTOPP_MINOR 1|g' config.h > config.h.new
|
|
mv config.h.new config.h
|
|
|
|
sed 's|CRYPTOPP_VERSION 820|CRYPTOPP_VERSION 810|g' config.h > config.h.new
|
|
mv config.h.new config.h
|