search for: ac_prog_egrep

Displaying 10 results from an estimated 10 matches for "ac_prog_egrep".

2006 Feb 08
7
4.3p2: call for testing
...netinet/in_systm.h. OK dtucker at . 20060205 - (tim) [configure.ac] Add AC_REVISION. Add sys/time.h to lastlog.h test for Solaris. OK dtucker at . - (tim) [configure.ac] Bug #1149. Changes in QNX section only. Patch by kraai at ftbfs.org. 20060203 - (tim) [configure.ac] test for egrep (AC_PROG_EGREP) before first AC_CHECK_HEADERS test. Without it, if AC_CHECK_HEADERS is first run by a platform specific check, builtin standard includes tests will be skipped on the other platforms. Analysis and suggestion by vinschen at redhat.com, patch by dtucker at . OK tim@, djm at . 20060202...
2014 Nov 20
2
building NUT on Mac OS X Yosemite
...g that it needed to be solved soon - we can build the website and documentation on Linux systems for now. @aquette considering the context and limited impact, we could simply check for gsort first, and then sort. --- a/configure.ac +++ b/configure.ac @@ -101,6 +101,7 @@ AC_PROG_CXX AC_PROG_INSTALL AC_PROG_EGREP AC_PATH_PROG(AR, ar) +AC_CHECK_PROGS(SORT, gsort sort) AC_CHECK_TOOL(RANLIB, ranlib, :) dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib AC_C_BIGENDIAN @JeanPerriault could you please test the above snippet? (apply using 'patch -p0 < /path/to/patch', from within the ...
2006 Feb 03
3
OpenSSH_4.3p1 configure patch
...IBEDIT@,$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)} +int main(void) { exit(EVP_aes_192_cbc() == N...
2014 Nov 20
0
building NUT on Mac OS X Yosemite (website/documentation)
...can build the website and documentation on Linux systems for now. > > @aquette > considering the context and limited impact, we could simply check for gsort first, and then sort. > --- a/configure.ac > +++ b/configure.ac > @@ -101,6 +101,7 @@ AC_PROG_CXX > AC_PROG_INSTALL > AC_PROG_EGREP > AC_PATH_PROG(AR, ar) > +AC_CHECK_PROGS(SORT, gsort sort) > AC_CHECK_TOOL(RANLIB, ranlib, :) > dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib > AC_C_BIGENDIAN Just to clarify, the sort error is only when building nut-website: sort: stray character in field spe...
2013 Sep 19
0
[PATCH] also look for host-prefixed ar
...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
2014 Nov 23
0
building NUT on Mac OS X Yosemite (website/documentation)
.... >>> >>> @aquette >>> considering the context and limited impact, we could simply check for gsort first, and then sort. >>> --- a/configure.ac >>> +++ b/configure.ac >>> @@ -101,6 +101,7 @@ AC_PROG_CXX >>> AC_PROG_INSTALL >>> AC_PROG_EGREP >>> AC_PATH_PROG(AR, ar) >>> +AC_CHECK_PROGS(SORT, gsort sort) >>> AC_CHECK_TOOL(RANLIB, ranlib, :) >>> dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib >>> AC_C_BIGENDIAN >> >> Just to clarify, the sort error is only when...
2014 Nov 23
6
building NUT on Mac OS X Yosemite (website/documentation)
...ntation on Linux systems for now. >> >> @aquette >> considering the context and limited impact, we could simply check for gsort first, and then sort. >> --- a/configure.ac >> +++ b/configure.ac >> @@ -101,6 +101,7 @@ AC_PROG_CXX >> AC_PROG_INSTALL >> AC_PROG_EGREP >> AC_PATH_PROG(AR, ar) >> +AC_CHECK_PROGS(SORT, gsort sort) >> AC_CHECK_TOOL(RANLIB, ranlib, :) >> dnl Postpone call to AC_PROG_LIBTOOL to allow disabling static lib >> AC_C_BIGENDIAN > > Just to clarify, the sort error is only when building nut-website: >...
2020 May 20
0
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...* __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 > for unprivileged user]) > > +# SS...
2020 May 18
3
[PATCH] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
What do you base this on? Per https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html : "For the x86-32 compiler, you must use -march=cpu-type, -msse or -msse2 switches to enable SSE extensions and make this option effective. For the x86-64 compiler, these extensions are enabled by default." That reads to me like we're fine for SSE2. As stated in my comments, SSSE3 support must be
2020 May 19
5
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
...endif /* ENABLE_SSE2 */ +#endif /* __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 for unprivileged user]) +# SSE2+ optimizations on x86-64 require g++ sup...