Displaying 20 results from an estimated 563 matches for "ac_defin".
Did you mean:
ac_define
2018 Nov 08
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
...is causes EVP_CIPHER_CTX_set_iv to get replaced unnecessarily (or
> > a duplicate symbol error if linking statically).
> >
>
> Applied, thanks.
should this go on the V_7_9 branch too?
> > AC_SEARCH_LIBS([EVP_CIPHER_CTX_set_iv], [crypto],
> > - [AC_DEFINE([HAVE_EVP_CIPHER_CTX_GET_IV], [1],
> > + [AC_DEFINE([HAVE_EVP_CIPHER_CTX_SET_IV], [1],
> > [Define if libcrypto has EVP_CIPHER_CTX_set_iv])])
> >
>
> AC_SEARCH_LIBS sets that definition by default anyway. Damien, is there
> any reason...
2002 Mar 12
2
sys/queue.h
...D_PW
Index: configure.ac
===================================================================
RCS file: /var/cvs/openssh/configure.ac,v
retrieving revision 1.25
diff -u -r1.25 configure.ac
--- configure.ac 8 Mar 2002 03:50:58 -0000 1.25
+++ configure.ac 12 Mar 2002 02:11:54 -0000
@@ -63,7 +63,6 @@
AC_DEFINE(BROKEN_GETADDRINFO)
dnl AIX handles lastlog as part of its login message
AC_DEFINE(DISABLE_LASTLOG)
- AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
;;
*-*-cygwin*)
LIBS="$LIBS /usr/lib/textmode.o"
@@ -123,7 +122,6 @@
check_for_libcrypt_later=1
AC_DEFINE(DONT_TRY_OTHER_AF)
AC_DEFINE(PA...
2002 Nov 22
2
Add -D_XOPEN_SOURCE_EXTENDED definition for HP/UX 11.00 platform
Hi,
I suggest to add the following definition to configure and its template
configure.in to allow samba-2.2.x to be compiled on HP/UX 11.00 with
some lesser warnings. Without this definition you'll get warnings on all
socket operation because the socket operations are UNIX98 specific and
HP/UX 11.00 will support this when _XOPEN_SOURCE_EXTENDED is defined.
--
Ren? Nieuwenhuizen
Afdeling
2009 Mar 18
1
[PATCH] Remove setting IP_TOS_IS_BROKEN for Cygwin
...============================================================
RCS file: /cvs/openssh/configure.ac,v
retrieving revision 1.418
diff -u -p -r1.418 configure.ac
--- configure.ac 7 Mar 2009 11:22:35 -0000 1.418
+++ configure.ac 18 Mar 2009 15:03:02 -0000
@@ -434,8 +434,6 @@ int main(void) { exit(0); }
AC_DEFINE(USE_PIPES, 1, [Use PIPES instead of a socketpair()])
AC_DEFINE(DISABLE_SHADOW, 1,
[Define if you want to disable shadow passwords])
- AC_DEFINE(IP_TOS_IS_BROKEN, 1,
- [Define if your system choked on IP TOS setting])
AC_DEFINE(NO_X11_UNIX_SOCKETS, 1,
[Define if X11 doesn't support A...
2012 Mar 26
1
[PATCH] configure.in: fix AC_ARG_ENABLE and AC_ARG_WITH
...les changed, 33 insertions(+), 17 deletions(-)
diff --git a/configure.in b/configure.in
index 2ea69f6..a03baf6 100644
--- a/configure.in
+++ b/configure.in
@@ -73,30 +73,44 @@ case $host_os in
esac
AC_ARG_ENABLE(uml,
- AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]),
- [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
- uml=true
- ]
+ AS_HELP_STRING([--disable-uml], [enable support for User Mode Linux]),
+ [ AS_IF([test "x$enable_uml" = "xyes"],
+ [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
+ uml=true
+ ],
+ [uml=false])
+ ],
+...
2001 Feb 13
1
configure.in reorder patch
...gure.in Mon Feb 12 17:47:55 2001
@@ -223,7 +223,7 @@
LDFLAGS="$LDFLAGS -L/usr/local/lib"
MANTYPE='$(CATMAN)'
mansubdir=cat
- LIBS="$LIBS -lgen -lsocket -los -lprot -lx -ltinfo -lm"
+ LIBS="$LIBS -los -lprot -lx -ltinfo -lm"
no_dev_ptmx=1
RANLIB=true
AC_DEFINE(BROKEN_SYS_TERMIO_H)
@@ -295,93 +295,41 @@
]
)
+# Checks for header files.
+AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h regex.h shadow.h security/pam_appl.h sys/bityp...
2001 Oct 07
3
socks and misc patch to 2.9.9p2
...[],
+ [ AC_MSG_ERROR(Could not find the $withval library.
+You must first install socks.) ])
+ ;;
+ esac ],
+ AC_MSG_RESULT(no)
+ )
+fi
+
+
+
+if test "x$socks" = "x4"; then
+ AC_DEFINE(SOCKS)
+ AC_DEFINE(SOCKS4)
+ CPPFLAGS="$CPPFLAGS -I/usr/local/include"
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
+fi
+
+if test "x$socks" = "x5"; then
+ AC_DEFINE(SOCKS)
+ AC_DEFINE(SOCKS5)
+ AC_DEFINE(Rconnect,SOCKSconnect)
+...
2002 May 11
4
socks5 support
...[],
+ [ AC_MSG_ERROR(Could not find the $withval library.
+You must first install socks.) ])
+ ;;
+ esac ],
+ AC_MSG_RESULT(no)
+ )
+fi
+
+
+
+if test "x$socks" = "x4"; then
+ AC_DEFINE(SOCKS)
+ AC_DEFINE(SOCKS4)
+ CPPFLAGS="$CPPFLAGS -I/usr/local/include"
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
+fi
+
+if test "x$socks" = "x5"; then
+ AC_DEFINE(SOCKS)
+ AC_DEFINE(SOCKS5)
+ AC_DEFINE(Rconnect,SOCKSconnect)
+...
2006 Sep 30
1
<net/if_tap.h> on FreeBSD
FreeBSD's <net/if_tap.h> requires u_char to be defined:
checking net/if_tap.h usability... no
checking net/if_tap.h presence... yes
configure: WARNING: net/if_tap.h: present but cannot be compiled
configure: WARNING: net/if_tap.h: check for missing prerequisite headers?
configure: WARNING: net/if_tap.h: see the Autoconf documentation
configure: WARNING: net/if_tap.h: section
2002 Mar 07
1
Irix joblimits failure (was: Re: New snapshot)
...r optional symbols (like jlimit_start) at run-time. I think these patches will let all all IRIX 6.5 systems build images that will test for job limit support dynamically:
--- ./configure.ac Wed Feb 27 01:12:35 2002
+++ ../openssh-3.1p1/./configure.ac Thu Mar 7 15:50:21 2002
@@ -115,7 +115,7 @@
AC_DEFINE(WITH_IRIX_ARRAY)
AC_DEFINE(WITH_IRIX_PROJECT)
AC_DEFINE(WITH_IRIX_AUDIT)
- AC_CHECK_FUNC(jlimit_startjob, [AC_DEFINE(WITH_IRIX_JOBS)])
+ AC_DEFINE(WITH_IRIX_JOBS)
AC_DEFINE(BROKEN_INET_NTOA)
;;
*-*-linux*)
--- ./openbsd-compat/port-irix.c Tue Feb 19 15:02:49 2002
+++ ../openssh-3.1p1/./...
2001 May 16
1
[PATCH]: configure.in
...======
RCS file: /cvs/openssh_cvs/configure.in,v
retrieving revision 1.285
diff -u -p -r1.285 configure.in
--- configure.in 2001/05/08 20:42:28 1.285
+++ configure.in 2001/05/16 16:22:50
@@ -64,6 +64,7 @@ case "$host" in
*-*-cygwin*)
LIBS="$LIBS -lregex /usr/lib/textmode.o"
AC_DEFINE(HAVE_CYGWIN)
+ AC_DEFINE(USE_PIPES)
AC_DEFINE(DISABLE_SHADOW)
AC_DEFINE(IPV4_DEFAULT)
AC_DEFINE(IP_TOS_IS_BROKEN)
Thanks,
Corinna
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen at redhat.com
2002 Jul 04
1
[PATCH]: Remove HAVE_CYGWIN in favor of NO_IPPORT_RESERVED_CONCEPT
...===============================================================
RCS file: /cvs/openssh_cvs/configure.ac,v
retrieving revision 1.73
diff -u -p -r1.73 configure.ac
--- configure.ac 28 Jun 2002 00:37:33 -0000 1.73
+++ configure.ac 4 Jul 2002 09:13:30 -0000
@@ -86,6 +86,7 @@ case "$host" in
AC_DEFINE(IPV4_DEFAULT)
AC_DEFINE(IP_TOS_IS_BROKEN)
AC_DEFINE(NO_X11_UNIX_SOCKETS)
+ AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
AC_DEFINE(BROKEN_FD_PASSING)
AC_DEFINE(SETGROUPS_NOOP)
;;
Index: readconf.c
===================================================================
RCS file: /cvs/openssh_cvs/read...
2005 Feb 24
1
[PATCH] Drop SETGROUPS_NOOP
...=========================================================
RCS file: /cvs/openssh_cvs/configure.ac,v
retrieving revision 1.247
diff -p -u -r1.247 configure.ac
--- configure.ac 24 Feb 2005 01:12:35 -0000 1.247
+++ configure.ac 24 Feb 2005 12:59:53 -0000
@@ -158,7 +158,6 @@ case "$host" in
AC_DEFINE(NO_X11_UNIX_SOCKETS)
AC_DEFINE(NO_IPPORT_RESERVED_CONCEPT)
AC_DEFINE(DISABLE_FD_PASSING)
- AC_DEFINE(SETGROUPS_NOOP)
;;
*-*-dgux*)
AC_DEFINE(IP_TOS_IS_BROKEN)
Index: openbsd-compat/bsd-misc.c
===================================================================
RCS file: /cvs/openssh_cvs/op...
2002 Apr 22
0
[Bug 224] New: configure.ac changes for crays
...m
--- configure.ac.orig Mon Apr 22 14:31:27 2002
+++ configure.ac Mon Apr 22 14:32:48 2002
@@ -236,12 +236,29 @@
AC_CHECK_FUNCS(getluid setluid)
MANTYPE=man
;;
+*-*-unicosmk*)
+ no_libsocket=1
+ no_libnsl=1
+ not_sco=1
+ MANTYPE=cat
+ AC_DEFINE(USE_PIPES)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX)
+ AC_DEFINE(USE_UTMP)
+ AC_DEFINE(USE_WTMP)
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
+ LIBS="$LIBS -lshare -lgen -lrsc -luex -lacm"
+ ;;
*-*-unicos*)
no_libsocket=1
no_libnsl=1
+ n...
2002 Apr 22
0
[Bug 224] configure.ac changes for crays
...):
--- configure.ac.orig Mon Apr 22 14:31:27 2002
+++ configure.ac Mon Apr 22 14:32:48 2002
@@ -236,12 +236,29 @@
AC_CHECK_FUNCS(getluid setluid)
MANTYPE=man
;;
+*-*-unicosmk*)
+ no_libsocket=1
+ no_libnsl=1
+ not_sco=1
+ MANTYPE=cat
+ AC_DEFINE(USE_PIPES)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX)
+ AC_DEFINE(USE_UTMP)
+ AC_DEFINE(USE_WTMP)
+ LDFLAGS="$LDFLAGS"
+ LIBS="$LIBS -lshare -lgen -lrsc -luex -lacm"
+ ;;
*-*-unicos*)
no_libsocket=1
no_libnsl=1
+ not_sco=1
+...
2001 Nov 22
1
[PATCH]: Fix configure.ac to allow linking against PCRE on Cygwin
...onfigure.ac
===================================================================
RCS file: /cvs/openssh_cvs/configure.ac,v
retrieving revision 1.4
diff -u -p -r1.4 configure.ac
--- configure.ac 2001/11/03 19:09:33 1.4
+++ configure.ac 2001/11/22 11:57:34
@@ -65,7 +65,7 @@ case "$host" in
AC_DEFINE(DISABLE_LASTLOG)
;;
*-*-cygwin*)
- LIBS="$LIBS -lregex /usr/lib/textmode.o"
+ LIBS="$LIBS /usr/lib/textmode.o"
AC_DEFINE(HAVE_CYGWIN)
AC_DEFINE(USE_PIPES)
AC_DEFINE(DISABLE_SHADOW)
@@ -367,6 +367,17 @@ if test "x$with_tcp_wrappers" != "xno" ;
AC_C...
2003 Sep 17
5
problems with 3.7.1p1 on IRIX (again)
Hi,
I've seen a few messages re. problems with 3.7.1p1 on IRIX 6.5...
I'm using 6.5.19 and having no trouble compiling, installing and
starting, but sshd just closes the connection with no explanation.
debug/verbose modes don't seem to give any clues.
Darren Tucker suggested defining BROKEN_GETADDRINFO in config.h,
but I find that compilation then fails (assuming I've implemented
2004 Oct 21
3
1.0-test51
http://dovecot.org/test/
This release is built with autoconf 2.59 and libtool 1.9. We'll see how
it works out :) The required changes were done by Matthias Andree.
- The last fix for connection hanging made IDLE use 100% CPU
- We don't use Maildir/.INBOX/ directory anymore, indexes are stored
in Maildir-root
- Don't crash with FETCH BODY[n.MIME]
- Changed %p (protocol)
2018 Nov 05
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
...bol error if linking statically).
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 10696513..199975fe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2865,7 +2865,7 @@ if test "x$openssl" = "xyes" ; then
[AC_DEFINE([HAVE_EVP_CIPHER_CTX_GET_IV], [1],
[Define if libcrypto has EVP_CIPHER_CTX_get_iv])])
AC_SEARCH_LIBS([EVP_CIPHER_CTX_set_iv], [crypto],
- [AC_DEFINE([HAVE_EVP_CIPHER_CTX_GET_IV], [1],
+ [AC_DEFINE([HAVE_EVP_CIPHER_CTX_SET_IV], [1],
[Define if libcrypto has EVP_CIPHER_CTX_set_iv])...
2006 Feb 07
0
configure.ac: typos in Ultrix and NewsOS sections
...penssh/cvs/openssh_cvs/configure.ac,v
retrieving revision 1.327
diff -u -p -r1.327 configure.ac
--- configure.ac 5 Feb 2006 19:27:10 -0000 1.327
+++ configure.ac 7 Feb 2006 22:18:34 -0000
@@ -345,7 +345,7 @@ main() { if (NSVersionOfRunTimeLibrary("
fi
;;
mips-sony-bsd|mips-sony-newsos4)
- AC_DEFINE(NEED_SETPRGP, 1, [Need setpgrp to acquire controlling tty])
+ AC_DEFINE(NEED_SETPGRP, 1, [Need setpgrp to acquire controlling tty])
SONY=1
;;
*-*-netbsd*)
@@ -589,7 +589,7 @@ mips-sony-bsd|mips-sony-newsos4)
*-*-ultrix*)
AC_DEFINE(BROKEN_GETGROUPS, 1, [getgroups(0,NULL) will return -1])...