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

« back to all changes in this revision

Viewing changes to src/database/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:
4
4
 
5
5
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
6
6
 
7
 
noinst_LTLIBRARIES =      \
8
 
        libslurm_mysql.la \
9
 
        libslurm_pgsql.la
10
 
 
 
7
if WITH_MYSQL
 
8
MYSQL_LIB = libslurm_mysql.la
11
9
libslurm_mysql_la_SOURCES = mysql_common.c mysql_common.h
 
10
libslurm_mysql_la_LIBADD   = $(MYSQL_LIBS)
 
11
libslurm_mysql_la_LDFLAGS  = $(LIB_LDFLAGS)
 
12
libslurm_mysql_la_CFLAGS = $(MYSQL_CFLAGS)
 
13
else
 
14
MYSQL_LIB =
 
15
EXTRA_libslurm_mysql_la_SOURCES = mysql_common.c mysql_common.h
 
16
endif
 
17
 
 
18
if WITH_PGSQL
 
19
PGSQL_LIB = libslurm_pgsql.la
12
20
libslurm_pgsql_la_SOURCES = pgsql_common.c pgsql_common.h
13
 
 
14
 
libslurm_mysql_la_LIBADD   = $(MYSQL_LIBS) 
15
21
libslurm_pgsql_la_LIBADD   = $(PGSQL_LIBS) 
16
 
 
17
 
libslurm_mysql_la_LDFLAGS  = $(LIB_LDFLAGS)
18
22
libslurm_pgsql_la_LDFLAGS  = $(LIB_LDFLAGS)
19
 
 
20
 
libslurm_mysql_la_CFLAGS = $(MYSQL_CFLAGS)
21
23
libslurm_pgsql_la_CFLAGS = $(PGSQL_CFLAGS)
 
24
else
 
25
PGSQL_LIB =
 
26
EXTRA_libslurm_pgsql_la_SOURCES = pgsql_common.c pgsql_common.h
 
27
endif
 
28
 
 
29
noinst_LTLIBRARIES = $(MYSQL_LIB) $(PGSQL_LIB)