~drizzle-trunk/drizzle/development

1823.5.1 by Monty Taylor
Updated pandora-build files to version 0.157
1
dnl Copyright (C) 2010 Monty Taylor
2
dnl Copyright (C) 2010 Hartmut Holzgraefe
3
dnl This file is free software; Monty Taylor and Hartmut Holzgraefe
4
dnl give unlimited permission to copy and/or distribute it,
5
dnl with or without modifications, as long as this notice is preserved.
6
7
AC_DEFUN([_PANDORA_SEARCH_FLEX],[
8
9
  dnl --------------------------------------------------------------------
10
  dnl  Check for flex
11
  dnl --------------------------------------------------------------------
12
1823.5.2 by Monty Taylor
Updated pandora-build files to version 0.158
13
  AC_CHECK_PROGS([LEX], ['flex'], [:])
1823.5.1 by Monty Taylor
Updated pandora-build files to version 0.157
14
  AS_IF([test "x$LEX" = "x:"],[
15
    pandora_have_flex=no
16
    LEX='if test -f "$@"; then echo "WARNING: no proper flex binary found, ignoring changes to $<"; exit 0; else echo "ERROR: no proper flex binary found"; exit 1; fi;'
17
    ],[
18
    pandora_have_flex=yes
19
    ])
20
21
  AM_CONDITIONAL(HAVE_FLEX, [test "x${pandora_have_flex}" = "xyes"])
22
])
23
24
AC_DEFUN([PANDORA_HAVE_FLEX],[
25
  AC_REQUIRE([_PANDORA_SEARCH_FLEX])
26
])
27
28
AC_DEFUN([PANDORA_REQUIRE_FLEX],[
29
  AC_REQUIRE([PANDORA_HAVE_FLEX])
30
  AS_IF([test "x${pandora_have_flex}" = "xno" -a "$pandora_building_from_bzr" = "yes"],
2221.1.8 by Monty Taylor
Adds ability to just build libdrizzle without needing all of the rest of the
31
      PANDORA_MSG_ERROR(["flex is required for ${PACKAGE} to build from a bzr branch"])
1823.5.2 by Monty Taylor
Updated pandora-build files to version 0.158
32
      )
1823.5.1 by Monty Taylor
Updated pandora-build files to version 0.157
33
])