Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 720450
Collapse All | Expand All

(-)a/Makefile.in (-3 / +5 lines)
Lines 279-287 CTAGS = ctags Link Here
279
CSCOPE = cscope
279
CSCOPE = cscope
280
DIST_SUBDIRS = support . extension extras doc awklib po test
280
DIST_SUBDIRS = support . extension extras doc awklib po test
281
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/configh.in ABOUT-NLS \
281
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/configh.in ABOUT-NLS \
282
	AUTHORS COPYING ChangeLog INSTALL NEWS README TODO awkgram.c \
282
	AUTHORS COPYING ChangeLog INSTALL NEWS README TODO ar-lib \
283
	command.c compile config.guess config.rpath config.sub depcomp \
283
	awkgram.c command.c compile config.guess config.rpath \
284
	install-sh missing mkinstalldirs ylwrap
284
	config.sub depcomp install-sh missing mkinstalldirs ylwrap
285
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
285
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
286
distdir = $(PACKAGE)-$(VERSION)
286
distdir = $(PACKAGE)-$(VERSION)
287
top_distdir = $(distdir)
287
top_distdir = $(distdir)
Lines 330-335 pkgdatadir = $(datadir)/awk Link Here
330
ACLOCAL = @ACLOCAL@
330
ACLOCAL = @ACLOCAL@
331
AMTAR = @AMTAR@
331
AMTAR = @AMTAR@
332
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
332
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
333
AR = @AR@
333
AUTOCONF = @AUTOCONF@
334
AUTOCONF = @AUTOCONF@
334
AUTOHEADER = @AUTOHEADER@
335
AUTOHEADER = @AUTOHEADER@
335
AUTOMAKE = @AUTOMAKE@
336
AUTOMAKE = @AUTOMAKE@
Lines 407-412 abs_builddir = @abs_builddir@ Link Here
407
abs_srcdir = @abs_srcdir@
408
abs_srcdir = @abs_srcdir@
408
abs_top_builddir = @abs_top_builddir@
409
abs_top_builddir = @abs_top_builddir@
409
abs_top_srcdir = @abs_top_srcdir@
410
abs_top_srcdir = @abs_top_srcdir@
411
ac_ct_AR = @ac_ct_AR@
410
ac_ct_CC = @ac_ct_CC@
412
ac_ct_CC = @ac_ct_CC@
411
acl_shlibext = @acl_shlibext@
413
acl_shlibext = @acl_shlibext@
412
am__include = @am__include@
414
am__include = @am__include@
(-)a/aclocal.m4 (+60 lines)
Lines 56-61 m4_ifndef([AC_AUTOCONF_VERSION], Link Here
56
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
56
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
57
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
57
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
58
58
59
# Copyright (C) 2011-2020 Free Software Foundation, Inc.
60
#
61
# This file is free software; the Free Software Foundation
62
# gives unlimited permission to copy and/or distribute it,
63
# with or without modifications, as long as this notice is preserved.
64
65
# AM_PROG_AR([ACT-IF-FAIL])
66
# -------------------------
67
# Try to determine the archiver interface, and trigger the ar-lib wrapper
68
# if it is needed.  If the detection of archiver interface fails, run
69
# ACT-IF-FAIL (default is to abort configure with a proper error message).
70
AC_DEFUN([AM_PROG_AR],
71
[AC_BEFORE([$0], [LT_INIT])dnl
72
AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl
73
AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
74
AC_REQUIRE_AUX_FILE([ar-lib])dnl
75
AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false])
76
: ${AR=ar}
77
78
AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface],
79
  [AC_LANG_PUSH([C])
80
   am_cv_ar_interface=ar
81
   AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])],
