~ubuntu-branches/ubuntu/trusty/ntop/trusty

« back to all changes in this revision

Viewing changes to configureextra/LINUXslackware

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2008-06-15 14:38:28 UTC
  • mfrom: (2.1.11 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080615143828-oalh84nda2hje4do
Tags: 3:3.3-11
Correction of Polish translation encoding, closes: #479490. Thanks
to Christian Perrier <bubulle@debian.org> for the help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
echo "        Setting Slackware specific flag values"
4
 
 
5
 
# XML Dump plugin stuff... leeched from Burton
6
 
#  Note - this assumes you've installed the packages that include:
7
 
#         glib, glib-devel, libxml2, libxml2-devel
8
 
#         and the gdome2 and gdome2-devel from http://gdome2.cs.unibo.it/
9
 
if test -f /usr/lib/libglib.so; then
10
 
  LDFLAGS="${LDFLAGS} -lglib"
11
 
fi
12
 
if test -d /usr/include/libxml2/libxml; then
13
 
  CPPFLAGS="${CPPFLAGS} -I/usr/include/libxml2/libxml"
14
 
fi
15
 
if test -d /usr/include/glib-1.2; then
16
 
  CPPFLAGS="${CPPFLAGS} -I/usr/include/glib-1.2"
17
 
fi
18
 
if test -d /usr/lib/glib-1.2/include; then
19
 
  CPPFLAGS="${CPPFLAGS} -I/usr/lib/glib-1.2/include"
20
 
fi
21
 
if test -d /usr/include/libgdome; then
22
 
  CPPFLAGS="${CPPFLAGS} -I/usr/include/libgdome"
23
 
fi
24
 
if test -d /usr/lib/glib/include; then
25
 
  CPPFLAGS="${CPPFLAGS} -I/usr/lib/glib/include"
26
 
fi