source: trunk/conf_torque @ 86

Last change on this file since 86 was 86, checked in by jaap, 9 years ago

Changed scripts to work with torque 5.0.1.

File size: 688 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
11CFLAGS=" -D_FILE_OFFSET_BITS=64" ./configure --prefix=/usr \
12        --includedir=/usr/include/torque \
13        --with-server-home=/var/spool/torque \
14        --with-default-server=r35n1 \
15        --with-tmpdir=/var/tmp \
16        --with-pam=/lib/security \
17        --with-xauth=/usr/bin/X11/xauth \
18    --with-trqauthd-sock-dir=/var/run \
19        --enable-syslog \
20        --enable-blcr \
21        --with-sched=c \
22        --with-sched-code=fifo \
23        --disable-gui \
24        --with-cflags=" -g -D__PNEWTTY" \
25        --enable-docs \
26    --enable-drmaa \
27        --with-rcp=scp
28       
29
30#--without-loadlibfile \
Note: See TracBrowser for help on using the repository browser.