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
RevLine 
[5]1#!/bin/sh
2#
[9]3# A script to configure torque. To support more than one release and different
[5]4# kernels.
5#
6# SVN INFO:
7#       $Id: conf_torque 2385 2006-11-03 07:20:35Z bas $
8#
9set -x
10
[55]11CFLAGS=" -D_FILE_OFFSET_BITS=64" ./configure --prefix=/usr \
[5]12        --includedir=/usr/include/torque \
13        --with-server-home=/var/spool/torque \
[86]14        --with-default-server=r35n1 \
[5]15        --with-tmpdir=/var/tmp \
[13]16        --with-pam=/lib/security \
[5]17        --with-xauth=/usr/bin/X11/xauth \
[86]18    --with-trqauthd-sock-dir=/var/run \
[5]19        --enable-syslog \
[50]20        --enable-blcr \
[5]21        --with-sched=c \
22        --with-sched-code=fifo \
23        --disable-gui \
24        --with-cflags=" -g -D__PNEWTTY" \
25        --enable-docs \
[67]26    --enable-drmaa \
[5]27        --with-rcp=scp
[57]28       
29
30#--without-loadlibfile \
Note: See TracBrowser for help on using the repository browser.