Mercurial > masqmail
annotate docs/howto-static-linking @ 354:08932c629849
reworked the route concept; removed the idea of the localnet
Renamed to reflect the actual meaning more clearly:
s/online_routes/query_routes/g
s/local_net_route/permanent_routes/g
Removed local_nets, which are now represented by allowed_recipients
in a permanent route. (See. examples/localnet.route)
There is no more abiguity between `local' and `local net'.
Run admin/config-transition on your config to learn how to update it.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Sun, 04 Sep 2011 11:25:38 +0200 |
parents | 5cecc214afc9 |
children |
rev | line source |
---|---|
202 | 1 Howto link masqmail statically? |
2 ------------------------------- | |
3 | |
4 With gcc (don't know anything about other compilers), you simply | |
5 build masqmail with: | |
6 | |
7 LDFLAGS=-static make -e | |
8 | |
9 | |
10 On Debian GNU/Linux, I received a bunch warnings of that kind: | |
11 | |
12 interface.o: In function `init_sockaddr': | |
13 interface.c:55: warning: Using 'gethostbyname' in statically | |
14 linked applications requires at runtime the shared libraries | |
15 from the glibc version used for linking | |
16 | |
17 On NetBSD I no warnings were printed. | |
18 | |
19 I don't have enough knowledge to tell the reasons and implications. | |
20 Maybe you can. | |
21 | |
22 | |
23 | |
24 meillo |