search for: ac_help_string

Displaying 20 results from an estimated 47 matches for "ac_help_string".

2005 Oct 05
1
Problems with autoconf example from r-ext.
...c example from R-ext and fail. My autoconf file looks like this [autoconf.ac] # original by Friedrich Leisch, much changed by BDR AC_INIT([SBMLodeSolveR]) dnl Select an optional include path, from a configure option dnl or from an environment variable. AC_ARG_WITH([sbmlode-include], AC_HELP_STRING([--with-sbmlode-include=INCLUDE_PATH], [the location of SBMLODE header files]), [sbmlode_include_path=$withval]) if test [ -n "$sbmlode_include_path" ] ; then AC_SUBST([CPPFLAGS],["-I${sbmlode_include_path} ${CPPFLAGS}"]) else if test...
2017 Jan 06
8
[PATCH 0/5] Allow multiple targets to be disabled
Hi, This patchet allows a few targets to be disabled when unrequired. The rational is coming from VLC's contrib buildsystem, so far we use make -C to select only some subparts of the available targets. It would be easier and cleaner to use autoconf to do so IMHO. There's an additional patch which fixes the build when building for WinRT/UWP platform, upstreamed from VLC. We have a couple
2002 Feb 21
1
[patch] configurable RSYNCD_CONF
.../run/rsyncd.lock" #define URL_PREFIX "rsync://" --- configure.in.orig Wed Feb 20 08:40:47 2002 +++ configure.in Thu Feb 21 01:26:47 2002 @@ -85,6 +85,30 @@ AC_DEFINE_UNQUOTED(RSYNC_PATH, "$RSYNC_PATH", [location of rsync on remote machine]) +AC_ARG_WITH(rsyncd-conf, + AC_HELP_STRING([--with-rsyncd-conf=PATH], [set configuration file for rsync server to PATH (default: /etc/rsyncd.conf)]), + [ if test ! -z "$with_rsyncd_conf" ; then + case $with_rsyncd_conf in + yes) + RSYNCD_CONF="/etc/rsyncd.conf" + ;; + no) + RSYNCD_CONF="/etc/rsyncd.con...
2006 Nov 10
1
Re: [nut-commits] svn commit r578 - in trunk: . docs
...11/9/06, Peter Selinger <selinger-guest@alioth.debian.org> wrote: > > Author: selinger-guest > > Date: Fri Nov 10 05:57:37 2006 > > New Revision: 578 > > @@ -566,72 +567,72 @@ > > > > AC_MSG_CHECKING(driver path) > > AC_ARG_WITH(drvpath, > > -AC_HELP_STRING([--with-drvpath=PATH], [where to install ups drivers (<prefix>/bin)]), > > +AC_HELP_STRING([--with-drvpath=PATH], [where to install ups drivers (EPREFIX/bin)]), > > [ case "${withval}" in > > yes|no) > > AC_MSG_RESULT(using defau...
2012 Jun 29
2
compile glusterfs for debian squeeze
Hello, I'm compiling glusterfs for a debian squeeze. When I do a make command, I see These parameter: GlusterFS configure summary =========================== FUSE client: yes Infiniband verbs: yes epoll IO multiplex: yes argp-standalone: no fusermount: no readline: no georeplication: yes I would like to create a package that can be used both as a client and a server. I'm not interested
2006 Dec 21
3
New default for SNMP and USB (and HAL) compilation
fellows, I'm working on integrating the preliminary HAL support, and thought a bit about the default configure values below: --with-snmp build and install SNMP drivers (no) --with-usb build and install USB drivers (no) [ --with-hal build and install HAL support (no) ] I wonder if some auto detection magic (if the requirement is present enable the
2005 Feb 20
2
minus I and minus L flags
I have been RTFM/doc/www, but I'm still lost. How does one tell R CMD INSTALL and R CMD check (both) that libraries are installed in non-usual places and so -I/APPS/include (or whatever) is necessary in CPPFLAGS and -L/APPS/lib (similarly) is necessary in LDFLAGS? I know I can hardwire them in pkg/src/Makevars, but this requires hand editing of that file by each installer (yuck!) rgentlem
2005 Feb 20
2
minus I and minus L flags
I have been RTFM/doc/www, but I'm still lost. How does one tell R CMD INSTALL and R CMD check (both) that libraries are installed in non-usual places and so -I/APPS/include (or whatever) is necessary in CPPFLAGS and -L/APPS/lib (similarly) is necessary in LDFLAGS? I know I can hardwire them in pkg/src/Makevars, but this requires hand editing of that file by each installer (yuck!) rgentlem
2007 Aug 07
1
pkgconfig fix for nut
...#39; -if test ! -d "${pkgcfgdir}"; then - pkgcfgdir='' -fi hotplugdir='/etc/hotplug' if test ! -d "${hotplugdir}"; then hotplugdir='' @@ -635,35 +631,6 @@ ]) -AC_MSG_CHECKING(whether to enable pkg-config support) -AC_ARG_WITH(pkgconfig-dir, - AC_HELP_STRING([--with-pkgconfig-dir=PATH], [where to install pkg-config *.pc files (/usr/lib/pkgconfig)]), - [ - case "${withval}" in - yes) - if test -z "${pkgcfgdir}"; then - AC_MSG_RESULT(no) - AC_MSG_ERROR(["pkg-config directory requested but...
2007 Jul 16
0
configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_playback_oss.c
...Jul 15 16:52:29 2007 -0700 Add an OSS audio backend so I can hear Strindberg and Helium. (Heeeelium!) diff --git a/configure.ac b/configure.ac index 881a73b..8e83776 100644 --- a/configure.ac +++ b/configure.ac @@ -125,7 +125,7 @@ dnl dnl audio backend dnl AC_ARG_WITH(audio, - [AC_HELP_STRING([--with-audio=@<:@auto/alsa/none@:>@], + [AC_HELP_STRING([--with-audio=@<:@auto/alsa/oss/none@:>@], [audio backend to use])],, [with_audio=auto]) @@ -134,6 +134,8 @@ if test "$with_audio" = "auto" -o "$with PKG_...
2003 Dec 16
3
default --rsh
On Mon, Dec 15, 2003 at 10:51:08AM -0800, Wayne Davison wrote: > On Mon, Dec 15, 2003 at 10:03:28AM -0800, jw schultz wrote: > > > The one thing i really would have liked to have seen in a version bump > > would have been changing the default remote shell to ssh instead of > > rsh/remsh. > > I can see this being both a good thing (since I think it is a better >
2007 May 13
1
Help understanding LAPACK symbol resolution
...link are the ones where symbols are searched (rather than all libraries in LD_LIBRARY_PATH). To allow the user to provide a specific LAPACK, I added lines to a configure.in file that allow for a --with-lapack LAPACK_LIBS=`"${R_HOME}/bin/R" CMD config LAPACK_LIBS` AC_ARG_WITH([lapack], AC_HELP_STRING([--with-lapack=LIB_PATH], [LAPACK library location with complex routines]), [LAPACK_LIBS=$withval]) added a check to see that zsysv_ is actually available AC_CHECK_FUNC(zsysv_,, AC_MSG_ERROR([lapack needs zsysv_ in ${LAPACK_LIBS}])) and substituted LAPACK_LIBS into a Makevars.in file AC_SU...
2004 Jan 06
1
Keychain Patch Try II
...2:48:15 2003 @@ -131,26 +131,7 @@ }], [AC_MSG_RESULT(working)], [AC_MSG_RESULT(buggy) AC_DEFINE(BROKEN_GETADDRINFO)], - [AC_MSG_RESULT(assume it is working)]) -# Check for the Security framework headers that we'll need; -# if present, then define USE_KEYCHAIN - AC_ARG_WITH([[keychain]],[AC_HELP_STRING([[--without-keychain]],[do not store passwords in Mac OS X Keychain])], - [], - [AC_MSG_CHECKING([[for Keychain Services]]) - OLD_LIBS="$LIBS" - LIBS="$LIBS -framework Security" - AC_LINK_IFELSE([[#include <Security/Security.h> - int main() - { - UInt32 version; - SecKe...
2015 Apr 09
0
[ANNOUNCE] xf86-input-vmmouse 13.0.99
...and *Solaris where testing so far has been limited to compile-testing on FreeBSD and Solaris, Please report bugs to <linux-graphics-maintainer at vmware.com> Gaetan Nadon (6): Autoconf: remove AC_PROG_CC which overrides AC_PROG_CC_C99 from util-macros Autoconf: replace deprecated AC_HELP_STRING with AS_HELP_STRING Autoconf: minimum level required is 2.60 Autoconf: Fix deprecated use of AC_OUTPUT "make dist" fails when workstation has no udev package tools: make install fails when user has no write permission in /lib Jeremy Huddleston Sequoia (1): A...
2015 Apr 17
0
[ANNOUNCE] xmh 1.0.3
...Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1 xmh 1.0.3 Daphne Pfister (1): Fixes misplaced shortcut in man page: #89003 Eric S. Raymond (1): Don't rely on the ability to set tan stops. Use tables instead. Gaetan Nadon (5): 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 man: replace hard coded man page section with substitution strings config: move man pages into their own directory git tag: xmh-1.0.3 http://xorg.fre...
2018 Mar 10
0
[ANNOUNCE] xeyes 1.1.2
...lan Coopersmith (4): Mark usage as noreturn, as suggested by -Wmissing-noreturn configure: Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1 xeyes 1.1.2 Emil Velikov (1): autogen.sh: use quoted string variables Gaetan Nadon (2): config: replace deprecated AC_HELP_STRING with AS_HELP_STRING config: move man pages into their own directory Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish git tag: xeyes-1.1.2 https://xorg.freedesktop.org/archive/individual/app/...
2019 Mar 03
0
[ANNOUNCE] xmore 1.0.3
...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 __xorgversion__ which was just missing. Mihail Konev (1): autogen: add default pat...
2016 Dec 04
1
Description of disable-sse option
OS SSE support is now mandatory, so the description of --disable-sse option isn't correct now (actually, it wasn't fully correct even before this). *Currently all it does is disables -msse2 flag* The relevant parts of configure.ac: AC_ARG_ENABLE(sse, AC_HELP_STRING([--disable-sse], [Disable SSE if the OS does not support SSE instructions]), [case "${enableval}" in yes) sse_os=yes ;; no) sse_os=no ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;; esac],[sse_os=yes]) if test "x$asm_optimisation$sse_os" = "xyesyes&qu...
2023 Feb 27
0
[ANNOUNCE] font-alias 1.0.5
...st two years worth of build system improvements, including making the configure script more efficient. Alan Coopersmith (6): gitlab CI: add a basic build test Build xz tarballs instead of bzip2 gitlab CI: stop requiring Signed-off-by in commits configure: replace deprecated AC_HELP_STRING with AS_HELP_STRING configure: Switch to XORG_DEFAULT_NOCODE_OPTIONS font-alias 1.0.5 Gaetan Nadon (1): configure: update AC_PREREQ statement to 2.60 git tag: font-alias-1.0.5 https://xorg.freedesktop.org/archive/individual/font/font-alias-1.0.5.tar.gz SHA256: f8e0ca6537003f11f...
2013 Jan 13
0
[ANNOUNCE] xgc 1.0.4
...making the build configuration scripts compatible with automake-1.13. Alan Coopersmith (3): Bounds check value passed to WriteText config: Add missing AC_CONFIG_SRCDIR xgc 1.0.4 Gaetan Nadon (5): config: replace AC_CHECK_FILE with test -f config: replace deprecated AC_HELP_STRING with AS_HELP_STRING config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS config: move man pages into their own directory config: let Automake handle Lex and Yacc dist and cleaning git tag: xgc-1.0.4 http://xorg.freedesktop.org/archive/individual/app/xgc-1.0.4.tar.b...