source: trunk/conf_torque @ 67

Last change on this file since 67 was 67, checked in by bas, 12 years ago

Added building of drmaa library.

File size: 653 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=`hostname` \
15        --with-tmpdir=/var/tmp \
16        --with-pam=/lib/security \
17        --with-xauth=/usr/bin/X11/xauth \
18        --enable-syslog \
19        --enable-blcr \
20        --with-sched=c \
21        --with-sched-code=fifo \
22        --disable-gui \
23        --with-cflags=" -g -D__PNEWTTY" \
24        --enable-docs \
25    --enable-drmaa \
26        --with-rcp=scp
27       
28
29#--without-loadlibfile \
Note: See TracBrowser for help on using the repository browser.