source: trunk/conf_torque @ 47

Last change on this file since 47 was 13, checked in by adi, 17 years ago

Changed location of PAM modules from /lib64 to /lib.

On Debian, /lib64 is a symlink to /lib provided by libc6,
so having package files in /lib64 would prevent libc6
from upgrades.

See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=367962
for more information.

File size: 1002 bytes
Line 
1#!/bin/sh
2#
3# A script to configure torque. To support more than one release and different
4# kernels.
5#
6# SVN INFO:
7#       $Id: conf_torque 2385 2006-11-03 07:20:35Z bas $
8#
9set -x
10
11
12if [ -f torque_oldconfigure ]
13then
14  LIBS="-lutil" ./configure --prefix=/usr \
15        --libdir=/usr/lib/torque \
16        --includedir=/usr/include/torque \
17        --set-server-home=/var/spool/torque \
18        --set-tmpdir=/var/tmp \
19        --enable-syslog \
20        --set-sched=c \
21        --set-sched-code=fifo \
22        --set-default-server=localhost \
23        --disable-gui \
24        --set-cflags=" -g -D__PNEWTTY" \
25        --enable-docs \
26        --with-scp
27else
28 CFLAGS=" -D_FILE_OFFSET_BITS=64" ./configure --prefix=/usr \
29        --includedir=/usr/include/torque \
30        --with-server-home=/var/spool/torque \
31        --with-default-server=`hostname` \
32        --with-tmpdir=/var/tmp \
33        --with-pam=/lib/security \
34        --with-xauth=/usr/bin/X11/xauth \
35        --enable-syslog \
36        --with-sched=c \
37        --with-sched-code=fifo \
38        --disable-gui \
39        --with-cflags=" -g -D__PNEWTTY" \
40        --enable-docs \
41        --with-rcp=scp
42fi
43
44#--libdir=/usr/lib \
Note: See TracBrowser for help on using the repository browser.