82
     [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
83
      AC_TRY_EVAL([am_ar_try])
84
      if test "$ac_status" -eq 0; then
85
        am_cv_ar_interface=ar
86
      else
87
        am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD'
88
        AC_TRY_EVAL([am_ar_try])
89
        if test "$ac_status" -eq 0; then
90
          am_cv_ar_interface=lib
91
        else
92
          am_cv_ar_interface=unknown
93
        fi
94
      fi
95
      rm -f conftest.lib libconftest.a
96
     ])
97
   AC_LANG_POP([C])])
98
99
case $am_cv_ar_interface in
100
ar)
101
  ;;
102
lib)
103
  # Microsoft lib, so override with the ar-lib wrapper script.
104
  # FIXME: It is wrong to rewrite AR.
105
  # But if we don't then we get into trouble of one sort or another.
106
  # A longer-term fix would be to have automake use am__AR in this case,
107
  # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something
108
  # similar.
109
  AR="$am_aux_dir/ar-lib $AR"
110
  ;;
111
unknown)
112
  m4_default([$1],
113
             [AC_MSG_ERROR([could not determine $AR interface])])
114
  ;;
115
esac
116
AC_SUBST([AR])dnl
117
])
118
59
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
119
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
60
120
61
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
121
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
(-)a/ar-lib (+1 lines)
Line 0 Link Here
1
/usr/share/automake-1.16/ar-lib
(-)a/awklib/Makefile.in (+2 lines)
Lines 202-207 pkglibexecdir = $(libexecdir)/awk Link Here
202
ACLOCAL = @ACLOCAL@
202
ACLOCAL = @ACLOCAL@
203
AMTAR = @AMTAR@
203
AMTAR = @AMTAR@
204
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
204
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
205
AR = @AR@
205
AUTOCONF = @AUTOCONF@
206
AUTOCONF = @AUTOCONF@
206
AUTOHEADER = @AUTOHEADER@
207
AUTOHEADER = @AUTOHEADER@
207
AUTOMAKE = @AUTOMAKE@
208
AUTOMAKE = @AUTOMAKE@
Lines 279-284 abs_builddir = @abs_builddir@ Link Here
279
abs_srcdir = @abs_srcdir@
280
abs_srcdir = @abs_srcdir@
280
abs_top_builddir = @abs_top_builddir@
281
abs_top_builddir = @abs_top_builddir@
281
abs_top_srcdir = @abs_top_srcdir@
282
abs_top_srcdir = @abs_top_srcdir@
283
ac_ct_AR = @ac_ct_AR@
282
ac_ct_CC = @ac_ct_CC@
284
ac_ct_CC = @ac_ct_CC@
283
acl_shlibext = @acl_shlibext@
285
acl_shlibext = @acl_shlibext@
284
am__include = @am__include@
286
am__include = @am__include@
(-)a/configure (+175 lines)
Lines 662-667 USE_NLS Link Here
662
SED
662
SED
663
ZOS_FAIL
663
ZOS_FAIL
664
acl_shlibext
664
acl_shlibext
665
ac_ct_AR
666
AR
665
RANLIB
667
RANLIB
666
LN_S
668
LN_S
667
YFLAGS
669
YFLAGS
Lines 5506-5511 $as_echo "no" >&6; } Link Here
5506
fi
5508
fi
5507
5509
5508
5510
5511
# support/ builds libsupport.a
5512
if test -n "$ac_tool_prefix"; then
5513
  for ac_prog in ar lib "link -lib"
5514
  do
5515
    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
5516
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
5517
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5518
$as_echo_n "checking for $ac_word... " >&6; }
5519
if ${ac_cv_prog_AR+:} false; then :
5520
  $as_echo_n "(cached) " >&6
5521
else
5522
  if test -n "$AR"; then
5523
  ac_cv_prog_AR="$AR" # Let the user override the test.
5524
else
5525
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5526
for as_dir in $PATH
5527
do
5528
  IFS=$as_save_IFS
5529
  test -z "$as_dir" && as_dir=.
5530
    for ac_exec_ext in '' $ac_executable_extensions; do
5531
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5532
    ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
5533
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5534
    break 2
