~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/pandora-plugin

  • Committer: Monty Taylor
  • Date: 2011-02-11 22:57:37 UTC
  • mto: (2165.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110211225737-zb9chwaonvklf94d
Provide pkg-config files and also stick drizzle plugin files in a place
where we don't conflict with our tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
 
135
135
noinst_HEADERS=
136
136
nobase_include_HEADERS=
 
137
nobase_pkginclude_HEADERS=
137
138
check_PROGRAMS=
138
139
noinst_LTLIBRARIES=
139
140
bin_PROGRAMS=
143
144
  if plugin['headers'] != "":
144
145
    plugin_file.write("noinst_HEADERS += %(headers)s\n" % plugin)
145
146
  if plugin['install_headers'] != "":
146
 
    plugin_file.write("nobase_include_HEADERS += %(install_headers)s\n" % plugin)
 
147
    plugin_file.write("nobase_pkginclude_HEADERS += %(install_headers)s\n" % plugin)
147
148
  if plugin['testsuite']:
148
149
    if plugin.has_key('testsuitedir') and plugin['testsuitedir'] != "":
149
150
      plugin_file.write("EXTRA_DIST += %(testsuitedir)s\n" % plugin)
533
534
  if plugin['headers'] != "":
534
535
    plugin_am.write("noinst_HEADERS += %(headers)s\n" % plugin)
535
536
  if plugin['install_headers'] != "":
536
 
    plugin_am.write("nobase_include_HEADERS += %(install_headers)s\n" % plugin)
 
537
    plugin_am.write("nobase_pkginclude_HEADERS += %(install_headers)s\n" % plugin)
537
538
  if plugin['testsuite']:
538
539
    if plugin.has_key('testsuitedir') and plugin['testsuitedir'] != "":
539
540
      plugin_am.write("EXTRA_DIST += %(rel_path)s/%(testsuitedir)s\n" % plugin)