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

« back to all changes in this revision

Viewing changes to src/plugins/accounting_storage/mysql/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:
6
6
 
7
7
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
8
8
 
 
9
if WITH_MYSQL
9
10
pkglib_LTLIBRARIES = accounting_storage_mysql.la
10
11
 
11
12
# Mysql storage plugin.
20
21
force:
21
22
$(accounting_storage_mysql_la_LIBADD) : force
22
23
        @cd `dirname $@` && $(MAKE) `basename $@`
 
24
else
 
25
EXTRA_accounting_storage_mysql_la_SOURCES = accounting_storage_mysql.c \
 
26
                mysql_jobacct_process.c mysql_jobacct_process.h \
 
27
                mysql_rollup.c mysql_rollup.h
 
28
endif