5535
  fi
5536
done
5537
  done
5538
IFS=$as_save_IFS
5539
5540
fi
5541
fi
5542
AR=$ac_cv_prog_AR
5543
if test -n "$AR"; then
5544
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
5545
$as_echo "$AR" >&6; }
5546
else
5547
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5548
$as_echo "no" >&6; }
5549
fi
5550
5551
5552
    test -n "$AR" && break
5553
  done
5554
fi
5555
if test -z "$AR"; then
5556
  ac_ct_AR=$AR
5557
  for ac_prog in ar lib "link -lib"
5558
do
5559
  # Extract the first word of "$ac_prog", so it can be a program name with args.
5560
set dummy $ac_prog; ac_word=$2
5561
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5562
$as_echo_n "checking for $ac_word... " >&6; }
5563
if ${ac_cv_prog_ac_ct_AR+:} false; then :
5564
  $as_echo_n "(cached) " >&6
5565
else
5566
  if test -n "$ac_ct_AR"; then
5567
  ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
5568
else
5569
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
5570
for as_dir in $PATH
5571
do
5572
  IFS=$as_save_IFS
5573
  test -z "$as_dir" && as_dir=.
5574
    for ac_exec_ext in '' $ac_executable_extensions; do
5575
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
5576
    ac_cv_prog_ac_ct_AR="$ac_prog"
5577
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
5578
    break 2
5579
  fi
5580
done
5581
  done
5582
IFS=$as_save_IFS
5583
5584
fi
5585
fi
5586
ac_ct_AR=$ac_cv_prog_ac_ct_AR
5587
if test -n "$ac_ct_AR"; then
5588
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
5589
$as_echo "$ac_ct_AR" >&6; }
5590
else
5591
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5592
$as_echo "no" >&6; }
5593
fi
5594
5595
5596
  test -n "$ac_ct_AR" && break
5597
done
5598
5599
  if test "x$ac_ct_AR" = x; then
5600
    AR="false"
5601
  else
5602
    case $cross_compiling:$ac_tool_warned in
5603
yes:)
5604
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
5605
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
5606
ac_tool_warned=yes ;;
5607
esac
5608
    AR=$ac_ct_AR
5609
  fi
5610
fi
5611
5612
: ${AR=ar}
5613
5614
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5
5615
$as_echo_n "checking the archiver ($AR) interface... " >&6; }
5616
if ${am_cv_ar_interface+:} false; then :
5617
  $as_echo_n "(cached) " >&6
5618
else
5619
  ac_ext=c
5620
ac_cpp='$CPP $CPPFLAGS'
5621
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5622
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5623
ac_compiler_gnu=$ac_cv_c_compiler_gnu
5624
5625
   am_cv_ar_interface=ar
5626
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5627
/* end confdefs.h.  */
5628
int some_variable = 0;
5629
_ACEOF
5630
if ac_fn_c_try_compile "$LINENO"; then :
5631
  am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5'
5632
      { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5
5633
  (eval $am_ar_try) 2>&5
5634
  ac_status=$?
5635
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
5636
  test $ac_status = 0; }
5637
      if test "$ac_status" -eq 0; then
5638
        am_cv_ar_interface=ar
5639
      else
5640
        am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5'
5641
        { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5
5642
  (eval $am_ar_try) 2>&5
5643
  ac_status=$?
5644
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
5645
  test $ac_status = 0; }
5646
        if test "$ac_status" -eq 0; then
5647
          am_cv_ar_interface=lib
5648
        else
5649
          am_cv_ar_interface=unknown
5650
        fi
5651
      fi
5652
      rm -f conftest.lib libconftest.a
5653
5654
fi
5655
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5656
   ac_ext=c
5657
ac_cpp='$CPP $CPPFLAGS'
5658
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5659
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5660
ac_compiler_gnu=$ac_cv_c_compiler_gnu
5661
5662
fi
5663
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5
5664
$as_echo "$am_cv_ar_interface" >&6; }
5665
5666
case $am_cv_ar_interface in
5667
ar)
5668
  ;;
