[lwatch-cvs] files README,1.8,1.9
Brought to you by:
arturcz
|
From: <ar...@us...> - 2003-03-26 12:13:23
|
Update of /cvsroot/lwatch/files In directory sc8-pr-cvs1:/tmp/cvs-serv11924 Modified Files: README Log Message: - some OS specific info (Solaris) Index: README =================================================================== RCS file: /cvsroot/lwatch/files/README,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** README 25 Mar 2003 16:25:39 -0000 1.8 --- README 26 Mar 2003 12:13:10 -0000 1.9 *************** *** 34,37 **** --- 34,58 ---- inform me how you compiled/linked lwatch. + In most cases (assume, that you have required libriaries) + ./configure + make + make install + should work. If not can set following environment variables: + - CPPFLAGS specifies additional directories where headers files are searched + - LDFLAGS specifies additional directories where libraries are searched + - LIBS specifies additional libraries which lwatch should be linked with(FIXME) + + If you have a includes/libraries in non-standard directories you can run + (for example): + CPPFLAGS="-I/opt/include" LDFLAGS="-L/opt/lib" ./configure + CPPFLAGS="-I/opt/include" LDFLAGS="-L/opt/lib" make + make install + + If you have non-standard library which contains (i.e.) getopt_long run: + LIBS="-lgnugetopt" ./configure + LIBS="-lgnugetopt" make + + Set also CPPFLAGS and LDFLAGS if needed + Default input file is /dev/lwatch. You can change it running: configure --enable-input=/other/file *************** *** 47,53 **** ============================================ ! * Cygwin. ! I received info about compiling and running lwatch under Cygwin but I do not ! know any details. * FreeBSD --- 68,74 ---- ============================================ ! * Cygwin ! Bartek Tomczak told me that lwatch compiles and runs on cygwin without ! any problemes. You can contact him at FIXME * FreeBSD *************** *** 57,60 **** --- 78,88 ---- * Linux No additional packages required. + + * Solaris - not tested + Read http://sources.redhat.com/ml/automake/2000-08/msg00013.html + and try: + LIBS="-liberty" ./configure + LIBS="-liberty" make + and, please, notify me is it works. * MS Windows |