~ubuntu-branches/ubuntu/natty/ntop/natty

« back to all changes in this revision

Viewing changes to configureextra/LINUXsuse

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2005-01-30 21:59:13 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050130215913-xc3ke963bw49b3k4
Tags: 2:3.0-5
* Updated README.Debian file so users will understand what to do at
  install, closes: #291794, #287802.
* Updated ntop init script to give better output.
* Also changed log directory from /var/lib/ntop to /var/log/ntop,
  closes: #252352.
* Quoted the interface list to allow whitespace, closes: #267248.
* Added a couple of logcheck ignores, closes: #269321, #269319.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
echo "        Setting SuSE specific flag values"
 
4
LDFLAGS="${LDFLAGS} -L/usr/X11R6/lib"
 
5
 
 
6
if ! test -f /usr/X11R6/lib/libXpm.so; then
 
7
    echo
 
8
    echo "*******************************************************************"
 
9
    echo "*"
 
10
    echo "*             -lXpm not found, because the libXpm.so file does not"
 
11
    echo "*             exist."
 
12
    echo "*"
 
13
    echo "*>>> Continuing, but subsequent make may fail"
 
14
    echo "*"
 
15
    echo "*???     1. As root, create the link:"
 
16
    echo "*???        ln -s /usr/X11R6/lib/libXpm.so.4 /usr/X11R6/lib/libXpm.so"
 
17
    echo "*"
 
18
    echo "*******************************************************************"
 
19
    echo
 
20
    HAS_WARNING="yes"
 
21
fi
 
22
if ! test -f /usr/X11R6/lib/libX11.so; then
 
23
    echo
 
24
    echo "*******************************************************************"
 
25
    echo "*"
 
26
    echo "*             -lX11 not found, because the libX11.so file does not"
 
27
    echo "*             exist."
 
28
    echo "*"
 
29
    echo "*>>> Continuing, but subsequent make may fail"
 
30
    echo "*"
 
31
    echo "*???     1. As root, create the link:"
 
32
    echo "*???        ln -s /usr/X11R6/lib/libX11.so.6.2 /usr/X11R6/lib/libX11.so"
 
33
    echo "*"
 
34
    echo "*******************************************************************"
 
35
    echo
 
36
    HAS_WARNING="yes"
 
37
fi