File: AIX

package info (click to toggle)
ntop 3%3A3.3-11
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 12,772 kB
  • ctags: 7,534
  • sloc: ansic: 71,427; sh: 16,772; awk: 1,504; perl: 792; makefile: 782; php: 123; python: 23; sql: 13; sed: 11
file content (27 lines) | stat: -rwxr-xr-x 867 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

echo "        Setting IBM AIX specific flag values"

GCCLIB=`gcc -print-libgcc-file-name`
cp -f $GCCLIB .
LDFLAGS="-L. -lgcc ${LDFLAGS}"
CCLD="cc -bI:/lib/pse.exp"

echo
echo "*******************************************************************"
echo "*"
echo "* WARNING:    ntop does not presently offer any support for AIX"
echo "*"
echo "*             None of ntop's authors have access to any AIX"
echo "*             platform(s) so this is not expected to change"
echo "*"
echo "*             These settings are taken from old ntop versions"
echo "*             are are here to serve as a basis for providing"
echo "*             AIX support if somebody wanted to attempt the"
echo "*             work."
echo "*"
echo "*>>> Continuing, but you have been warned"
echo "*"
echo "*******************************************************************"
echo