- Timestamp:
- 11/24/13 23:24:56 (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r89 r97 1 AC_INIT([DRMAA for PBS Pro], [1.0.1 4], [mamonski@man.poznan.pl], [pbs-drmaa])1 AC_INIT([DRMAA for PBS Pro], [1.0.17], [mamonski@man.poznan.pl], [pbs-drmaa]) 2 2 AC_PREREQ(2.59) 3 3 AC_REVISION([$Id$]) … … 5 5 DRMAA for Torque/PBS Professional 6 6 Copyright (C) 2006-2009 FedStage Systems 7 Copyright (C) 2011 Poznan Supercomputing and Networking Center7 Copyright (C) 2011-2013 Poznan Supercomputing and Networking Center 8 8 9 9 This program is free software: you can redistribute it and/or modify … … 23 23 PBS_DRMAA_MAJOR=1 24 24 PBS_DRMAA_MINOR=0 25 PBS_DRMAA_MICRO=1 426 PBS_DRMAA_VERSION_INFO=1:1 4:025 PBS_DRMAA_MICRO=17 26 PBS_DRMAA_VERSION_INFO=1:17:0 27 27 AC_SUBST([PBS_DRMAA_MAJOR]) 28 28 AC_SUBST([PBS_DRMAA_MINOR]) … … 44 44 # programs: 45 45 AC_PROG_CC 46 AC_PROG_CXX 46 47 AC_PROG_CPP 47 48 AC_PROG_RANLIB -
trunk/m4/ax_pbs.m4
r15 r97 38 38 39 39 if test x"$with_pbs" != x; then 40 PBS_HOME=$with_pbs 40 41 PBS_INCLUDES="-I${with_pbs}/include " 41 42 PBS_LDFLAGS="-L${with_pbs}/lib " … … 50 51 fi 51 52 53 54 PBS_INCLUDES="$PBS_INCLUDES -I${PBS_HOME}/include/torque " 52 55 LDFLAGS_save="$LDFLAGS" 53 56 CPPFLAGS_save="$CPPFLAGS" … … 59 62 AH_TEMPLATE([PBS_PROFESSIONAL], [compiling against PBS Professional]) 60 63 AH_TEMPLATE([PBS_PROFESSIONAL_NO_LOG], [Do not use liblog while linking with PBS Professional]) 64 AH_TEMPLATE([HAVE_PBS_SUBMIT_HASH], [Torque 4 pbs_submit_hash function found]) 61 65 62 66 if test x"$enable_pbs_log" != "xno"; then … … 88 92 fi 89 93 94 ax_pbs_submit_hash="no" 90 95 91 96 if test x"$ax_pbs_ok" = xno; then … … 93 98 AC_CHECK_LIB([torque], [pbs_submit], [:], [ax_pbs_ok="no"]) 94 99 AC_CHECK_LIB([torque], [pbse_to_txt], [:], [ax_pbs_ok="no"]) 100 AC_CHECK_LIB([torque], [pbs_submit_hash], [AC_DEFINE(HAVE_PBS_SUBMIT_HASH) ax_pbs_submit_hash="yes"], [:]) 101 102 95 103 if test x"$ax_pbs_ok" = xyes; then 96 104 ax_pbs_libs="-ltorque" … … 99 107 AC_DEFINE(PBS_PROFESSIONAL,[1]) 100 108 fi 109 110 AM_CONDITIONAL([TORQUE4], [test x$ax_pbs_submit_hash = xyes]) 101 111 102 112 if test x"$ax_pbs_ok" = xyes; then -
trunk/pbs_drmaa/Makefile.am
r76 r97 32 32 util.c util.h \ 33 33 log_reader.c log_reader.h \ 34 pbs_conn.c pbs_conn.h 34 pbs_conn.c pbs_conn.h 35 if TORQUE4 36 libdrmaa_la_SOURCES += torque4.cpp torque4.h 37 endif 35 38 BUILT_SOURCES = pbs_attrib.c 36 39 EXTRA_DIST = pbs_attrib.c
Note: See TracChangeset
for help on using the changeset viewer.