Displaying 20 results from an estimated 61 matches for "enableval".
2002 Aug 14
0
automake 1.6 compatability patch
...ot;
ldflags_save="$LDFLAGS"
@@ -80,13 +80,19 @@
dnl --------------------------------------------------
dnl Allow tools to be selectively built
dnl --------------------------------------------------
-AC_ARG_ENABLE(ogg123, [ --disable-ogg123 Skip building ogg123], build_ogg123="$enableval", build_ogg123="yes")
-AC_ARG_ENABLE(oggdec, [ --disable-oggdec Skip building oggdec], build_oggdec="$enableval", build_oggdec="yes")
-AC_ARG_ENABLE(oggenc, [ --disable-oggenc Skip building oggenc], build_oggenc="$enableval", build_oggenc="yes...
2009 Jun 03
1
[PATCH] fix -elf2flt usage for bfin-uclinux
...les changed, 3 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index cc30d99..3179521 100644
--- a/configure.ac
+++ b/configure.ac
@@ -188,8 +188,10 @@ fi])
AC_ARG_ENABLE(blackfin-asm, [ --enable-blackfin-asm Make use of Blackfin assembly optimizations],
[if test "$enableval" = yes; then
AC_DEFINE([BFIN_ASM], , [Make use of Blackfin assembly optimizations])
- LDFLAGS="-Wl,-elf2flt=-s100000"
fi])
+case $host_os in
+ uclinux) LDFLAGS="-Wl,-elf2flt=-s100000 $LDFLAGS";;
+esac
AC_ARG_ENABLE(fixed-point-debug, [ --enable-fixed-point-debug...
1998 Nov 24
0
Additional autoconf test for linuxppc/mklinux
I am attaching a patch to R-0.63's configure.in file which will enable
R to detect and use some special math libraries on linuxppc and mklinux.
The patch provides tests for these libraries and enable/disable switches
for them as well.
One library is the libmoto math library which must be used in
conjunction
with libm (it only replaces some of libm's functions). The other is a
RISC
1998 Nov 24
0
Additional autoconf test for linuxppc/mklinux
I am attaching a patch to R-0.63's configure.in file which will enable
R to detect and use some special math libraries on linuxppc and mklinux.
The patch provides tests for these libraries and enable/disable switches
for them as well.
One library is the libmoto math library which must be used in
conjunction
with libm (it only replaces some of libm's functions). The other is a
RISC
2012 Jul 13
2
[LLVMdev] Dealing with a corrupted /proc/self/exe link
...timestamp information (e.g., __DATE__) is allowed])
+dnl Enable reading of the "/proc/self/exe" link.
+AC_ARG_ENABLE(proc-self-exe,
+ AS_HELP_STRING([--enable-proc-self-exe],
+ [Enable reading of the "/proc/self/exe" link (default is YES)]),,
+ enableval=default)
+case "$enableval" in
+ yes) AC_SUBST(ENABLE_PROC_SELF_EXE,[1]) ;;
+ no) AC_SUBST(ENABLE_PROC_SELF_EXE,[0]) ;;
+ default) AC_SUBST(ENABLE_PROC_SELF_EXE,[1]) ;;
+ *) AC_MSG_ERROR([Invalid setting for --enable-proc-self-exe. Use "yes" or "no"]) ;;
+esac
+AC...
2008 Apr 03
0
configure patch to check for SSE
...[
+has_sse=yes
+],
+[
+has_sse=no
+]
+)
+AC_MSG_RESULT($has_sse)
AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)
@@ -102,12 +118,19 @@
AC_DEFINE([ENABLE_VALGRIND], , [Enable valgrind extra checks])
fi])
-AC_ARG_ENABLE(sse, [ --enable-sse Enable SSE support], [if test "$enableval" = yes; then
-AC_DEFINE([_USE_SSE], , [Enable SSE support])
+AC_ARG_ENABLE(sse, [ --enable-sse Enable SSE support], [
+if test "x$enableval" != xno; then
+has_sse=yes
CFLAGS="$CFLAGS -O3 -msse"
+else
+has_sse=no
fi
])
+if test "$has_sse" = yes; th...
2011 Sep 01
0
[PATCH 4/5] configure.ac: Add ARM NEON support
...[
+has_neon=no
+]
+)
+AC_MSG_RESULT($has_neon)
+
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -fvisibility=hidden"
AC_MSG_CHECKING(for ELF visibility)
@@ -148,6 +165,15 @@ has_sse=no
fi
])
+AC_ARG_ENABLE(neon, [ --enable-neon Enable NEON support], [
+if test "x$enableval" != xno; then
+has_neon=yes
+CFLAGS="$CFLAGS -O3 -march=armv7-a -mfpu=neon"
+else
+has_neon=no
+fi
+])
+
FFT=smallft
@@ -165,6 +191,10 @@ if test "$has_sse" = yes; then
AC_DEFINE([_USE_SSE], , [Enable SSE support])
fi
+if test "$has_neon" = yes; then
+...
2008 Feb 17
1
--disable-ipv6 does not work
...--- configure.in.org 2008-02-16 15:35:53.000000000 +0100
+++ configure.in 2008-02-17 01:30:21.675931789 +0100
@@ -23,8 +23,8 @@
AC_ARG_ENABLE(ipv6,
[ --enable-ipv6 Enable IPv6 support (auto)],
- if test x$withval = xno || test x$withval = xauto; then
- want_ipv6=$withval
+ if test x$enableval = xno || test x$enableval = xauto; then
+ want_ipv6=$enableval
else
want_ipv6=yes
fi,
============================================================
Heiko Schlichting | Freie Universit?t Berlin
heiko at FU-Berlin.DE | Zentraleinrichtung f?r Datenverarbeitung (ZEDAT)
Telefon +49...
2012 Jul 13
0
[LLVMdev] [llvm-commits] Dealing with a corrupted /proc/self/exe link
...__DATE__) is allowed])
>
> +dnl Enable reading of the "/proc/self/exe" link.
> +AC_ARG_ENABLE(proc-self-exe,
> + AS_HELP_STRING([--enable-proc-self-exe],
> + [Enable reading of the "/proc/self/exe" link (default is YES)]),,
> + enableval=default)
> +case "$enableval" in
> + yes) AC_SUBST(ENABLE_PROC_SELF_EXE,[1]) ;;
> + no) AC_SUBST(ENABLE_PROC_SELF_EXE,[0]) ;;
> + default) AC_SUBST(ENABLE_PROC_SELF_EXE,[1]) ;;
> + *) AC_MSG_ERROR([Invalid setting for --enable-proc-self-exe. Use "yes" or &quo...
2011 Sep 01
6
[PATCH 0/5] ARM NEON optimization for samplerate converter
From: Jyri Sarha <jsarha at ti.com>
I optimized Speex resampler for NEON capable ARM CPUs. The first patch
should speed up resampling on any platform that can spare the
increased memory usage. It would be nice to have these merged to the
master branch. Please let me know if there is anything I can do to
help the the merge. The patches have been rebased on top of master
branch in
2004 Sep 10
0
libFLAC internals
...and gprof.
IIRC powerpc has performance counters, if you want the best code, use
them.
For gprof profiling patch configure.in and build flac with
--enable-static --enable-profile
186a187,194
> AC_ARG_ENABLE(profile,
> [ --enable-profile Turn on profiling],
> [case "${enableval}" in
> yes) profile=true ;;
> no) profile=false ;;
> *) AC_MSG_ERROR(bad value ${enableval} for --enable-profile) ;;
> esac],[profile=false])
>
368a377,384
> if test x$profile = xtrue; then
> if test x$GCC = xyes; then
> CFLAGS="`echo $CFLAGS | sed -e '...
2016 Dec 04
1
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" ; then
XIPH_ADD_CFLAGS([-msse2])
fi
So maybe it's better to rename it to --disable-sse2 or...
2007 Oct 25
0
[PATCH] Fix logic in mad detection
...------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/configure.ac b/configure.ac
index 918de8f..9c0576e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -189,19 +189,19 @@ fi
AC_ARG_ENABLE(mad,
AS_HELP_STRING([--enable-mad],
[enable mad audio (default=yes)])],
- enable_mad=$enableval,
- enable_mad="yes")
+ enable_mad=$enableval)
-if test "$enable_mad" = "yes"; then
+if test "$enable_mad" != "no"; then
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
AC_SUBS...
2007 Mar 19
0
2 commits - configure.ac
..._MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
-AC_SUBST(MAD_LIBS)
-if test "x$HAVE_MAD" = xyes; then
- AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled])
+AC_ARG_ENABLE(mad,
+ AS_HELP_STRING([--enable-mad],
+ [enable mad audio (default=yes)])],
+ enable_mad=$enableval,
+ enable_mad="yes")
+
+if test "$enable_mad" = "yes"; then
+ AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
+ AC_SUBST(MAD_LIBS)
+ if test "x$HAVE_MAD" = xyes; then
+ AC_DEFINE(HAVE_MAD,...
2007 Oct 25
1
[PATCH] Fix logic in ffmpeg detection
...c b/configure.ac
index 97d474b..918de8f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -212,20 +212,20 @@ dnl Or you submit a patch that detects ffmpeg reliably on the distros.
AC_ARG_ENABLE(ffmpeg,
AS_HELP_STRING([--enable-ffmpeg],
[enable ffmpeg support (default=yes)])],
- enable_ffmpeg=$enableval,
- enable_ffmpeg="yes")
+ enable_ffmpeg=$enableval)
-if test "$enable_ffmpeg" = "yes"; then
+if test "$enable_ffmpeg" != "no"; then
PKG_CHECK_MODULES(FFMPEG, libavcodec libswscale, HAVE_FFMPEG=yes, HAVE_FFMPEG=no)
AC_SUBST(FFMPEG_CFLAGS)
AC_...
2009 Mar 30
3
[Bug 588] New: make ipv6 optional in iptables
http://bugzilla.netfilter.org/show_bug.cgi?id=588
Summary: make ipv6 optional in iptables
Product: iptables
Version: CVS (please indicate timestamp)
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P1
Component: ip6tables
AssignedTo: laforge at netfilter.org
2016 Jul 08
3
failure with latest cross compiling
As a note, with the latest versions, I get this "new" failure, when
cross compiling for windows using mingw:
CCLD speexdec.exe
speexdec.o:speexdec.c:(.text+0x4af): undefined reference to
`_imp__waveOutGetNumDevs at 0'
speexdec.o:speexdec.c:(.text+0x54d): undefined reference to
`_imp__waveOutOpen at 24'
speexdec.o:speexdec.c:(.text+0x5aa): undefined reference to
2004 Sep 10
6
libFLAC internals
Howdy.
I'm working on Altivec versions of some of the libFLAC functions. I figured
the best candidates would be those that had MMX/SSE/3dnow versions, and I
picked FLAC__lpc_restore_signal() to do first, since it's relatively simple.
In stepping through some runs, it appears that 'order' mod 4 is always 0. Is
that guaranteed, either by the format or by higher functions in the
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
2004 Sep 10
3
Altivec, automake
I think I've gotten FLAC__lpc_restore_signal() about as good as I'm going to
get it.
Here's what I have:
-a new file, lpc_asm.s, which has the assembly routines
-changes to cpu.h, cpu.c, and stream_decoder.c to enable them
-changes to configure.in to support the new cpu stuff
-a preliminary Makefile.am
-maybe something else I'm forgetting
Now automake complains that configure.in