代码搜索:Autoconf
找到约 8,642 项符合「Autoconf」的源代码
代码结果 8,642
www.eeworm.com/read/212967/15144302
bootstrap
#! /bin/sh
set -x
aclocal -I autotools
libtoolize --force --copy
autoheader
#add --include-deps if you want to bootstrap with any other compiler than gcc
#automake --add-missing --copy --include-deps
www.eeworm.com/read/169697/5414286
m4 aclocal.m4
dnl
dnl Borrowed (and altered) from Bill Gropp's confdb PAC_PROG_CHECK_INSTALL_WORKS.
dnl
dnl Fixes to bugs in AC_xxx macros
dnl
dnl MPD_AC_PROG_CHECK_INSTALL_WORKS - Check whether the install progra
www.eeworm.com/read/294538/8219984
bootstrap
#!/bin/sh
echo "bootstrapping (this may take a while)"
rm -rf build
mkdir build
aclocal &&
libtoolize &&
autoconf &&
autoheader &&
automake --add-missing --force-missing || exit
www.eeworm.com/read/292796/8333072
in atlocal.in
# -*- shell-script -*-
# @configure_input@
# Configurable variable values for Autoconf test suite.
# Copyright 2000, 2001 Free Software Foundation, Inc.
# We need Perl.
PERL='@PERL@'
www.eeworm.com/read/292796/8333169
am makefile.am
## Process this file with automake to create Makefile.in -*-Makefile-*-
## Makefile for Autoconf.
## Copyright 2001 Free Software Foundation, Inc.
## This program is free software; you can redistrib
www.eeworm.com/read/292796/8333252
am makefile.am
## Process this file with automake to create Makefile.in.
## Makefile for Autoconf.
## Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
## This program is free software; you can redist
www.eeworm.com/read/147315/12565167
gettext readme.gettext
In case you see a dump of your environment after running configure
or config.status you might want to either:
- downgrade to gettext-0.10.32 (maybe 33 or 34 will work too, but
i didn' test them)
- u
www.eeworm.com/read/134923/13970135
bootstrap
#! /bin/sh
set -x
libtoolize --force --copy
aclocal
autoheader
#add --include-deps if you want to bootstrap with any other compiler than gcc
#automake --add-missing --copy --include-deps
automake --a
www.eeworm.com/read/237003/13984155
m4 ax_dirname.m4
dnl @* AX_DIRNAME(PATHNAME)
dnl
dnl Parts of the implementation have been taken from AS_DIRNAME from the
dnl main autoconf package in generation 2.5x. However, we do only use
dnl "sed" to cut out the
www.eeworm.com/read/110174/15540733
sh autogen.sh
#!/bin/sh
#
aclocal
automake --foreign --include-deps --add-missing --copy
autoconf
#./configure $*
echo "Now you are ready to run ./configure"