summaryrefslogtreecommitdiff
path: root/ACE/debian/README.source
blob: f975b7c97c238b4a268f65acc9513d3b087f7d75 (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
41
42
= 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:

 - Update patch 34-bts386713 (change soversions)

 - 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)