Skip to content

Commit e401d8d

Browse files
author
IgnorantGuru
committed
autogen 0.4.2
1 parent b59f396 commit e401d8d

File tree

10 files changed

+599
-591
lines changed

10 files changed

+599
-591
lines changed

INSTALL

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation Instructions
22
*************************
33

4-
Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
4+
Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
55
Inc.
66

77
Copying and distribution of this file, with or without modification,
@@ -309,9 +309,10 @@ causes the specified `gcc' to be used as the C compiler (unless it is
309309
overridden in the site shell script).
310310

311311
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
312-
an Autoconf bug. Until the bug is fixed you can use this workaround:
312+
an Autoconf limitation. Until the limitation is lifted, you can use
313+
this workaround:
313314

314-
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
315+
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
315316

316317
`configure' Invocation
317318
======================
@@ -367,4 +368,3 @@ operates.
367368

368369
`configure' also accepts some other, not widely useful, options. Run
369370
`configure --help' for more details.
370-

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
8282
$(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8383
$(top_srcdir)/configure $(am__configure_deps) \
8484
$(srcdir)/config.h.in mkinstalldirs COPYING compile \
85-
config.guess config.sub depcomp install-sh missing ltmain.sh
85+
config.guess config.sub install-sh missing ltmain.sh
8686
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8787
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
8888
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \

compile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#! /bin/sh
22
# Wrapper for compilers which do not understand '-c -o'.
33

4-
scriptversion=2012-03-05.13; # UTC
4+
scriptversion=2012-10-14.11; # UTC
55

6-
# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free
7-
# Software Foundation, Inc.
6+
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
87
# Written by Tom Tromey <tromey@cygnus.com>.
98
#
109
# This program is free software; you can redistribute it and/or modify
@@ -113,6 +112,11 @@ func_cl_dashl ()
113112
lib=$dir/$lib.lib
114113
break
115114
fi
115+
if test -f "$dir/lib$lib.a"; then
116+
found=yes
117+
lib=$dir/lib$lib.a
118+
break
119+
fi
116120
done
117121
IFS=$save_IFS
118122

0 commit comments

Comments
 (0)