diff options
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/changelog | 18 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 17e8bf7..eb2b185 100755 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -1,3 +1,21 @@ | |||
1 | vchat-client (0.19-1) unstable; urgency=high | ||
2 | |||
3 | * fixed version string display | ||
4 | * failing on SSL verify failures | ||
5 | * removed ignssl option | ||
6 | * reenabled ciphers options | ||
7 | * added verifyssl option (cert verify depth) | ||
8 | |||
9 | -- Andreas Kotes <count@flatline.de> Wed, 16 Apr 2014 15:12:23 +0200 | ||
10 | |||
11 | vchat-client (0.18-1) unstable; urgency=high | ||
12 | |||
13 | * updated to use TLSv1 or later | ||
14 | * improved SSL error reporting | ||
15 | * report SSL cipher used | ||
16 | |||
17 | -- Andreas Kotes <count@flatline.de> Tue, 15 Apr 2014 13:09:23 +0200 | ||
18 | |||
1 | vchat-client (0.15-2) unstable; urgency=low | 19 | vchat-client (0.15-2) unstable; urgency=low |
2 | 20 | ||
3 | * changed debian/rules using "make install" | 21 | * changed debian/rules using "make install" |
diff --git a/debian/rules b/debian/rules index 389c597..778533f 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -5,7 +5,7 @@ | |||
5 | #export DH_VERBOSE=1 | 5 | #export DH_VERBOSE=1 |
6 | 6 | ||
7 | # This is the debhelper compatability version to use. | 7 | # This is the debhelper compatability version to use. |
8 | export DH_COMPAT=3 | 8 | export DH_COMPAT=5 |
9 | 9 | ||
10 | configure: configure-stamp | 10 | configure: configure-stamp |
11 | configure-stamp: | 11 | configure-stamp: |
@@ -28,7 +28,7 @@ clean: | |||
28 | install: build | 28 | install: build |
29 | dh_testdir | 29 | dh_testdir |
30 | dh_testroot | 30 | dh_testroot |
31 | dh_clean -k | 31 | dh_prep |
32 | dh_installdirs | 32 | dh_installdirs |
33 | $(MAKE) install DESTDIR=$(CURDIR)/debian/vchat-client PREFIX=/usr | 33 | $(MAKE) install DESTDIR=$(CURDIR)/debian/vchat-client PREFIX=/usr |
34 | 34 | ||