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