~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-12-02 21:16:50 UTC
  • mto: This revision was merged to the branch mainline in revision 641.
  • Revision ID: mordred@solanthus.local-20081202211650-r0adnzw0v9hbke7b
Removed AM_CONDITIONAL from SEARCH_FOR_LIB. Aligned naming of AM_CONDITIONALS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
libyacc_la_CXXFLAGS = ${AM_CXXFLAGS} -Wno-unused-macros
286
286
 
287
287
 
288
 
if HAVE_DTRACE
 
288
if BUILD_DTRACE
289
289
drizzled_SOURCES += probes.d
290
290
endif
291
291
 
301
301
      -DLOCALEDIR=\"$(localedir)\" \
302
302
      @DEFS@
303
303
 
304
 
if GCC_PCH
 
304
if BUILD_GCC_PCH
305
305
PCHHEADERS = \
306
306
                definitions.h.gch \
307
307
                handlerton.h.gch  \
347
347
        sed "s/#include <unistd.h>//g" probes.h.bak > probes.h
348
348
        rm probes.h.bak
349
349
 
350
 
if GCC_PCH
 
350
if BUILD_GCC_PCH
351
351
%.h.gch: %.h
352
352
        $(CXXCOMPILE) -include config.h -Wno-unused-macros -c $<
353
353
endif