~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_canonical.m4

  • Committer: lbieber
  • Date: 2010-09-20 18:35:09 UTC
  • mfrom: (1779.1.4 build)
  • Revision ID: lbieber@orisndriz08-20100920183509-zjw31nf3f8clzu8k
Merge Joe - fix bug 641685 statement_transform.cc was not handling NULL values when dealing with NULL values.
Merge Shrews - fix bug 641687 - Quote ENUM values when building SQL from GPB Transaction messages.
Merge Monty - fix bug 549882 - Throw an error in configure from a bad --prefix value
Merge Monty - fix bug 565050 - Don't fail if root user runs drizzled --help

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
dnl with or without modifications, as long as this notice is preserved.
5
5
 
6
6
dnl Which version of the canonical setup we're using
7
 
AC_DEFUN([PANDORA_CANONICAL_VERSION],[0.154])
 
7
AC_DEFUN([PANDORA_CANONICAL_VERSION],[0.155])
8
8
 
9
9
AC_DEFUN([PANDORA_FORCE_DEPEND_TRACKING],[
10
10
  AC_ARG_ENABLE([fat-binaries],
23
23
  ])
24
24
])
25
25
 
 
26
AC_DEFUN([PANDORA_BLOCK_BAD_OPTIONS],[
 
27
  AS_IF([test "x${prefix}" = "x"],[
 
28
    AC_MSG_ERROR([--prefix requires an argument])
 
29
  ])
 
30
])
 
31
 
26
32
dnl The standard setup for how we build Pandora projects
27
33
AC_DEFUN([PANDORA_CANONICAL_TARGET],[
28
34
  AC_REQUIRE([PANDORA_FORCE_DEPEND_TRACKING])
66
72
    AC_CONFIG_HEADERS([config.h])
67
73
  ])
68
74
 
 
75
  PANDORA_BLOCK_BAD_OPTIONS
 
76
 
69
77
  # We need to prevent canonical target
70
78
  # from injecting -O2 into CFLAGS - but we won't modify anything if we have
71
79
  # set CFLAGS on the command line, since that should take ultimate precedence