~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-12-20 23:44:07 UTC
  • mto: (722.2.2 devel)
  • mto: This revision was merged to the branch mainline in revision 727.
  • Revision ID: monty@inaugust.com-20081220234407-585wdrdd1vxqqzam
Removed all the setting of DEFS everywhere. Use configmake.h to get the values
we need.

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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
15
 
16
 
MYSQLDATAdir =          $(localstatedir)
17
 
MYSQLSHAREdir =         $(pkgdatadir)
18
 
MYSQLBASEdir=           $(prefix)
19
16
 
20
17
noinst_LTLIBRARIES =    libmysys.la
21
18
 
120
117
                typelib.cc \
121
118
                ${thr_mutex_source}
122
119
 
123
 
DEFS=           -DDEFAULT_BASEDIR=\"$(prefix)\" \
124
 
                -DDATADIR="\"$(MYSQLDATAdir)\"" \
125
 
                -DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \
126
 
                -DSHAREDIR="\"$(MYSQLSHAREdir)\"" \
127
 
                -DDEFAULT_HOME_ENV=DRIZZLE_HOME \
128
 
                -DDEFAULT_GROUP_SUFFIX_ENV=DRIZZLE_GROUP_SUFFIX \
129
 
                -DDEFAULT_SYSCONFDIR="\"$(sysconfdir)\"" \
130
 
                @DEFS@
131
120