Created
October 25, 2013 14:51
-
-
Save jaronson/7155915 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get -y install build-essential devscripts quilt | |
sudo apt-get -y build-dep openssl | |
apt-get source openssl | |
cd openssl-* | |
quilt pop -a # This removes updates | |
vi debian/patches/series # Remove no-ssl2.patch | |
vi debian/rules # Remove no-ssl2 in args | |
quilt push -a # Re-applies the updates | |
dch -n 'Allow dangerous v2 protocol' | |
dpkg-source –commit | |
debuild -uc -us | |
sudo dpkg -i ../*ssl*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment