search for: ac_canonical_host

Displaying 20 results from an estimated 46 matches for "ac_canonical_host".

2004 Sep 10
2
object format detection
...t night I checked in code to enable changing the object file format passed to nasm. But I don't have many examples to draw from so if anyone could submit patches against configure.in for any of nasm's supported formats I'll put them in. Right now the relevant snippet just looks like: AC_CANONICAL_HOST case "$host" in *) OBJ_FORMAT=elf ;; esac Any patterns for non-ELF systems would be appreciated. Josh __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/
2003 Jun 07
3
tinc-1.0pre8 fails to compile on RH 9.0
...12' \ >> Makefile.amt sed -n '/^##m4-files-end/,$p' Makefile.am.in >> Makefile.amt chmod a-w Makefile.amt mv Makefile.amt Makefile.am gmake: Leaving directory `/home/shashank/temp/tinc/m4' Running aclocal -I m4 ... Running autoheader... configure.in:39: warning: AC_CANONICAL_HOST invoked multiple times configure.in:179: error: `po/Makefile.in' is already registered with AC_CONFIG_FILES. autoconf/status.m4:844: AC_CONFIG_FILES is expanded from... configure.in:179: the top level autom4te: /usr/bin/m4 failed with exit status: 1 autoheader: /usr/bin/autom4te failed with ex...
1999 Dec 20
2
Portability hacks + alpha HPUX1020 port
...ck.h - variable for custom rsh path (HP uses remsh) - include bsd-login.h for systems w/o login lib func - X11 port forwarding on HPUX - macro to use setreuid() instead of seteuid(), which HP lacks *** Someone shout if this has any security implications ! *** - autoconf config.sub and config.guess (AC_CANONICAL_HOST) added - various compiler warnings squashed. I hate warnings. Grr. TODO: - HP utmp/utmpx support is still broken, ttyslot() seems to return garbage for ptys... anyone? :-) -------------- next part -------------- A non-text attachment was scrubbed... Name: openssh-1.2.1pre18-hpux1020-a4.patch.gz Ty...
2002 Aug 14
0
automake 1.6 compatability patch
...to worry about EXTRA_DIST unless you have files that don't get mentioned elsewhere but are needed in the distribution tarball anyway (eg, header files that don't get installed). You can also have EXTRA_MANS, EXTRA_DATA, EXTRA_LIBRARIES etc o AM_CONFIG_HEADER is required o AC_CANONICAL_HOST is obsolete and AC_CANONICAL_SYSTEM should be used instead All of the other trees I build (ogg vorbis ao) are automake 1.6/autoconf 2.50 clean. Bill (taniwha) -------------- next part -------------- ? autom4te.cache ? stamp-h1 Index: configure.in =============================================...
2005 Dec 14
2
Patch: ioloop using kqueue/kevent for FreeBSD
...s/configure.in new-dovecot-cvs/configure.in --- old-dovecot-cvs/configure.in 2005-12-14 11:35:03.545823016 +0100 +++ new-dovecot-cvs/configure.in 2005-12-14 11:35:06.150746230 +0100 @@ -1,6 +1,10 @@ AC_INIT(dovecot, 1.0.alpha5, [dovecot@dovecot.org]) AC_CONFIG_SRCDIR([src]) +AC_CANONICAL_BUILD +AC_CANONICAL_HOST +AC_CANONICAL_TARGET + AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE @@ -327,6 +331,15 @@ ]) fi +if test "$ioloop" = "kqueue"; then + AC_CHECK_FUNC(kqueue, [ + AC_DEFINE(IOLOOP_KQUEUE,, [Implement I/O loop with FreeBSD kqueue()]) + have_ioloop=yes + ], [ +...
2015 Apr 08
0
[PATCH 04/10] Use AC_CONFIG_LIBOBJ_DIR and AC_REPLACE_FUNCS to adhere to autoconf standards
--- configure.ac | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 2d638fc..58d0843 100644 --- a/configure.ac +++ b/configure.ac @@ -17,6 +17,10 @@ LDFLAGS=${LDFLAGS-""} AC_CANONICAL_HOST +dnl define the directory for replacement function since AC_LIBOBJ does not +dnl officially support subdirs and fails with automake +AC_CONFIG_LIBOBJ_DIR([lib]) + # We must decide this before testing the compiler. # Please allow this to default to yes, so that your users have more @@ -488,8 +...
2004 Aug 06
0
Sun audio driver for speexdec
I did this for OpenBSD. NetBSD uses the same audio(4) system. It should also work on Solaris, but I can't test that. --- configure.in.orig Tue May 13 00:58:07 2003 +++ configure.in Tue May 13 00:58:20 2003 @@ -26,7 +26,7 @@ AC_CANONICAL_HOST AM_PROG_LIBTOOL AC_C_BIGENDIAN -AC_CHECK_HEADERS(sys/soundcard.h) +AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h) AC_ARG_ENABLE(ogg, [ --enable-ogg=[yes/no] Turn on or off the use of ogg --- src/speexdec.c.orig Thu Jun 12 01:11:28 2003 +++ src/speexdec.c Thu Jun 12 01:14:31 2003...
2007 May 02
0
[patch] Mac Universal Binaries
...def __BIG_ENDIAN__ > spx_uint32_t ui, ret; > ui = i; > ret = ui>>24; > Index: configure.ac > =================================================================== > --- configure.ac (revision 12905) > +++ configure.ac (working copy) > @@ -32,7 +32,6 @@ > AC_CANONICAL_HOST > AM_PROG_LIBTOOL > > -AC_C_BIGENDIAN > AC_C_CONST > AC_C_INLINE > AC_C_RESTRICT > Index: libspeex/misc.h > =================================================================== > --- libspeex/misc.h (revision 12905) > +++ libspeex/misc.h (working copy) > @@ -78...
2001 Feb 28
2
small patch for configure.in
...the PRNG/EGD section -- Tim Rice Multitalents (707) 887-1469 tim at multitalents.net -------------- next part -------------- --- openssh_cvs/configure.in.old Tue Feb 27 12:56:06 2001 +++ openssh_cvs/configure.in Tue Feb 27 16:54:48 2001 @@ -5,6 +5,7 @@ AC_CONFIG_HEADER(config.h) AC_PROG_CC AC_CANONICAL_HOST +AC_C_BIGENDIAN # Checks for programs. AC_PROG_CPP @@ -1279,14 +1280,14 @@ if test -z "$RANDOM_POOL" ; then AC_MSG_CHECKING(for PRNGD/EGD socket) # Insert other locations here - for egdsock in /var/run/egd-pool /etc/entropy /tmp/entropy ; do + for egdsock in /var/run/eg...
2012 Jan 02
0
[ANNOUNCE] libmnl 1.0.2 release
...www.netfilter.org/projects/libmnl/ Doxygen documentation at: http://www.netfilter.org/projects/libmnl/doxygen/ You can download it via FTP at: ftp://ftp.netfilter.org/pub/libmnl Enjoy! -------------- next part -------------- Jan Engelhardt (11): build: use AM_CPPFLAGS build: use only AC_CANONICAL_HOST examples/genl: fix newline imbalance examples/genl: support dumping the genl families src: use limits.h header include: use sanitized header from headers_install build: abort autogen on subcommand failure Update .gitignore build: use AC_CONFIG_AUX_DIR and s...
2012 Jan 02
0
[ANNOUNCE] libnetfilter_log 1.0.1 release
...Have fun! -------------- next part -------------- Jan Engelhardt (23): build: use autoconf-suggested naming of files build: use modern call syntax for AC_INIT, AM_INIT_AUTOMAKE build: avoid use of deprecated INCLUDES build: use simpler autoreconf in autogen build: run AC_CANONICAL_HOST only build: remove statements without effect build: remove -fPIC flag build: no need for error message in PKG_CHECK_MODULES build: set Libs.private for pkgconfig file Remove accidentally-added file "depcomp" Add .gitignore files build: default to...
2013 May 08
1
[PATCH] opusfile configury fixes.
...INIT_AUTOMAKE([1.11 foreign]) AM_MAINTAINER_MODE([enable]) -LT_INIT - -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - -AC_CONFIG_MACRO_DIR([m4]) dnl Library versioning for libtool. dnl Please update these for releases. @@ -29,6 +28,10 @@ AC_SUBST(OP_LT_REVISION) AC_SUBST(OP_LT_AGE) +AC_CANONICAL_HOST +AM_PROG_LIBTOOL +AM_PROG_CC_C_O + CC_CHECK_CFLAGS_APPEND( [-std=c89 -pedantic -Wall -Wextra -Wno-parentheses -Wno-long-long]) @@ -62,15 +65,15 @@ AM_COND_IF(OP_WIN32, AS_IF([test "x$enable_http" != "xno"], - AC_CHECK_HEADER([winsock2.h],, + AC_CHECK_HEADER([wins...
2013 Sep 19
0
[PATCH] also look for host-prefixed ar
This patch changes configure.ac to look for '${host}-ar' as set by AC_CANONICAL_HOST before looking for the unprefixed 'ar'. This is useful when cross-compiling when all your binutils are prefixed. I used AC_CHECK_TOOLS instead of AC_CHECK_TOOL, since autoconf docs say that the former calls AC_SUBST. Applies to OpenSSH portable 6.3p1 --- configure.ac | 2 +- 1 file cha...
2012 Jan 02
2
[ANNOUNCE] libnetfilter_queue 1.0.1 release
Hi! The Netfilter project proudly presents: libnetfilter_queue 1.0.1 libnetfilter_queue is a userspace library providing an API to packets that have been queued by the kernel packet filter. See ChangeLog that comes attached to this email for more details. You can download it from: http://www.netfilter.org/projects/libnetfilter_queue/downloads.html
2004 Sep 10
0
Re: beta 10 candidate checked in
...g the call to AM_PATH_XMMS an acinclude.m4 will help him. > This macro is defined in /usr/local/share/aclocal/xmms.m4 Well I just installed xmms v1.2.4 and didn't get that file placed there. I copied it there manually and aclocal is now happy. $ aclocal $ autoconf configure.in:33: warning: AC_CANONICAL_HOST invoked multiple times $ automake --foreign --add-missing automake: configure.in: installing `./install-sh' automake: configure.in: installing `./mkinstalldirs' automake: configure.in: installing `./missing' configure.in: 27: required file `./ltconfig' not found $ ./configure checki...
2019 Aug 27
0
[nbdkit PATCH 1/2] include: Expose nbdkit version information to public
...DKIT_VERSION_MINOR], [13]) +m4_define([NBDKIT_VERSION_MICRO], [9]) +AC_INIT([nbdkit], + NBDKIT_VERSION_MAJOR.NBDKIT_VERSION_MINOR.NBDKIT_VERSION_MICRO) AC_CONFIG_MACRO_DIR([m4]) m4_ifdef([AC_USE_SYSTEM_EXTENSIONS],[], [m4_define([AC_USE_SYSTEM_EXTENSIONS],[])]) @@ -45,6 +49,14 @@ AC_CANONICAL_HOST AC_PROG_SED +dnl Expose version information to the public headers +[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_M...
2001 Jan 18
4
GNU autoconf/automake in OpenSSH
I make changes in open source tree to implement autoconf/automake. What's new ? - new acinclude.m4 ( based on old aclocal.m4 + new macros OSSH_EXPAND_PATHS and OSSH_SHOW_OPTIONS - new configure option --with-askpass=PATH - updated acconfig.h ( based on old acconfig.h with removed USE_EXTERNAL_ASKPASS and new ASKPASS_PATH + new config.h.top and config.h.bot ) !!! in this file has two lines
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
2002 Jul 10
2
cvs: debian updates and autogen.sh trouble
Hello, I couldn't help noticing that the debian build system in cvs was changed. As I used to compile and install from cvs, I discovered a small problem regarding autogen.sh. It's called in debian/rules, before the obj-dir is created (and changed into and ../configure is started). At least on my system autogen.sh implicitly runs ./configure, so the original source path is already
2017 Mar 01
3
[PATCH supermin 0/2] Use AC_HEADER_MAJOR to find definitions of major, minor, makedev.
Quite a complex fix in the end, see the comment in the second commit. Rich.