X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=debian%2FREADME.Debian;h=bcf631002d27db54424d1ae72be6c5405ef0be78;hb=HEAD;hp=437aa3d81070d545fbd43c5eedf7db3a04e0d9f1;hpb=fd5677c5ebf2035148fe1d5b970514edef82e3fd;p=senf.git diff --git a/debian/README.Debian b/debian/README.Debian index 437aa3d..bcf6310 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -2,14 +2,17 @@ Th SENF debian distribution consists of the following packages: libsenf non-debug static library /usr/lib/libsenf.a - /usr/lib/senf-packets/ + /usr/lib/senf/*.o libsenf-dbg debug static library /usr/lib/libsenf_g.a - /usr/lib/debug/senf-packets/ + /usr/lib/senf/*_g.o libsenf-dev include files /usr/include/senf + /usr/lib/senf/site_scons + /usr/bin - libsenf-doc documentation /usr/share/doc/libsenf-doc/ + libsenf-doc documentation /usr/share/doc/libsenf-doc/html + /usr/share/doc/libsenf-doc/examples So to develop using SENF, you will need 'libsenf-dev' and one of @@ -17,14 +20,14 @@ So to develop using SENF, you will need 'libsenf-dev' and one of both, 'libsenf' and 'libsenf-dbg'. To compile an application against the debug library, just link against -the libsenf_g.a library. +the libsenf_g.a library AND ENSURE the preprocessor symbol +'SENF_DEBUG' is defined. To compile an application against the non-debug library, link against -libsenf.a AND ENSURE, THE PREPROCESSOR SYMBOL 'SENF_NO_DEBUG' IS -DEFINED in your build, best by adding '-DSENF_NO_DEBUG' to CPPFLAGS. +libsenf.a. Lets repeat that: - VERY IMPORTANT: When building against libsenf.a, you MUST define - SENF_NO_DEBUG. Don't say, you haven't been warned ... + VERY IMPORTANT: When building against libsenf_g.a, you MUST define + SENF_DEBUG. Don't say, you haven't been warned ...