search for: xnone

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

Did you mean: none
2018 Aug 16
3
clang -xc++ foo.o
clang -xc++ -c 1.c 2.c clang -xc++ main.c 1.o 2.o 1.o:1:1: error: source file is not valid UTF-8 Would be nice, albeit I realize kinda proby/non-deterministic/big, if .o files were recognized and -xc++ did not apply to them. I'm converting C to C++ and don't want to rename files, at least at this point, maybe forever. For now I've compromised and main remains C. It is much smaller
2001 Aug 19
1
ogg.m4 and vorbis.m4
...because they copied the entirety of ao.m4, ogg.m4, and vorbis.m4 into acinclude.m4, but packages outside of the ogg/vorbis CVS tree may want to keep the .m4 files as separate files so it's easier to plug in new versions. 2. The test in ogg.m4: if test "x$ogg_prefix" != "xNONE" is not sufficient. If you do not specify --with-ogg-prefix, $ogg_prefix will be "", not "NONE". I don't know where "NONE" came from, although $ogg_prefix will be "no" if you specify --without-ogg-prefix (autoconf 2.13 and 2.52). Is there some ve...
2001 Oct 11
0
ogg.m4: --with-ogg-libdir
...test "x$ogg_libdir" != "x" ; then + ogg_args="$ogg_args --libdir=$ogg_libdir" + OGG_LIBS="-L$ogg_libdir" + elif test "x$ogg_prefix" != "x" ; then OGG_LIBS="-L$ogg_prefix/lib" - elif test "x$prefix" != "xNONE"; then - ogg_args="$ogg_args --prefix=$prefix" - OGG_CFLAGS="-I$prefix/include" + elif test "x$prefix" != "xNONE" ; then OGG_LIBS="-L$prefix/lib" fi OGG_LIBS="$OGG_LIBS -logg" + + if test "x$ogg_prefix"...
2019 Apr 24
1
[PATCH nbdkit] build: Use dlsym as sentinel function for -ldl.
...configure.ac +++ b/configure.ac @@ -224,11 +224,11 @@ AS_IF([test "x$nbdkit_cv_func_printf_percent_m" = xyes], [Define to 1 if vfprintf supports %m.])]) old_LIBS="$LIBS" -AC_SEARCH_LIBS([dlopen], [dl dld], [ - AS_IF([test "x$ac_cv_search_dlopen" != "xnone required"], - [DL_LIBS="$ac_cv_search_dlopen"], [DL_LIBS=]) +AC_SEARCH_LIBS([dlsym], [dl dld], [ + AS_IF([test "x$ac_cv_search_dlsym" != "xnone required"], + [DL_LIBS="$ac_cv_search_dlsym"], [DL_LIBS=]) AC_SUBST([DL_LIBS]) - ],...
2003 Aug 30
1
Fink's vorbis-tools patch
...efix" != "xno" ; then - if test "x$curl_libraries" != "x" ; then - CURL_LIBS="-L$curl_libraries" - elif test "x$curl_prefix" != "x" ; then - CURL_LIBS="-L$curl_prefix/lib" - elif test "x$prefix" != "xNONE" ; then - CURL_LIBS="-L$prefix/lib" - fi - - CURL_LIBS="$CURL_LIBS -lcurl" - - if test "x$curl_includes" != "x" ; then - CURL_CFLAGS="-I$curl_includes" - elif test "x$curl_prefix" != "x" ; then - CURL_CFLAGS=&qu...
2002 Dec 05
1
R configure fails on solaris: configure:12951: error: cannot compute sizeof (int), 77
...on about these matters, see the file named COPYING or type the command `info -f g77 Copying'. configure:9825: $? = 0 configure:9827: g77 -v </dev/null >&5 g77 version 2.95.2 19991024 (release) (from FSF-g77 version 0.5.25 19991024 (release)) Driving: g77 -v -c -xf77-version /dev/null -xnone Reading specs from /opt/sfw/lib/gcc-lib/sparc-sun-solaris2.8/2.95.2/specs gcc version 2.95.2 19991024 (release) /opt/sfw/lib/gcc-lib/sparc-sun-solaris2.8/2.95.2/cpp -lang-c -v -D__GNUC__=2 -D__GNUC_MINOR__=95 -D__sparc__ -D__sun__ -D__unix__ -D__svr4__ -D__SVR4 -D__sparc -D__sun -D__unix -Asystem(...
2013 Mar 10
0
[PATCH 1/2] Handle AC_SEARCH_LIBS special result value
...dex 8b1a3b3..d82d53f 100644 --- a/configure.ac +++ b/configure.ac @@ -107,7 +107,11 @@ AS_IF([test "x$enable_fixed_point" = "xyes"], ]) ] ) -AC_SUBST(ac_cv_search_lrintf) +lrintf_lib=" $ac_cv_search_lrintf" +AS_IF([test "x$ac_cv_search_lrintf" = "xnone required"], + [lrintf_lib=""] +) +AC_SUBST(lrintf_lib) CC_ATTRIBUTE_VISIBILITY([default], [ CC_FLAG_VISIBILITY([CFLAGS="${CFLAGS} -fvisibility=hidden"]) diff --git a/opusfile-uninstalled.pc.in b/opusfile-uninstalled.pc.in index b63a23c..7f555d6 100644 --- a/opusfile-...
2013 Mar 10
0
[PATCH 1/4] Handle AC_SEARCH_LIBS special result value
...ndex 8b1a3b3..113086d 100644 --- a/configure.ac +++ b/configure.ac @@ -107,7 +107,11 @@ AS_IF([test "x$enable_fixed_point" = "xyes"], ]) ] ) -AC_SUBST(ac_cv_search_lrintf) +lrintf_lib="$ac_cv_search_lrintf" +AS_IF([test "x$ac_cv_search_lrintf" = "xnone required"], + [lrintf_lib=""] +) +AC_SUBST(lrintf_lib) CC_ATTRIBUTE_VISIBILITY([default], [ CC_FLAG_VISIBILITY([CFLAGS="${CFLAGS} -fvisibility=hidden"]) diff --git a/opusfile-uninstalled.pc.in b/opusfile-uninstalled.pc.in index b63a23c..9002552 100644 --- a/opusfile-...
2018 Nov 06
5
Further nbdkit patches for Haiku
...endian.h \ + iconv.h \ selinux/selinux.h \ sys/endian.h \ sys/prctl.h \ @@ -164,6 +165,29 @@ AC_SEARCH_LIBS([dlopen], [dl dld], [ ]) LIBS="$old_LIBS" +old_LIBS="$LIBS" +AC_SEARCH_LIBS([iconv], [iconv], [ + AS_IF([test "x$ac_cv_search_iconv" != "xnone required"], + [ICONV_LIBS="$ac_cv_search_iconv" + have_iconv=yes + ], + [ICONV_LIBS= + have_iconv=yes]) + ], [ + AC_SEARCH_LIBS([libiconv], [iconv], [ + AS_IF([test "x$ac_cv_search_libiconv" != "xn...
2000 Mar 11
3
TEST RELEASE: openssh-1.2.3pre1
I have just uploaded a test release of 1.2.3. It includes numerous fixes from the OpenBSD team and should fix the stupid configure bugs of 1.2.2p1. http://violet.ibs.com.au/openssh/files/test/ A detailed ChangeLog is in the directory. Please report successes and failures. Regards, Damien Miller -- | "Bombay is 250ms from New York in the new world order" - Alan Cox | Damien Miller -
1999 Jan 07
1
problems compiling R packages with Linux
..._IO_stdout_' [...] I hope there is a kind soul who can help a little bit ;-) Many thanks, Ulf ---------------------------------------------------------------------- P.S.: g77 -v yields g77 version 0.5.22 gcc -v -fnull-version -o /tmp/gfa11201 -xf77-cpp-input /tmp/gfa11201.f -xnone -lf2c -lm Reading specs from /usr/lib/gcc-lib/i486-delix-linux/2.7.2.3/specs gcc version 2.7.2.3 /usr/lib/gcc-lib/i486-delix-linux/2.7.2.3/cpp -lang-c -v -undef -D__GNUC__=2 -D__GNUC_MINOR__=7 -D__ELF__ -D__unix__ -D__i386__ -D__linux__ -D__unix -D__i386 -D__linux -Asystem(unix) -Asystem(pos...
2004 Aug 02
9
various patches from Mandrakelinux package
I was looking at the libvorbis 1.0 SRPM of Mandrakelinux, and it contained some patches which are not included in vorbis 1.1 svn. I'm attaching these patches here, because it could maybe be interesting to include these upstream. (libvorbis-1.1-aliasing.patch is actually a rediffed patch of Mandrakesoft's one for 1.0 against 1.1 svn). The author of these patches is Gwenole Beachesne,
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
2015 Jan 20
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...uot;x$NE10_prefix" = "xno" || test "x$NE10_prefix" = "xyes" ; then + NE10_LIBS="" + elif test "x$NE10_prefix" != "x" ; then + NE10_LIBS="-L$NE10_prefix/lib" + elif test "x$prefix" != "xNONE" ; then + NE10_LIBS="-L$prefix/lib" + fi + + if test "x$NE10_prefix" != "xno" ; then + NE10_LIBS="$NE10_LIBS -lNE10" + fi + + if test "x$NE10_includes" != "x" ; then + NE10_CFLAGS="-I$N...
2011 Jun 22
3
sandbox pre-auth privsep child
...t;x$ac_cv_func_setrlimit" = "xyes" ) ; then + SANDBOX_STYLE="rlimit" + AC_DEFINE([SANDBOX_RLIMIT], [1], [Sandbox using setrlimit(2)]) +elif test -z "$sandbox_arg" || test "x$sandbox_arg" = "xno" || \ + test "x$sandbox_arg" = "xnone" || test "x$sandbox_arg" = "xnull" ; then + SANDBOX_STYLE="none" + AC_DEFINE([SANDBOX_NULL], [1], [no privsep sandboxing]) +else + AC_MSG_ERROR([unsupported -with-sandbox]) +fi + # Cheap hack to ensure NEWS-OS libraries are arranged right. if test ! -z "$SO...
2015 Jan 20
6
[RFC PATCH v1 0/2] Encode optimize using libNE10
Hello opus-dev, I've been cooking up this patchset to integrate NE10 library into opus. Current patchset focuses on encode use case mainly effecting performance of clt_mdct_forward() and opus_fft() (for float only) Glad to report the following on Encode use case: (Measured on my Beaglebone Black Cortex-A8 board) - Performance improvement for encode use case ~= 12.34% (Based on time -p
2015 Feb 04
0
[RFC PATCH v2] armv7(float): Optimize encode usecase using NE10 library
...uot;x$NE10_prefix" = "xno" || test "x$NE10_prefix" = "xyes" ; then + NE10_LIBS="" + elif test "x$NE10_prefix" != "x" ; then + NE10_LIBS="-L$NE10_prefix/lib" + elif test "x$prefix" != "xNONE" ; then + NE10_LIBS="-L$prefix/lib" + fi + + if test "x$NE10_prefix" != "xno" ; then + NE10_LIBS="$NE10_LIBS -lNE10" + fi + + if test "x$NE10_includes" != "x" ; then + NE10_CFLAGS="-I$N...
2015 Mar 03
0
[RFC PATCHv3] armv7(float): Optimize encode usecase using NE10 library
...uot;x$NE10_prefix" = "xno" || test "x$NE10_prefix" = "xyes" ; then + NE10_LIBS="" + elif test "x$NE10_prefix" != "x" ; then + NE10_LIBS="-L$NE10_prefix/lib" + elif test "x$prefix" != "xNONE" ; then + NE10_LIBS="-L$prefix/lib" + fi + + if test "x$NE10_prefix" != "xno" ; then + NE10_LIBS="$NE10_LIBS -lNE10" + fi + + if test "x$NE10_includes" != "x" ; then + NE10_CFLAGS="-I$N...
2015 May 08
0
[[RFC PATCH v2]: Ne10 fft fixed and previous 1/8] armv7(float): Optimize encode usecase using NE10 library
...uot;x$NE10_prefix" = "xno" || test "x$NE10_prefix" = "xyes" ; then + NE10_LIBS="" + elif test "x$NE10_prefix" != "x" ; then + NE10_LIBS="-L$NE10_prefix/lib" + elif test "x$prefix" != "xNONE" ; then + NE10_LIBS="-L$prefix/lib" + fi + + if test "x$NE10_prefix" != "xno" ; then + NE10_LIBS="$NE10_LIBS -lNE10" + fi + + if test "x$NE10_includes" != "x" ; then + NE10_CFLAGS="-I$N...
2015 Mar 03
1
[RFC PATCH v4] Enable optimize using libNe10
Changes from RFC PATCH v3 - Just rebased on tip - For all else, please see notes from RFC PATCH v3 at http://lists.xiph.org/pipermail/opus/2015-March/002902.html - latest wip opus tree/branch https://git.linaro.org/people/viswanath.puttagunta/Ne10.git branch: rfcv4_final_fft_ne10 Viswanath Puttagunta (1): armv7(float): Optimize encode usecase using NE10 library Makefile.am