search for: ac_prog_cpp

Displaying 20 results from an estimated 28 matches for "ac_prog_cpp".

Did you mean: ac_prog_cc
2009 Jul 07
0
[LLVMdev] switching to llvm-g++ as the host compiler
...lvm.test/autoconf/configure.ac > =================================================================== > --- llvm.test/autoconf/configure.ac (revision 74729) > +++ llvm.test/autoconf/configure.ac (working copy) > @@ -601,8 +601,8 @@ > > dnl Check for compilation tools > AC_PROG_CPP > -AC_PROG_CC(gcc) > -AC_PROG_CXX(g++) > +AC_PROG_CC([llvm-gcc gcc]) > +AC_PROG_CXX([llvm-g++ g++]) > > AC_PROG_NM > AC_SUBST(NM) > > > Likewise, in our LLVM-GCC tree, this seems to work for Darwin/x86: > > Index: llvm-gcc.test/configure.in > ===============...
2009 Jul 06
8
[LLVMdev] switching to llvm-g++ as the host compiler
...ls, falls back to GCC: Index: llvm.test/autoconf/configure.ac =================================================================== --- llvm.test/autoconf/configure.ac (revision 74729) +++ llvm.test/autoconf/configure.ac (working copy) @@ -601,8 +601,8 @@ dnl Check for compilation tools AC_PROG_CPP -AC_PROG_CC(gcc) -AC_PROG_CXX(g++) +AC_PROG_CC([llvm-gcc gcc]) +AC_PROG_CXX([llvm-g++ g++]) AC_PROG_NM AC_SUBST(NM) Likewise, in our LLVM-GCC tree, this seems to work for Darwin/x86: Index: llvm-gcc.test/configure.in =================================================================== --- ll...
2006 Feb 03
3
OpenSSH_4.3p1 configure patch
...EP,;t t s, at LIBWRAP@,$LIBWRAP,;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...
2010 Apr 19
1
[PATCH matahari] Replaces the existing HAL code for ProcessorAgent with udev.
...src/processors.cpp | 94 +++++++++++++++++++++++++++++++++++++++++---------- 3 files changed, 79 insertions(+), 22 deletions(-) diff --git a/configure.ac b/configure.ac index 9102c66..c51c23e 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ AM_INIT_AUTOMAKE AC_PROG_CXX AC_PROG_CC AC_PROG_CPP -AC_CHECK_HEADERS([arpa/inet.h netinet/in.h sys/ioctl.h sys/socket.h unistd.h]) +AC_CHECK_HEADERS([arpa/inet.h netinet/in.h sys/ioctl.h sys/socket.h unistd.h libudev.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL @@ -19,6 +19,7 @@ PKG_CHECK_MODULES(DBUS,...
2001 Feb 05
1
Minor configure.in check
...;ar' may not be found when 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)
2001 Feb 28
2
small patch for configure.in
...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/egd-pool /tmp/egd-pool /etc/entropy /tmp/entropy ; do...
2013 Sep 19
0
[PATCH] also look for host-prefixed ar
..._TOOL, since autoconf docs say 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
2003 Nov 15
2
[patch] 3.7.1p2: slogin symlink fixes
...DIR)$(sysconfdir); \ fi diff -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)
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
2011 Oct 12
1
[LLVMdev] [llvm-commits] [llvm] r139934 - in /llvm/trunk: autoconf/configure.ac configure
...34&view=diff > > ============================================================================== > --- llvm/trunk/autoconf/configure.ac (original) > +++ llvm/trunk/autoconf/configure.ac Fri Sep 16 15:36:16 2011 > @@ -967,8 +967,8 @@ > > dnl Check for compilation tools > AC_PROG_CPP > -AC_PROG_CC(gcc) > -AC_PROG_CXX(g++) > +AC_PROG_CC(clang llvm-gcc gcc) > +AC_PROG_CXX(clang++ llvm-g++ g++) > > AC_PROG_NM > AC_SUBST(NM) > > Modified: llvm/trunk/configure > URL: > http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=139934&r1=13993...
2020 Feb 13
0
[PATCH nbdkit 2/2] vddk: Drive library loading from libdir parameter.
...<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.c +++ b/plugi...
2009 Aug 05
2
using gnulib from daemon/
...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]) +AC_CONFIG_FIL...
2020 Feb 13
1
Re: [PATCH nbdkit 2/2] vddk: Drive library loading from libdir parameter.
...; + > =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]) Is this strictly necessary, or... > > AC_C_PROTOTYPES > test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant]) > diff --git a/plugins/vddk/vddk.c b/plugins/vddk/...
2005 Dec 15
2
Patch: More of kqueue() support.
...:29:09 -0000 @@ -1,25 +1,24 @@ -AC_INIT(dovecot, 1.0.alpha5, [dovecot@dovecot.org]) +AC_PREREQ([2.59]) +AC_INIT([dovecot],[1.0.alpha5],[dovecot@dovecot.org]) AC_CONFIG_SRCDIR([src]) -AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE AM_MAINTAINER_MODE AC_ISC_POSIX +AC_GNU_SOURCE AC_PROG_CC AC_PROG_CPP AC_HEADER_STDC AC_C_INLINE -AM_PROG_LIBTOOL +AC_PROG_LIBTOOL AM_ICONV -AC_CHECK_HEADERS(strings.h stdint.h unistd.h dirent.h \ +AC_CHECK_HEADERS(strings.h stdint.h unistd.h dirent.h time.h \ sys/uio.h sys/sysmacros.h sys/resource.h sys/select.h libgen.h \ - sys/quota.h sys/fs/ufs_quota.h u...
1999 Nov 23
0
[PATCH] Adding BSD compatible install script to 1.2pre14.
...-m644 sshd_config $(sysconfdir)/sshd_config; \ fi distclean: clean diff -urN openssh-1.2pre14.orig/configure.in openssh-1.2pre14/configure.in --- openssh-1.2pre14.orig/configure.in Mon Nov 22 06:11:05 1999 +++ openssh-1.2pre14/configure.in Tue Nov 23 10:38:55 1999 @@ -6,6 +6,7 @@ AC_PROG_CC AC_PROG_CPP AC_PROG_RANLIB +AC_PROG_INSTALL AC_CHECK_PROG(AR, ar, ar) if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -Wall"; fi diff -urN openssh-1.2pre14.orig/install-sh openssh-1.2pre14/install-sh --- openssh-1.2pre14.orig/install-sh Thu Jan 1 01:00:00 1970 +++ openssh-1.2pr...
2001 May 21
1
2.9p1 patches
...;gl_flags & GLOB_TILDE)) + if (*pattern != TILDE_CHAR || !(pglob->gl_flags & GLOB_TILDE)) return pattern; /* Copy up to the end of the string or / */ --- configure.in.orig Fri May 18 20:50:43 2001 +++ configure.in Fri May 18 23:45:09 2001 @@ -9,6 +9,7 @@ # Checks for programs. AC_PROG_CPP +AC_SYS_LARGEFILE AC_PROG_RANLIB AC_PROG_INSTALL AC_PATH_PROG(AR, ar) @@ -285,35 +256,56 @@ ] ) +dnl for PCRE regex library AC_ARG_WITH(pcre, - [ --with-pcre Override built in regex library with pcre], - [ - - AC_CHECK_LIB(pcre, pcre_info, - [ - AC_DEFINE(HAVE_LIBPCRE...
2009 Aug 18
8
src/ is now warning-free, too
These patches first make src/ warning free, and then turn on the strict warning options. 75 0001-build-suppress-an-ignored-write-return-value-warning.patch 38 0002-build-suppress-an-ignored-dup-return-value-warning.patch 27 0003-generator.ml-suppress-signed-unsigned-compare-warnin.patch 48 0004-build-don-t-perform-arithmetic-on-void-pointers.patch 30
2020 May 20
0
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...ndif /* __cplusplus */ > +#endif /* __x86_64__ */ > \ No newline at end of file > diff --git a/configure.ac b/configure.ac > index d4e95fb8..ff0c0902 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -41,6 +41,7 @@ fi > dnl Checks for programs. > AC_PROG_CC > AC_PROG_CPP > +AC_PROG_CXX > AC_PROG_EGREP > AC_PROG_INSTALL > AC_PROG_MKDIR_P > @@ -164,6 +165,27 @@ fi > AC_DEFINE_UNQUOTED(NOBODY_USER, "nobody", [unprivileged user--e.g. nobody]) > AC_DEFINE_UNQUOTED(NOBODY_GROUP, "$NOBODY_GROUP", [unprivileged group >...
2020 Feb 13
4
[PATCH nbdkit v2 2/3] NOT WORKING: vddk: Drive library loading from libdir parameter.
I couldn't get this to work in the end. This is the latest non-working version. This email documents what doesn't work for the permanent record. The central problem is that VDDK InitEx() appears to dlopen() various of its own plugins. Although I wasn't able to capture exactly what dlopen() command it is running, the plugins cannot be loaded because they rely on the recompiled
2018 Nov 29
6
[nbdkit PATCH 0/3] Fix %m usage on BSD
Our use of "%m" in various error messages is testament to the project's initial life on Linux - but other than Cygwin, I know of no other platforms supporting that glibc extension. We COULD audit the code and manually turn "%m" into "%s"/strerror(errno), but that's a lot of churn. Instead, let's fix the few outliers that can't be easily wrapped, then