search for: configure_args

Displaying 20 results from an estimated 29 matches for "configure_args".

2003 Dec 11
1
bug + insufficient doc in R CMD INSTALL (PR#5703)
...with-netcdf_libdir=/usr/local/netcdf/lib" ncdf_1.1.tar.gz and, of course, although I'm using the ncdf package as an example for concreteness, this is a general problem for any R package. The place in INSTALL.in that seems to be problematic is this bit: ---------------------------------- configure_args= configure_vars= with_package_versions=false save="CHECK" save_args= fake=false while test -n "${1}"; do case ${1} in -h|--help) echo "${usage}"; exit 0 ;; ...skip stuff... --configure-args=*) configure_args=`echo "${1}" | sed -e 's...
2014 Sep 19
2
Nut 2.7.2 on OpenBSD 5.6 with APC USB UPS
...http://www.libusb.org MAINTAINER = Martin Pieuchot <mpi at openbsd.org> # LGPL 2.1 PERMIT_PACKAGE_CDROM = Yes WANTLIB = pthread MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=libusb/} EXTRACT_SUFX = .tar.bz2 CONFIGURE_STYLE = gnu CONFIGURE_ARGS += ${CONFIGURE_SHARED} .ifdef DEBUG CONFIGURE_ARGS += --enable-debug-log \ --enable-examples-build \ --enable-debug .endif .include <bsd.port.mk>
2000 Jan 26
1
passing through configure parameters during module installation?
...NSTALL.in *** src/scripts/INSTALL.in 2000/01/24 19:48:48 1.29 --- src/scripts/INSTALL.in 2000/01/26 01:26:11 *************** *** 107,112 **** --- 107,116 ---- lib=${2}; shift ;; --library=*) lib=`echo "${1}" | sed -e 's/[^=]*=//'` ;; + --with-*=*) + configure_args="$configure_args $1";; + --with-*) + configure_args="$configure_args $1=$2"; shift ;; *) if test -f "${1}"; then mkdir -p ${tmpdir} *************** *** 181,187 **** echo "Installing package \`${pkg}' ..." if te...
2014 Sep 19
0
Nut 2.7.2 on OpenBSD 5.6 with APC USB UPS
...ot; section. I think FreeBSD would let you set a DEBUG checkbox when you run "make config", but that doesn't seem to work. In any event, it looks like the right option is the existing "--enable-debug-log" flag. The path of least resistance is probably to add it to the first CONFIGURE_ARGS, after ${CONFIGURE_SHARED}: CONFIGURE_ARGS += ${CONFIGURE_SHARED} --enable-debug-log -- Charles Lepple clepple at gmail
2003 Apr 11
2
Ipf headers not installed per default ?
Just rebuilt and installed/world kernel: FreeBSD 4.8-STABLE #0: Fri Apr 11 14:34:37 EDT 2003 Using the latest Makefile for squid25: # fgrep \$FreeBSD /usr/ports/www/squid/Makefile # $FreeBSD: ports/www/squid/Makefile,v 1.100 2003/04/09 08:31:30 adrian Exp $ Modified with: # fgrep CONFIGURE_ARGS Makefile |fgrep -v \# CONFIGURE_ARGS= --bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc/squid \ CONFIGURE_ARGS+= --enable-icmp CONFIGURE_ARGS+= --enable-delay-pools CONFIGURE_ARGS+= --disable-wccp CONFIGURE_ARGS+= --enable-kill-parent-hack CONFIGURE_ARGS+= --enable-ssl CONFIGURE_ARGS+= --enable-t...
2000 Jan 29
1
HDF5 as a module
...NSTALL.in *** src/scripts/INSTALL.in 2000/01/24 19:48:48 1.29 --- src/scripts/INSTALL.in 2000/01/29 00:23:21 *************** *** 107,112 **** --- 107,116 ---- lib=${2}; shift ;; --library=*) lib=`echo "${1}" | sed -e 's/[^=]*=//'` ;; + --with-*=*) + configure_args="$configure_args $1";; + --with-*) + configure_args="$configure_args $1=$2"; shift ;; *) if test -f "${1}"; then mkdir -p ${tmpdir} *************** *** 181,187 **** echo "Installing package \`${pkg}' ..." if te...
2014 Sep 18
0
Nut 2.7.2 on OpenBSD 5.6 with APC USB UPS
On Sep 12, 2014, at 5:15 PM, Stan Gammons <sg063015 at gmail.com> wrote: > On 09/11/14 22:34, Charles Lepple wrote: >> On Sep 11, 2014, at 11:04 PM, Stan Gammons <sg063015 at gmail.com> wrote: >> >>> I see a libusb_get_interrupt message in the log. Could that be the problem? >> Yes, it seems related. >> >> 1.126896 upsdrv_initinfo...
2014 Sep 19
2
Nut 2.7.2 on OpenBSD 5.6 with APC USB UPS
...on. I think FreeBSD would let you set a DEBUG checkbox when you run "make config", but that doesn't seem to work. > > In any event, it looks like the right option is the existing "--enable-debug-log" flag. The path of least resistance is probably to add it to the first CONFIGURE_ARGS, after ${CONFIGURE_SHARED}: > > CONFIGURE_ARGS += ${CONFIGURE_SHARED} --enable-debug-log > > -- > Charles Lepple > clepple at gmail > > --enable-debug-log was in the original makefile. I added --enable-debug. At this point I guess trying to build from source or go back to...
2014 Sep 12
2
Nut 2.7.2 on OpenBSD 5.6 with APC USB UPS
On 09/11/14 22:34, Charles Lepple wrote: > On Sep 11, 2014, at 11:04 PM, Stan Gammons <sg063015 at gmail.com> wrote: > >> I see a libusb_get_interrupt message in the log. Could that be the problem? > Yes, it seems related. > > 1.126896 upsdrv_initinfo... > 1.126906 upsdrv_updateinfo... > 1.127023 libusb_get_interrupt: Function not implemented >
2013 Jul 30
0
nut package with Riello UPS support
...:39 AM, Pavel Potcheptsov (EKTOS) wrote: > Is this a trouble? Driver use path /var/state/ups/ but upsd use path /var/db/nut/upsd.pid Yes, the driver and upsd need to agree on the path to the socket. From the FreeBSD ports tree: /usr/ports/sysutils/nut/Makefile: STATEDIR?= /var/db/nut [...] CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/nut \ --program-transform-name="" \ --localstatedir=${STATEDIR} \ --datadir=${PREFIX}/etc/nut \ --with-drvpath=${PREFIX}/libexec/nut \ --with-statepath=${STATEDIR} \ --with-altpidpath=${STATEDIR} \ --with-pidpath=${STATEDIR} \ --with-pkgconfig-d...
2003 Apr 08
2
Transparent squid (ipf)
FreeBSD 4.8-STABLE #1: Sun Apr 6 09:38:34 EDT 2003 # $FreeBSD: ports/www/squid/Makefile,v 1.99 2003/03/09 10:59:07 netchild Exp $ ... checking if IP-Filter header files are installed... no WARNING: Cannot find necessary IP-Filter header files Transparent Proxy support WILL NOT be enabled ... I seem to recall that ipf doesn't install its includes per default any longer ? Perhaps
2020 Mar 30
2
Some problems with Unbound under CentOS8
...n it is meant to talk to the ROOT domains and also give bad answers for zones which the ROOT zones do not have a subdomain for. The CentOS-8 version is compiled with the following options which may be causing some of this (would need to see how the openbsd is compiled) configure_args --with-libevent --with-pthreads --with-ssl \\\ --disable-rpath --disable-static \\\ --enable-relro-now --enable-pie \\\ --enable-subnet --enable-ipsecmod \\\ --with-conf-file=%{_sysconfdir}/%{name}/unbound.conf \\\ --wi...
2020 Mar 30
2
Some problems with Unbound under CentOS8
Good morning, I have detected two strange problems with unbound under CentOS8 (fully patched). I have tried same configuration in an OpenBSD host, and these problems do not appear. a/ Error mesage ?connection refused?. I am using this unbound server to resolv DNS records for our internal domain (Bind9 is configured to listen in localhost interface, port 5353 udp and in the same host where
2014 Jun 04
1
FreeNAS configuration command
Anybody knows what configure command settings FreeNAS use to compile NUT? More info on my journey: http://forums.freenas.org/index.php?threads/nobreak-bz1200-br-back-ups-rs-1200va-600w-bivolt-115-nt.20247/ Thanks Bruno -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Dec 20
0
How to make an <pkg>/configure file executable on Windows/NTFS?
...t aroma.affymetrix/configure is executable? *** Looking at the code (http://svn.r-project.org/R/trunk/src/library/tools/R/install.R), there is if (file_test("-x", "configure")) { cmd <- paste(paste(configure_vars, collapse = " "), "./configure", paste(configure_args, collapse = " ")) if (debug) message("configure command: ", sQuote(cmd), domain = NA) res <- system(cmd) if (res) pkgerrmsg("configuration failed", pkg_name) } else if (file.exists("configure")) errmsg("'configure' exists but is not e...
2020 Mar 30
0
Some problems with Unbound under CentOS8
...secure proxy. That would mean it is meant to talk to the ROOT domains and also give bad answers for zones which the ROOT zones do not have a subdomain for. The CentOS-8 version is compiled with the following options which may be causing some of this (would need to see how the openbsd is compiled) configure_args --with-libevent --with-pthreads --with-ssl \\\ --disable-rpath --disable-static \\\ --enable-relro-now --enable-pie \\\ --enable-subnet --enable-ipsecmod \\\ --with-conf-file=%{_sysconfdir}/%{name}/unbound.conf \\\ --with-pidfile=%{_locals...
2004 Dec 30
1
Help Me
Hi, I try to configure a PDC in FreeBSD with Samba using MySQL for database for users, groups, computers and other resources in domain like printers, sites...but without success. I installed * FreeBSD 5.3 with support for linux bin; * Samba-3.0.7,1 with CONFIGURE_ARGS --with-ldap --with-expsam=mysql --with-mysql-prefix=/usr/local --with-pam --with-pam_smbpass --with-ldapsam --with-syslog --with-quotas --with-manpages-lan=en --with-acl-support --with-winbind automaticaly was installed openldap-client-2.2.15; * pam_ldap-1.7.1_1 in default mode; * and MySQL 4.0.2...
2004 Feb 29
3
index file corruption
...send a lot of spam and delete few of them from mailbox until the problem occur. All logs/kdump/config are here: http://mat.reynerie.org/dovecot/ In the kdump file, the problem is visible at the end, Dovecot is compiled (via ports) with: env CFLAGS="-I/usr/local/include -L/usr/local/lib" CONFIGURE_ARGS="--with-ldap --with-ldap-includes=/usr/local/include --with-ldap-lib=/usr/local/lib" make Searching the mailing list archives, i have not found any solutions. -- mat
2013 Jul 30
3
nut package with Riello UPS support
# reboot Connection to 192.168.5.81 closed by remote host. Connection to 192.168.5.81 closed. ppo at admin:/tmp$ ssh root at 192.168.5.81 root at 192.168.5.81's password: Last login: Tue Jul 30 14:10:49 2013 from pc-ppo.kh.ektos OpenBSD 5.3 (GENERIC.MP) #58: Tue Mar 12 18:43:53 MDT 2013 # ps -aux | grep ups root 2254 0.0 0.0 324 700 p0 S+ 5:29PM 0:00.00 grep ups # ps -aux
2020 Mar 30
0
Some problems with Unbound under CentOS8
...to the ROOT domains and also give bad answers for zones which the ROOT > zones do not have a subdomain for. > > The CentOS-8 version is compiled with the following options which may > be > causing some of this (would need to see how the openbsd is compiled) > > configure_args --with-libevent --with-pthreads --with-ssl \\\ > --disable-rpath --disable-static \\\ > --enable-relro-now --enable-pie \\\ > --enable-subnet --enable-ipsecmod \\\ > --with-conf-file=%{_sysconfdir}/%{name}/unbound.conf \\\...