~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Henrik Ingo
  • Date: 2011-10-04 20:01:12 UTC
  • mto: This revision was merged to the branch mainline in revision 2431.
  • Revision ID: henrik.ingo@avoinelama.fi-20111004200112-saqklktzedntsgef
This does 2 things:

1) Modify pandora-plugin to allow more keys in a plugin.ini. Until now
you could only specify headers, sources and extra-dist, but not
scripts (that are not compiled, just copied) or various text or data
files you wish to be part of an installation.

The new plugin.ini keys correspond to automake targets as follows:

# plugin.ini key
automake variable
-----------------
# scripts or bin_scripts
dist_bin_SCRIPTS=
# sbin_scripts
dist_sbin_SCRIPTS=
# libexec_scripts
dist_libexec_SCRIPTS=
# pkg_scripts
dist_pkgdata_SCRIPTS=
# data
dist_data_DATA=
# pkg_data
dist_pkgdata_DATA=
# sysconf_data
dist_sysconf_DATA=

2a) Uses the new keys pkg_scripts and pkg_data to move some useful
files from the auth_ldap plugin to ./share/drizzle7/ so an end user
can benefit from them without downloading Drizzle source codes.

2b) Also adds libdrizzle-2.0/libdrizzle/mysql_password_hash to programs
that should be installed and changes the name to drizzle_password_hash.
(Source filenames are unchanged. Makefile first builds mysql_password_hash
and then makes a copy to the final name. I didn't know if someone expects
mysql_password_hash to be there in some tests or something.)

The intent is to write documentation for LDAP authentication that uses
bin/drizzle_password_hash and share/drizzle7/* for creating LDAP user
records.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
ACLOCAL_AMFLAGS = -I m4 --force
17
17
 
18
18
# includes append to these:
 
19
# Pandora build system takes input from plugin.ini files that are appended to these
 
20
# Corresponding Pandora parameter names are mentioned in comments
 
21
# A few directory targets (libexec/ and etc/) are unused as of this writing and
 
22
# therefore commented out. pandora-build will support them if you uncomment.
19
23
SUFFIXES =
20
24
TESTS =
21
25
check_PROGRAMS =
 
26
# headers
22
27
noinst_HEADERS =
23
28
nobase_nodist_include_HEADERS =
24
29
nobase_dist_include_HEADERS =
25
30
dist_include_HEADERS =
26
31
nobase_nodist_pkginclude_HEADERS =
 
32
# install_headers
27
33
nobase_dist_pkginclude_HEADERS =
28
34
dist_pkginclude_HEADERS =
29
35
sbin_PROGRAMS =
35
41
man_MANS =
36
42
bin_PROGRAMS =
37
43
 
 
44
# scripts or bin_scripts
 
45
dist_bin_SCRIPTS=
 
46
# sbin_scripts
 
47
dist_sbin_SCRIPTS=
 
48
# libexec_scripts
 
49
#dist_libexec_SCRIPTS=
 
50
# pkg_scripts
 
51
dist_pkgdata_SCRIPTS=
 
52
# data
 
53
dist_data_DATA=
 
54
# pkg_data
 
55
dist_pkgdata_DATA=
 
56
# sysconf_data
 
57
#dist_sysconf_DATA=
 
58
 
38
59
VERSION=$(PANDORA_RELEASE_VERSION)
39
60
 
40
61
SUBDIRS = .