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

« back to all changes in this revision

Viewing changes to configureextra/LINUXfedora

  • 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
# Clone from RedHat 9 - assuming Fedora is approx RedHat 10...
 
4
 
 
5
echo "        Setting Fedora specific flag values"
 
6
CPPFLAGS="-DHAVE_FILEDESCRIPTORBUG ${CPPFLAGS}"
 
7
 
 
8
# If we have krb5.h and openssl was compiled with it, we need the -I setting
 
9
# since there's no way to easily test the latter and no harm from an extra -I,
 
10
# just do it...
 
11
if test -d /usr/kerberos/include &&
 
12
   test -f /usr/kerberos/include/krb5.h; then
 
13
    CPPFLAGS="-I/usr/kerberos/include/ ${CPPFLAGS}"
 
14
fi
 
15