~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

Viewing changes to plugin/daemon_example/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mto: (1.2.1) (37.1.1 lucid-security)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: package-import@ubuntu.com-20120222223355-ku1tb4r70osci6v2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 MySQL AB
 
1
# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
EXTRA_LTLIBRARIES =     libdaemon_example.la
28
28
pkgplugin_LTLIBRARIES = @plugin_daemon_example_shared_target@
29
29
libdaemon_example_la_LDFLAGS =  -module -rpath $(pkgplugindir)
30
 
libdaemon_example_la_CXXFLAGS=  $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
 
30
libdaemon_example_la_CXXFLAGS=  $(AM_CXXFLAGS) -DMYSQL_DYNAMIC_PLUGIN
31
31
libdaemon_example_la_CFLAGS =   $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
32
32
libdaemon_example_la_SOURCES =  daemon_example.cc
33
33
 
34
34
 
35
35
EXTRA_LIBRARIES =       libdaemon_example.a
36
36
noinst_LIBRARIES =      @plugin_daemon_example_static_target@
37
 
libdaemon_example_a_CXXFLAGS =  $(AM_CFLAGS)
 
37
libdaemon_example_a_CXXFLAGS =  $(AM_CXXFLAGS)
38
38
libdaemon_example_a_CFLAGS =    $(AM_CFLAGS)
39
39
libdaemon_example_a_SOURCES=    daemon_example.cc
40
40