~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/md5/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-12-22 22:58:12 UTC
  • mto: (722.2.17 devel)
  • mto: This revision was merged to the branch mainline in revision 733.
  • Revision ID: mordred@camelot.inaugust.com-20081222225812-0jeczy5no8hmt9zm
Fixed: error compiling with the MD5 plugin on mac.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# along with this program; if not, write to the Free Software
14
14
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
15
 
16
 
AM_CPPFLAGS = ${GLOBAL_CPPFLAGS} $(openssl_includes)
 
16
AM_CPPFLAGS = ${GLOBAL_CPPFLAGS} $(SSL_CFLAGS)
17
17
 
18
18
if BUILD_MD5_UDF
19
 
EXTRA_LTLIBRARIES =     libmd5udf.la
20
 
pkgplugin_LTLIBRARIES = @plugin_md5_shared_target@
21
 
libmd5udf_la_LDFLAGS =  -module -avoid-version -rpath $(pkgplugindir) -L/opt/csw/lib -lssl
22
 
libmd5udf_la_CXXFLAGS=  -DDRIZZLE_DYNAMIC_PLUGIN
23
 
libmd5udf_la_SOURCES =  md5udf.cc
24
 
 
25
 
EXTRA_LIBRARIES =       libmd5udf.a
26
 
noinst_LIBRARIES =      @plugin_md5_static_target@
27
 
libmd5udf_a_SOURCES=    $(libmd5udf_la_SOURCES)
 
19
EXTRA_LTLIBRARIES=      libmd5udf.la
 
20
pkgplugin_LTLIBRARIES=  $(plugin_md5_static_target)
 
21
libmd5udf_la_LDFLAGS=   -module -avoid-version -rpath $(pkgplugindir)
 
22
libmd5udf_la_LIBADD=    $(CRYPTO_LIBS)
 
23
libmd5udf_la_SOURCES=   md5udf.cc
28
24
endif