Changes in aclocal.m4 [9def87a:ee51534]
- File:
-
- 1 edited
-
aclocal.m4 (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
aclocal.m4
r9def87a ree51534 60 60 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) 61 61 62 # Figure out how to run the assembler. -*- Autoconf -*-63 64 # Copyright (C) 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.65 #66 # This file is free software; the Free Software Foundation67 # gives unlimited permission to copy and/or distribute it,68 # with or without modifications, as long as this notice is preserved.69 70 # serial 571 72 # AM_PROG_AS73 # ----------74 AC_DEFUN([AM_PROG_AS],75 [# By default we simply use the C compiler to build assembly code.76 AC_REQUIRE([AC_PROG_CC])77 test "${CCAS+set}" = set || CCAS=$CC78 test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS79 AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)])80 AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])81 _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl82 ])83 84 62 # AM_AUX_DIR_EXPAND -*- Autoconf -*- 85 63 … … 135 113 # expand $ac_aux_dir to an absolute path 136 114 am_aux_dir=`cd $ac_aux_dir && pwd` 137 ])138 139 # AM_COND_IF -*- Autoconf -*-140 141 # Copyright (C) 2008, 2010 Free Software Foundation, Inc.142 #143 # This file is free software; the Free Software Foundation144 # gives unlimited permission to copy and/or distribute it,145 # with or without modifications, as long as this notice is preserved.146 147 # serial 3148 149 # _AM_COND_IF150 # _AM_COND_ELSE151 # _AM_COND_ENDIF152 # --------------153 # These macros are only used for tracing.154 m4_define([_AM_COND_IF])155 m4_define([_AM_COND_ELSE])156 m4_define([_AM_COND_ENDIF])157 158 159 # AM_COND_IF(COND, [IF-TRUE], [IF-FALSE])160 # ---------------------------------------161 # If the shell condition COND is true, execute IF-TRUE, otherwise execute162 # IF-FALSE. Allow automake to learn about conditional instantiating macros163 # (the AC_CONFIG_FOOS).164 AC_DEFUN([AM_COND_IF],165 [m4_ifndef([_AM_COND_VALUE_$1],166 [m4_fatal([$0: no such condition "$1"])])dnl167 _AM_COND_IF([$1])dnl168 if test -z "$$1_TRUE"; then :169 m4_n([$2])[]dnl170 m4_ifval([$3],171 [_AM_COND_ELSE([$1])dnl172 else173 $3174 ])dnl175 _AM_COND_ENDIF([$1])dnl176 fi[]dnl177 115 ]) 178 116
Note:
See TracChangeset
for help on using the changeset viewer.