5669
lib)
5670
  # Microsoft lib, so override with the ar-lib wrapper script.
5671
  # FIXME: It is wrong to rewrite AR.
5672
  # But if we don't then we get into trouble of one sort or another.
5673
  # A longer-term fix would be to have automake use am__AR in this case,
5674
  # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something
5675
  # similar.
5676
  AR="$am_aux_dir/ar-lib $AR"
5677
  ;;
5678
unknown)
5679
  as_fn_error $? "could not determine $AR interface" "$LINENO" 5
5680
  ;;
5681
esac
5682
5683
5509
# This is mainly for my use during testing and development.
5684
# This is mainly for my use during testing and development.
5510
# Yes, it's a bit of a hack.
5685
# Yes, it's a bit of a hack.
5511
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for special development options" >&5
5686
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for special development options" >&5
(-)a/configure.ac (+3 lines)
Lines 105-110 AC_EXEEXT Link Here
105
AC_PROG_INSTALL
105
AC_PROG_INSTALL
106
AC_PROG_MAKE_SET
106
AC_PROG_MAKE_SET
107
107
108
# support/ builds libsupport.a
109
AM_PROG_AR
110
108
# This is mainly for my use during testing and development.
111
# This is mainly for my use during testing and development.
109
# Yes, it's a bit of a hack.
112
# Yes, it's a bit of a hack.
110
AC_MSG_CHECKING([for special development options])
113
AC_MSG_CHECKING([for special development options])
(-)a/doc/Makefile.in (+2 lines)
Lines 230-235 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) Link Here
230
ACLOCAL = @ACLOCAL@
230
ACLOCAL = @ACLOCAL@
231
AMTAR = @AMTAR@
231
AMTAR = @AMTAR@
232
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
232
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
233
AR = @AR@
233
AUTOCONF = @AUTOCONF@
234
AUTOCONF = @AUTOCONF@
234
AUTOHEADER = @AUTOHEADER@
235
AUTOHEADER = @AUTOHEADER@
235
AUTOMAKE = @AUTOMAKE@
236
AUTOMAKE = @AUTOMAKE@
Lines 307-312 abs_builddir = @abs_builddir@ Link Here
307
abs_srcdir = @abs_srcdir@
308
abs_srcdir = @abs_srcdir@
308
abs_top_builddir = @abs_top_builddir@
309
abs_top_builddir = @abs_top_builddir@
309
abs_top_srcdir = @abs_top_srcdir@
310
abs_top_srcdir = @abs_top_srcdir@
311
ac_ct_AR = @ac_ct_AR@
310
ac_ct_CC = @ac_ct_CC@
312
ac_ct_CC = @ac_ct_CC@
311
acl_shlibext = @acl_shlibext@
313
acl_shlibext = @acl_shlibext@
312
am__include = @am__include@
314
am__include = @am__include@
(-)a/extras/Makefile.in (+2 lines)
Lines 187-192 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) Link Here
187
ACLOCAL = @ACLOCAL@
187
ACLOCAL = @ACLOCAL@
188
AMTAR = @AMTAR@
188
AMTAR = @AMTAR@
189
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
189
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
190
AR = @AR@
190
AUTOCONF = @AUTOCONF@
191
AUTOCONF = @AUTOCONF@
191
AUTOHEADER = @AUTOHEADER@
192
AUTOHEADER = @AUTOHEADER@
192
AUTOMAKE = @AUTOMAKE@
193
AUTOMAKE = @AUTOMAKE@
Lines 264-269 abs_builddir = @abs_builddir@ Link Here
264
abs_srcdir = @abs_srcdir@
265
abs_srcdir = @abs_srcdir@
265
abs_top_builddir = @abs_top_builddir@
266
abs_top_builddir = @abs_top_builddir@
266
abs_top_srcdir = @abs_top_srcdir@
267
abs_top_srcdir = @abs_top_srcdir@
268
ac_ct_AR = @ac_ct_AR@
267
ac_ct_CC = @ac_ct_CC@
269
ac_ct_CC = @ac_ct_CC@
268
acl_shlibext = @acl_shlibext@
270
acl_shlibext = @acl_shlibext@
269
am__include = @am__include@
271
am__include = @am__include@
(-)a/support/Makefile.in (-1 / +2 lines)
Lines 133-139 CONFIG_HEADER = $(top_builddir)/config.h Link Here
133
CONFIG_CLEAN_FILES =
133
CONFIG_CLEAN_FILES =
134
CONFIG_CLEAN_VPATH_FILES =
134
CONFIG_CLEAN_VPATH_FILES =
135
LIBRARIES = $(noinst_LIBRARIES)
135
LIBRARIES = $(noinst_LIBRARIES)
136
AR = ar
137
ARFLAGS = cru
136
ARFLAGS = cru
138
AM_V_AR = $(am__v_AR_@AM_V@)
137
AM_V_AR = $(am__v_AR_@AM_V@)
139
am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
138
am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
Lines 208-213 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) Link Here
208
ACLOCAL = @ACLOCAL@
207
ACLOCAL = @ACLOCAL@
209
AMTAR = @AMTAR@
208
AMTAR = @AMTAR@
210
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
209
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
210
AR = @AR@
211
AUTOCONF = @AUTOCONF@
211
AUTOCONF = @AUTOCONF@
212
AUTOHEADER = @AUTOHEADER@
212
AUTOHEADER = @AUTOHEADER@
213
AUTOMAKE = @AUTOMAKE@
213
AUTOMAKE = @AUTOMAKE@
Lines 285-290 abs_builddir = @abs_builddir@ Link Here
285
abs_srcdir = @abs_srcdir@
285
abs_srcdir = @abs_srcdir@
286
abs_top_builddir = @abs_top_builddir@
286
abs_top_builddir = @abs_top_builddir@
287
abs_top_srcdir = @abs_top_srcdir@
287
abs_top_srcdir = @abs_top_srcdir@
288
ac_ct_AR = @ac_ct_AR@
288
ac_ct_CC = @ac_ct_CC@
289
ac_ct_CC = @ac_ct_CC@
289
acl_shlibext = @acl_shlibext@
290
acl_shlibext = @acl_shlibext@
290
am__include = @am__include@
291
am__include = @am__include@
(-)a/test/Makefile.in (-1 / +2 lines)
Lines 157-162 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) Link Here
157
ACLOCAL = @ACLOCAL@
157
ACLOCAL = @ACLOCAL@
158
AMTAR = @AMTAR@
158
AMTAR = @AMTAR@
159
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
159
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
160
AR = @AR@
160
AUTOCONF = @AUTOCONF@
161
AUTOCONF = @AUTOCONF@
161
AUTOHEADER = @AUTOHEADER@
162
AUTOHEADER = @AUTOHEADER@
162
AUTOMAKE = @AUTOMAKE@
163
AUTOMAKE = @AUTOMAKE@
Lines 234-239 abs_builddir = @abs_builddir@ Link Here
234
abs_srcdir = @abs_srcdir@
235
abs_srcdir = @abs_srcdir@
235
abs_top_builddir = @abs_top_builddir@
236
abs_top_builddir = @abs_top_builddir@
236
abs_top_srcdir = @abs_top_srcdir@
237
abs_top_srcdir = @abs_top_srcdir@
238
ac_ct_AR = @ac_ct_AR@
237
ac_ct_CC = @ac_ct_CC@
239
ac_ct_CC = @ac_ct_CC@
238
acl_shlibext = @acl_shlibext@
240
acl_shlibext = @acl_shlibext@
239
am__include = @am__include@
241
am__include = @am__include@
240
- 

Return to bug 720450