Changeset 10335 for trunk


Ignore:
Timestamp:
04/10/11 10:00:07 (14 years ago)
Author:
tbretz
Message:
Updated with latest changes in configure.ac.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/aclocal.m4

    r10209 r10335  
    19161916# expand $ac_aux_dir to an absolute path
    19171917am_aux_dir=`cd $ac_aux_dir && pwd`
     1918])
     1919
     1920# AM_COND_IF                                            -*- Autoconf -*-
     1921
     1922# Copyright (C) 2008 Free Software Foundation, Inc.
     1923#
     1924# This file is free software; the Free Software Foundation
     1925# gives unlimited permission to copy and/or distribute it,
     1926# with or without modifications, as long as this notice is preserved.
     1927
     1928# serial 1
     1929
     1930# _AM_COND_IF
     1931# _AM_COND_ELSE
     1932# _AM_COND_ENDIF
     1933# --------------
     1934# These macros are only used for tracing.
     1935m4_define([_AM_COND_IF])
     1936m4_define([_AM_COND_ELSE])
     1937m4_define([_AM_COND_ENDIF])
     1938
     1939
     1940# AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])
     1941# ---------------------------------------
     1942# If the shell condition matching COND is true, execute IF-TRUE,
     1943# otherwise execute IF-FALSE.  Allow automake to learn about conditional
     1944# instantiating macros (the AC_CONFIG_FOOS).
     1945AC_DEFUN([AM_COND_IF],
     1946[m4_ifndef([_AM_COND_VALUE_$1],
     1947           [m4_fatal([$0: no such condition "$1"])])dnl
     1948_AM_COND_IF([$1])dnl
     1949if _AM_COND_VALUE_$1; then
     1950  m4_default([$2], [:])
     1951m4_ifval([$3],
     1952[_AM_COND_ELSE([$1])dnl
     1953else
     1954  $3
     1955])dnl
     1956_AM_COND_ENDIF([$1])dnl
     1957fi[]dnl
    19181958])
    19191959
     
    28212861]) # _AM_PROG_TAR
    28222862
     2863m4_include([.macro_dir/ac_check_package.m4])
    28232864m4_include([.macro_dir/ac_check_readline.m4])
    28242865m4_include([.macro_dir/ac_find_motif.m4])
Note: See TracChangeset for help on using the changeset viewer.