~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/Makefile.am

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
LDADD = $(LIBINTL)
26
26
 
27
 
DEFS =                  @DEFS@ -DHAVE_MYSQL_CONFIG_H
 
27
DEFS =                  @DEFS@ -DHAVE_DRIZZLE_CONFIG_H
28
28
 
29
29
noinst_HEADERS =        ha_archive.h azio.h
30
30
noinst_PROGRAMS =       archive_test archive_reader archive_performance concurrency_test
32
32
EXTRA_LTLIBRARIES =     ha_archive.la
33
33
pkglib_LTLIBRARIES =    @plugin_archive_shared_target@
34
34
ha_archive_la_LDFLAGS = -module -rpath $(pkgplugindir) $(LDADD)
35
 
ha_archive_la_CXXFLAGS= $(AM_CXXFLAGS) -DMYSQL_DYNAMIC_PLUGIN
36
 
ha_archive_la_CFLAGS =  $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN 
 
35
ha_archive_la_CXXFLAGS= $(AM_CXXFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
 
36
ha_archive_la_CFLAGS =  $(AM_CFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN 
37
37
ha_archive_la_SOURCES = ha_archive.cc azio.c
38
38
 
39
39