Displaying 20 results from an estimated 37 matches for "ac_prog_install".
1999 Dec 28
1
Patch to detect perl using autoconf
...don't have perl at /usr/bin/perl, fixpaths doesn't run.
I've added a check in configure.in to find where perl is and use it to
run fixpaths. Here's the patch:
--- configure.in.orig Mon Dec 27 23:09:36 1999
+++ configure.in Tue Dec 28 10:16:05 1999
@@ -9,6 +9,7 @@
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_CHECK_PROG(AR, ar, ar)
+AC_CHECK_PROG(PERL, perl, perl)
AC_PATH_PROG(xauth_path, xauth)
dnl Use ip address instead of hostname in $DISPLAY
--- Makefile.in.orig Tue Dec 28 10:22:27 1999
+++ Makefile.in Tue Dec 28 10:23:54 1999
@@ -25,6 +25,7 @@
AR=@AR@
RANLIB=@RANLIB@
INSTALL=@INSTALL@
+P...
2014 Nov 20
2
building NUT on Mac OS X Yosemite
...sn't thinking that it needed to be solved soon - we can build the website and documentation on Linux systems for now.
@aquette
considering the context and limited impact, we could simply check for gsort first, and then sort.
--- a/configure.ac
+++ b/configure.ac
@@ -101,6 +101,7 @@ AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_EGREP
AC_PATH_PROG(AR, ar)
+AC_CHECK_PROGS(SORT, gsort sort)
AC_CHECK_TOOL(RANLIB, ranlib, :)
dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib
AC_C_BIGENDIAN
@JeanPerriault could you please test the above snippet? (apply using 'patch -p0 < /path/to/patch', from...
2006 Feb 03
3
OpenSSH_4.3p1 configure patch
...RAP,;t t
s, at LIBEDIT@,$LIBEDIT,;t t
s, at LIBPAM@,$LIBPAM,;t t
diff -ru openssh-4.3p1/configure.ac openssh/configure.ac
--- openssh-4.3p1/configure.ac 2006-01-29 05:22:39.000000000 -0800
+++ openssh/configure.ac 2006-02-02 16:10:29.540763142 -0800
@@ -27,6 +27,7 @@
AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_INSTALL
+AC_PROG_EGREP
AC_PATH_PROG(AR, ar)
AC_PATH_PROG(CAT, cat)
AC_PATH_PROG(KILL, kill)
@@ -1832,7 +1833,7 @@
[AC_LANG_SOURCE([[
#include <string.h>
#include <openssl/evp.h>
-int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL)}
+int main(void) { exit(EVP_aes...
2014 Nov 20
0
building NUT on Mac OS X Yosemite (website/documentation)
...be solved soon - we can build the website and documentation on Linux systems for now.
>
> @aquette
> considering the context and limited impact, we could simply check for gsort first, and then sort.
> --- a/configure.ac
> +++ b/configure.ac
> @@ -101,6 +101,7 @@ AC_PROG_CXX
> AC_PROG_INSTALL
> AC_PROG_EGREP
> AC_PATH_PROG(AR, ar)
> +AC_CHECK_PROGS(SORT, gsort sort)
> AC_CHECK_TOOL(RANLIB, ranlib, :)
> dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib
> AC_C_BIGENDIAN
Just to clarify, the sort error is only when building nut-website:
sort: stray cha...
2019 Mar 03
0
[ANNOUNCE] xmore 1.0.3
...onor NOCONFIGURE=1
Update README for gitlab migration
Update configure.ac bug URL for gitlab migration
xmore 1.0.3
Emil Velikov (1):
autogen.sh: use quoted string variables
Gaetan Nadon (7):
Change xmore DocBook XML file extension from .sgml to .xml
config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
man: remove trailing spaces and tabs
config: move man pages into their own directory
man page: add __xo...
2001 Feb 05
1
Minor configure.in check
...n it
steps into openbsd-compat/. I've not heard of this bug before but this
is the following fix. Any particle reason for us not to commit this?
- Ben
--- ../openssh/configure.in Sat Feb 3 17:04:03 2001
+++ configure.in Mon Feb 5 13:24:41 2001
@@ -8,7 +8,7 @@
AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_INSTALL
-AC_CHECK_PROG(AR, ar, ar)
+AC_PATH_PROG(AR, ar)
AC_PATH_PROG(PERL, perl)
AC_SUBST(PERL)
AC_PATH_PROG(ENT, ent)
2013 Sep 19
0
[PATCH] also look for host-prefixed ar
...y
that the former calls AC_SUBST.
Applies to OpenSSH portable 6.3p1
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 4a1b503..460addd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,7 +30,7 @@ AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_PROG_EGREP
-AC_PATH_PROG([AR], [ar])
+AC_CHECK_TOOLS([AR], [ar])
AC_PATH_PROG([CAT], [cat])
AC_PATH_PROG([KILL], [kill])
AC_PATH_PROGS([PERL], [perl5 perl])
--
1.8.4
2002 Jul 19
1
R-devel Mac OSX build wierdness...
I encountered some wierdness when building R-devel (latest rsync) on OSX
using commandline tools (as opposed to the Carbon GUI and
whatnot...probably just laziness on my part but it generally works :-)).
At any rate, sometime between 2002-07-05 and the present the configure
scripts started setting INSTALL_DATA to ${R_HOME}/bin/install -c in
Makeconf...which causes wierdness for the Mac OSX
2018 Jul 31
0
[ANNOUNCE] fonttosfnt 1.0.5
...re missing/incorrect #24206
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
config: move CWARNFLAGS from configure.ac to Makefile.am
config: update AC_PREREQ statement to 2.60
config: upgrade to util-macros 1.8 for additional man page support
config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
config: remove unrequired AC_SUBST([*_CFLAGS])
config: remove unrequired AC_SUBST([*_LIBS])
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
man: remove trail...
2012 Apr 13
1
[PATCH] libxl/build: print a pretty message if flex/bison are needed but not found
...2 ++
tools/libxl/Makefile | 16 ++++++++++++++--
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/tools/configure.ac b/tools/configure.ac
index 3da0c82..8ccdc92 100644
--- a/tools/configure.ac
+++ b/tools/configure.ac
@@ -75,6 +75,8 @@ AC_PROG_CC
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_INSTALL
+AC_PATH_PROG([BISON], [bison])
+AC_PATH_PROG([FLEX], [flex])
AX_PATH_PROG_OR_FAIL([PERL], [perl])
AS_IF([test "x$xapi" = "xy"], [
AX_PATH_PROG_OR_FAIL([CURL], [curl-config])
diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile
index ac8b810..e8ec8e9 100644
--- a/tool...
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
...f -up --recursive --new-file openssh-3.6.1p2.macro/configure.ac openssh-3.6.1p2/configure.ac
--- openssh-3.6.1p2.macro/configure.ac 2003-04-29 09:12:08.000000000 +0000
+++ openssh-3.6.1p2/configure.ac 2003-05-06 20:53:51.000000000 +0000
@@ -12,6 +12,7 @@ AC_C_BIGENDIAN
AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_INSTALL
+AC_PROG_LN_S
AC_PATH_PROG(AR, ar)
AC_PATH_PROGS(PERL, perl5 perl)
AC_PATH_PROG(SED, sed)
2014 Nov 23
0
building NUT on Mac OS X Yosemite (website/documentation)
...tion on Linux systems for now.
>>>
>>> @aquette
>>> considering the context and limited impact, we could simply check for gsort first, and then sort.
>>> --- a/configure.ac
>>> +++ b/configure.ac
>>> @@ -101,6 +101,7 @@ AC_PROG_CXX
>>> AC_PROG_INSTALL
>>> AC_PROG_EGREP
>>> AC_PATH_PROG(AR, ar)
>>> +AC_CHECK_PROGS(SORT, gsort sort)
>>> AC_CHECK_TOOL(RANLIB, ranlib, :)
>>> dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib
>>> AC_C_BIGENDIAN
>>
>> Just to clarify, t...
2019 Aug 27
0
[nbdkit PATCH 1/2] include: Expose nbdkit version information to public
...eaders
+[NBDKIT_]VERSION_MAJOR=NBDKIT_VERSION_MAJOR
+[NBDKIT_]VERSION_MINOR=NBDKIT_VERSION_MINOR
+[NBDKIT_]VERSION_MICRO=NBDKIT_VERSION_MICRO
+AC_SUBST([NBDKIT_VERSION_MAJOR])
+AC_SUBST([NBDKIT_VERSION_MINOR])
+AC_SUBST([NBDKIT_VERSION_MICRO])
+
dnl Check for basic C environment.
AC_PROG_CC_STDC
AC_PROG_INSTALL
@@ -891,6 +903,7 @@ AC_CONFIG_FILES([Makefile
common/utils/Makefile
docs/Makefile
include/Makefile
+ include/nbdkit-version.h
plugins/Makefile
plugins/curl/Makefile
plugins/da...
2004 Aug 06
3
ices compile problems (was: libshout compile problems)
...n'
configure.in: 7: required file `./config.h.in' not found
src/Makefile.am:5: AC_PROG_MAKE_SET must be used in `configure.in'
automake: configure.in: AC_ARG_PROGRAM must be used in `configure.in'
src/Makefile.am:25: invalid variable `dist_noinst_HEADERS'
automake: configure.in: AC_PROG_INSTALL must be used in `configure.in'
autoconf
./configure: AM_INIT_AUTOMAKE: command not found
./configure: line 1213: syntax error near unexpected token
`AM_CONFIG_HEADER(config.h)'
./configure: line 1213: `AM_CONFIG_HEADER(config.h)'
-------------------------------
I have the latest ver...
2020 Feb 13
2
[PATCH nbdkit 1/2] vddk: Delay loading VDDK until config_complete.
We were previously dlopen-ing it in the load() method. This is very
early and in particular means that the only possible way to configure
where we find the library is through environment variables and not
through config parameters. Also it's not necessary as we don't call
any functions from the library (such as VixDiskLib_InitEx) until
config_complete.
This change is neutral refactoring
2001 Apr 24
10
Call for testing for coming 2.9 release.
If we can get people to test their platforms against the last snapshot/cvs
tree I'd be greatful. (http://www.openssh.com/portable.html)
I know NeXT platform has problems. I'm going to spend tonight looking at
it.
Also, take a moment to see what manpage type ./configure decided for your
system and if it's 'cat' please let us know.
Thanks.
- Ben
2014 Nov 23
6
building NUT on Mac OS X Yosemite (website/documentation)
...ld the website and documentation on Linux systems for now.
>>
>> @aquette
>> considering the context and limited impact, we could simply check for gsort first, and then sort.
>> --- a/configure.ac
>> +++ b/configure.ac
>> @@ -101,6 +101,7 @@ AC_PROG_CXX
>> AC_PROG_INSTALL
>> AC_PROG_EGREP
>> AC_PATH_PROG(AR, ar)
>> +AC_CHECK_PROGS(SORT, gsort sort)
>> AC_CHECK_TOOL(RANLIB, ranlib, :)
>> dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib
>> AC_C_BIGENDIAN
>
> Just to clarify, the sort error is only when build...
2004 Aug 06
3
libshout compile problems
No, it's not his version of autoconf or automake.
I had the same errors even with the latest versions available for my
debian distribution.
I only could help myself by using one of my precompiled binaries from a
previous cvs snapshot.
I haven't tried it with the current snapshot but I also don't know if
there had been any update lately.
Michael Smith wrote:
>>all ok until
2020 Feb 13
0
[PATCH nbdkit 2/2] vddk: Drive library loading from libdir parameter.
...gin. In nbdkit E<ge> 1.18 this
+is I<not> recommended.
+
=head1 FILE PARAMETER
The C<file> parameter can either be a local file, in which case it
diff --git a/configure.ac b/configure.ac
index fa902945..d71f06e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,6 +130,7 @@ AC_PROG_INSTALL
AC_PROG_CPP
AC_CANONICAL_HOST
AC_SYS_LARGEFILE
+AC_CHECK_SIZEOF([long])
AC_C_PROTOTYPES
test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant])
diff --git a/plugins/vddk/vddk.c b/plugins/vddk/vddk.c
index db61c1d8..c49eebcd 100644
--- a/plugins/vddk/vddk....
2009 Aug 05
2
using gnulib from daemon/
...125 100644
--- a/daemon/configure.ac
+++ b/daemon/configure.ac
@@ -16,6 +16,7 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
AC_INIT([libguestfs-daemon],[1.0.0])
+AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_MACRO_DIR([m4])
@@ -41,6 +42,9 @@ AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_CPP
+gl_EARLY
+gl_INIT
+
AC_C_PROTOTYPES
test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant])
@@ -86,5 +90,5 @@ AC_CHECK_HEADERS([attr/xattr.h sys/xattr.h])
dnl Produce output files.
AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([Makefile])
+...