~ubuntu-branches/ubuntu/vivid/slurm-llnl/vivid

« back to all changes in this revision

Viewing changes to src/plugins/jobcomp/pgsql/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2009-09-24 23:28:15 UTC
  • mfrom: (1.1.11 upstream) (3.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090924232815-enh65jn32q1ebg07
Tags: 2.0.5-1
* New upstream release 
* Changed dependecy from lib-mysqlclient15 to lib-mysqlclient 
* Added Default-Start for runlevel 2 and 4 and $remote_fs requirement in
  init.d scripts (Closes: #541252)
* Postinst checks for wrong runlevels 2 and 4 links
* Upgraded to standard version 3.8.3
* Add lintian overrides for missing slurm-llnl-configurator.html in doc
  base registration
* modified postrm scripts to ignore pkill return value in order to avoid
  postrm failure when no slurm process is running
* Checking for slurmctld.pid before cancelling running and pending
  jobs during package removal 

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
9
9
 
 
10
if WITH_PGSQL
10
11
pkglib_LTLIBRARIES = jobcomp_pgsql.la
11
12
 
12
13
# Pgsql storage plugin.
17
18
jobcomp_pgsql_la_LIBADD  = $(top_builddir)/src/database/libslurm_pgsql.la \
18
19
        $(PGSQL_LIBS)
19
20
jobcomp_pgsql_la_DEPENDENCIES = $(top_builddir)/src/database/libslurm_pgsql.la
 
21
else
 
22
EXTRA_jobcomp_pgsql_la_SOURCES = jobcomp_pgsql.c \
 
23
                pgsql_jobcomp_process.c pgsql_jobcomp_process.h
 
24
endif