radiusclient/fsl.radiusclient

Fri, 16 Jan 2009 10:58:21 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2009 10:58:21 +0100
changeset 92
645923d1e875
permissions
-rw-r--r--

Correct and improve code logic, buildconf, and packaging. In particular:
1. Use descriptive variable names <var>libs instead of just <var>.
2. Although Nokia states in all Qt builds that 'NOTE: When linking
against OpenSSL, you can override the default library names
through OPENSSL_LIBS.' and even gives an example, their own
configuration logic rejects such an attempt. Correct this by
hard coding the OpenSSL library string in the configure script.
3. Consistently use the whitespace substitution [\t ] throughout.
4. Patch the buggy INCPATH of SQL plugin Qmake project files.
5. Add the 'x11' configuration variable to the qtconfig Qmake
project using the src/gui/gui.pro file as a model. This is
needed for qtconfig although not in other tools, because
the qtconfig buildconf indirectly includes qt_x11_p.h which
is dependent on X11 headers.
6. Avoid 'ld.so: fatal: hardware capability unsupported: SSE2 AMD_3DNow'
on platforms for which the config.tests/unix/[3dnow|sse2] succeed
although unsopported at run time by testing for the x86-64
instruction set at build time and regulating hardware capabilities.
7. Correctly install the desinger plugin by explicitly building it.
8. Remove custom plugin installation logic which is unnecessary.
9. Correct removal of temporary paths from shared object files.

michael@18 1 ##
michael@18 2 ## fsl.arpwatch -- OSSP fsl configuration
michael@18 3 ##
michael@18 4
michael@18 5 ident (radexample)/.+ q{
michael@18 6 prefix(
michael@18 7 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 8 )
michael@18 9 -> {
michael@18 10 debug: file(
michael@18 11 path="@l_prefix@/var/radiusclient/radexample.log",
michael@18 12 perm=0644
michael@18 13 )
michael@18 14 }
michael@18 15 };
michael@18 16
michael@18 17 ident (radlogin)/.+ q{
michael@18 18 prefix(
michael@18 19 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 20 )
michael@18 21 -> {
michael@18 22 debug: file(
michael@18 23 path="@l_prefix@/var/radiusclient/radlogin.log",
michael@18 24 perm=0644
michael@18 25 )
michael@18 26 }
michael@18 27 };
michael@18 28
michael@18 29 ident (radstatus)/.+ q{
michael@18 30 prefix(
michael@18 31 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 32 )
michael@18 33 -> {
michael@18 34 debug: file(
michael@18 35 path="@l_prefix@/var/radiusclient/radstatus.log",
michael@18 36 perm=0644
michael@18 37 )
michael@18 38 }
michael@18 39 };
michael@18 40
michael@18 41 ident (radacct)/.+ q{
michael@18 42 prefix(
michael@18 43 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 44 )
michael@18 45 -> {
michael@18 46 debug: file(
michael@18 47 path="@l_prefix@/var/radiusclient/radacct.log",
michael@18 48 perm=0644
michael@18 49 )
michael@18 50 }
michael@18 51 };
michael@18 52

mercurial