~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_http/Makefile.am

  • Committer: Mark Atwood
  • Date: 2009-04-08 01:22:11 UTC
  • mto: (971.1.71 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: me@mark.atwood.name-20090408012211-rpoz0fem4exqt247
add auth_http plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if BUILD_AUTH_HTTP
 
2
 
 
3
EXTRA_LTLIBRARIES = libauth_http.la
 
4
pkgplugin_LTLIBRARIES = @plugin_auth_http_shared_target@
 
5
libauth_http_la_LDFLAGS = -module -avoid-version -rpath $(pkgplugindir)
 
6
libauth_http_la_CPPFLAGS = $(AM_CPPFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
 
7
libauth_http_la_SOURCES = auth_http.cc
 
8
 
 
9
EXTRA_LIBRARIES = libauth_http.a
 
10
noinst_LIBRARIES = @plugin_auth_http_static_target@
 
11
libauth_http_a_SOURCES = $(libauth_http_la_SOURCES)
 
12
 
 
13
endif