OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [VER_5_3/] [gdb-5.3/] [opcodes/] [aclocal.m4] - Blame information for rev 1778

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1181 sfurman
dnl aclocal.m4 generated automatically by aclocal 1.4-p5
2
 
3
dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
4
dnl This file is free software; the Free Software Foundation
5
dnl gives unlimited permission to copy and/or distribute it,
6
dnl with or without modifications, as long as this notice is preserved.
7
 
8
dnl This program is distributed in the hope that it will be useful,
9
dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11
dnl PARTICULAR PURPOSE.
12
 
13
sinclude(../bfd/acinclude.m4)
14
 
15
dnl sinclude(../libtool.m4) already included in bfd/acinclude.m4
16
dnl The lines below arrange for aclocal not to bring libtool.m4
17
dnl AM_PROG_LIBTOOL into aclocal.m4, while still arranging for automake
18
dnl to add a definition of LIBTOOL to Makefile.in.
19
ifelse(yes,no,[
20
AC_DEFUN([AM_PROG_LIBTOOL],)
21
AC_DEFUN([AM_DISABLE_SHARED],)
22
AC_SUBST(LIBTOOL)
23
])
24
 
25
dnl sinclude(../gettext.m4) already included in bfd/acinclude.m4
26
ifelse(yes,no,[
27
AC_DEFUN([CY_WITH_NLS],)
28
AC_SUBST(INTLLIBS)
29
])
30
 
31
dnl AM_INSTALL_LIBBFD already included in bfd/acinclude.m4
32
ifelse(yes,no,[
33
AC_DEFUN([AM_INSTALL_LIBBFD],)
34
AC_SUBST(bfdlibdir)
35
AC_SUBST(bfdincludedir)
36
])
37
 
38
# Do all the work for Automake.  This macro actually does too much --
39
# some checks are only needed if your package does certain things.
40
# But this isn't really a big deal.
41
 
42
# serial 1
43
 
44
dnl Usage:
45
dnl AM_INIT_AUTOMAKE(package,version, [no-define])
46
 
47
AC_DEFUN([AM_INIT_AUTOMAKE],
48
[AC_REQUIRE([AC_PROG_INSTALL])
49
PACKAGE=[$1]
50
AC_SUBST(PACKAGE)
51
VERSION=[$2]
52
AC_SUBST(VERSION)
53
dnl test to see if srcdir already configured
54
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
55
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
56
fi
57
ifelse([$3],,
58
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
59
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
60
AC_REQUIRE([AM_SANITY_CHECK])
61
AC_REQUIRE([AC_ARG_PROGRAM])
62
dnl FIXME This is truly gross.
63
missing_dir=`cd $ac_aux_dir && pwd`
64
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
65
AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
66
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
67
AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
68
AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
69
AC_REQUIRE([AC_PROG_MAKE_SET])])
70
 
71
#
72
# Check to make sure that the build environment is sane.
73
#
74
 
75
AC_DEFUN([AM_SANITY_CHECK],
76
[AC_MSG_CHECKING([whether build environment is sane])
77
# Just in case
78
sleep 1
79
echo timestamp > conftestfile
80
# Do `set' in a subshell so we don't clobber the current shell's
81
# arguments.  Must try -L first in case configure is actually a
82
# symlink; some systems play weird games with the mod time of symlinks
83
# (eg FreeBSD returns the mod time of the symlink's containing
84
# directory).
85
if (
86
   set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
87
   if test "[$]*" = "X"; then
88
      # -L didn't work.
89
      set X `ls -t $srcdir/configure conftestfile`
90
   fi
91
   if test "[$]*" != "X $srcdir/configure conftestfile" \
92
      && test "[$]*" != "X conftestfile $srcdir/configure"; then
93
 
94
      # If neither matched, then we have a broken ls.  This can happen
95
      # if, for instance, CONFIG_SHELL is bash and it inherits a
96
      # broken ls alias from the environment.  This has actually
97
      # happened.  Such a system could not be considered "sane".
98
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
99
alias in your environment])
100
   fi
101
 
102
   test "[$]2" = conftestfile
103
   )
104
then
105
   # Ok.
106
   :
107
else
108
   AC_MSG_ERROR([newly created file is older than distributed files!
109
Check your system clock])
110
fi
111
rm -f conftest*
112
AC_MSG_RESULT(yes)])
113
 
114
dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
115
dnl The program must properly implement --version.
116
AC_DEFUN([AM_MISSING_PROG],
117
[AC_MSG_CHECKING(for working $2)
118
# Run test in a subshell; some versions of sh will print an error if
119
# an executable is not found, even if stderr is redirected.
120
# Redirect stdin to placate older versions of autoconf.  Sigh.
121
if ($2 --version) < /dev/null > /dev/null 2>&1; then
122
   $1=$2
123
   AC_MSG_RESULT(found)
124
else
125
   $1="$3/missing $2"
126
   AC_MSG_RESULT(missing)
127
fi
128
AC_SUBST($1)])
129
 
130
# Like AC_CONFIG_HEADER, but automatically create stamp file.
131
 
132
AC_DEFUN([AM_CONFIG_HEADER],
133
[AC_PREREQ([2.12])
134
AC_CONFIG_HEADER([$1])
135
dnl When config.status generates a header, we must update the stamp-h file.
136
dnl This file resides in the same directory as the config header
137
dnl that is generated.  We must strip everything past the first ":",
138
dnl and everything past the last "/".
139
AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
140
ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
141
<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
142
<<am_indx=1
143
for am_file in <<$1>>; do
144
  case " <<$>>CONFIG_HEADERS " in
145
  *" <<$>>am_file "*<<)>>
146
    echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
147
    ;;
148
  esac
149
  am_indx=`expr "<<$>>am_indx" + 1`
150
done<<>>dnl>>)
151
changequote([,]))])
152
 
153
# Add --enable-maintainer-mode option to configure.
154
# From Jim Meyering
155
 
156
# serial 1
157
 
158
AC_DEFUN([AM_MAINTAINER_MODE],
159
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
160
  dnl maintainer-mode is disabled by default
161
  AC_ARG_ENABLE(maintainer-mode,
162
[  --enable-maintainer-mode enable make rules and dependencies not useful
163
                          (and sometimes confusing) to the casual installer],
164
      USE_MAINTAINER_MODE=$enableval,
165
      USE_MAINTAINER_MODE=no)
166
  AC_MSG_RESULT($USE_MAINTAINER_MODE)
167
  AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
168
  MAINT=$MAINTAINER_MODE_TRUE
169
  AC_SUBST(MAINT)dnl
170
]
171
)
172
 
173
# Define a conditional.
174
 
175
AC_DEFUN([AM_CONDITIONAL],
176
[AC_SUBST($1_TRUE)
177
AC_SUBST($1_FALSE)
178
if $2; then
179
  $1_TRUE=
180
  $1_FALSE='#'
181
else
182
  $1_TRUE='#'
183
  $1_FALSE=
184
fi])
185
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.