blob: 33734bbdb1181206fe3b0f05e8e9c82d12694305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
= Compiling ACE+TAO Debian packages =
* ACE+TAO-src-<version>.tar.bz2 is retrieved from:
http://download.dre.vanderbilt.edu/previous_versions/
The -src version does not contain pre-generated Makefiles. They are
regenerated in the buid process.
-- Thomas Girard <thomas.g.girard@free.fr>, Sun, 24 Jul 2011 18:47:59 +0200
= New releases =
When preparing a new release, there are several things to remember:
- Regenerate the list of include files for libace-inet-dev and
libace-inet-ssl-dev:
From debian/tmp:
$ find . -type f | grep -vi https | grep -vi ssl --> These go to libace-inet-dev
The ones matching HTTPS or SSL go in libace-inet-ssl-dev.install:
usr/include/ace/INet/*SSL*
usr/include/ace/INet/*HTTPS*
But that might need updating if ACE_INet_SSL starts supporting FTPS or others
libace-inet-ssl-dev requires libace-inet-dev
Also, make sure none of the files in libace-inet-dev include anything from
libace-inet-ssl-dev. Test with:
From debian/tmp/usr/include/ace/INet:
$ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*ssl"
$ find . -type f | grep -vi https | grep -vi ssl | xargs -I {} grep -Hi "include.*https"
(both should return nothing)
|