Displaying 12 results from an estimated 12 matches for "ac_check_file".
2002 Mar 25
0
[Bug 184] New: 3.1p1 openssh fails to build a working sshd on Trusted HP-UX 10.26
...BLE_UTMP)
+ AC_DEFINE(SPT_TYPE,SPT_PSTAT)
+ LIBS="$LIBS -lxnet -lsec -lsecpw"
+ disable_ptmx_check=yes
+ ;;
*-*-hpux10*)
if test -z "$GCC"; then
CFLAGS="$CFLAGS -Ae"
***************
*** 1769,1780 ****
fi
if test -z "$no_dev_ptmx" ; then
! AC_CHECK_FILE("/dev/ptmx",
! [
! AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
! have_dev_ptmx=1
! ]
! )
fi
AC_CHECK_FILE("/dev/ptc",
[
--- 1784,1797 ----
fi
if test -z "$no_dev_ptmx" ; then
! if test "x$disable_ptmx_check" != "xyes" ; then
! AC...
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...dr="no" ]
+ [ ac_cv_have_control_in_msghdr="no" ],
+ [ ac_cv_have_control_in_msghdr="yes" ]
)
])
if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then
@@ -2115,13 +2153,14 @@
)
fi
fi
+if test "$cross_compiling" != yes; then
AC_CHECK_FILE("/dev/ptc",
[
AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
have_dev_ptc=1
]
)
-
+fi
# Options from here on. Some of these are preset by platform above
AC_ARG_WITH(mantype,
[ --with-mantype=man|cat|doc Set man page type],
@@ -2215,15 +2254,18 @@
fi
# check for /etc/defaul...
2006 Apr 25
0
need automake/autoconf help to build RnetCDF and ncdf packages
...etCDF'
I have no reason to doubt that the Fedora-Extras authors are right,
and that some changes in the configure scripts for these packages are
required.
In RnetCDF's configure.ac file, I see the place where it specifies the
NETCDF_INCDIR
if test -z "${NETCDF_PATH}"; then
AC_CHECK_FILE(/usr/local/include/netcdf.h,
[USR_LOCAL_NETCDF_H=TRUE], [USR_LOCAL_NETCDF_H=FALSE])
if test "${USR_LOCAL_NETCDF_H}" = TRUE; then
NETCDF_INCDIR="/usr/local/include"
NETCDF_LIBDIR="/usr/local/lib"
NETCDF_LIBNAME="netcdf"...
2008 Mar 13
0
need automake/autoconf help to build RnetCDF and ncdf packages
.../RNetCDF'
I have no reason to doubt that the Fedora-Extras authors are right,
and that some changes in the configure scripts for these packages are
required.
In RnetCDF's configure.ac file, I see the place where it specifies the
NETCDF_INCDIR
if test -z "${NETCDF_PATH}"; then
AC_CHECK_FILE(/usr/local/include/netcdf.h,
[USR_LOCAL_NETCDF_H=TRUE], [USR_LOCAL_NETCDF_H=FALSE])
if test "${USR_LOCAL_NETCDF_H}" = TRUE; then
NETCDF_INCDIR="/usr/local/include"
NETCDF_LIBDIR="/usr/local/lib"
NETCDF_LIBNAME="netcdf"
HAVE_NETCDF_H=TRUE
elif test &quo...
2001 Jan 31
1
PTY
environment
1)compiler: cc -v
Reading specs from /usr/lib/gcc-lib/i386-slackware-linux/2.95.2/specs
gcc version 2.95.2 19991024 (release)
2)openssh: CVS from 31 jan 2001
3)libc: GNU libc 2.2.1
output form make pty.o is:
#make pty.o
gcc -g -O2 -Wall -I/usr/local/ssl/include -I. -I. -DETCDIR=\"/etc\"
-D_PATH_SSH_PROGRAM=\"/usr/bin/ssh\"
2002 Jun 29
0
[Bug 321] New: configure does not work when cross compiling
...>
#include <sys/uio.h>
+
],
+
[
int main() {
#ifdef msg_control
+#error "msg_control is a macro"
exit(1);
#endif
struct msghdr m;
@@ -1860,20 +1874,17 @@
if test -z "$no_dev_ptmx" ; then
if test "x$disable_ptmx_check" != "xyes" ; then
-
AC_CHECK_FILE("/dev/ptmx",
-
[
-
AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
-
have_dev_ptmx=1
-
]
-
)
+
if test -f "/dev/ptc" ; then
+
AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX)
+
have_dev_ptmx=1
+
fi
fi
fi
-AC_CHECK_FILE("/dev/ptc",
-
[
-
AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PT...
1999 Dec 29
1
Patch to use Dante socks library
...+ [ --with-dante=DIR Use Dante SOCKS lib (default is system library path)],
+ [
+ AC_DEFINE(HAVE_DANTE)
+ if test "x$withval" != "xno" ; then
+ if test -n $withval ; then
+ LIBS="$LIBS -L$withval"
+ fi
+ LIBS="$LIBS -lsocks"
+ fi
+ ]
+)
AC_CHECK_FILE("/dev/ptmx", AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX))
AC_CHECK_FILE("/dev/ptc", AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC))
$NetBSD$
--- acconfig.h.orig Mon Dec 27 23:09:36 1999
+++ acconfig.h Wed Dec 29 08:57:46 1999
@@ -24,6 +24,9 @@
/* Are we using the Entropy gathering daemon */...
2002 Apr 03
2
cross compilation?
...]
)
@@ -1457,7 +1457,10 @@
#else
main() { exit(0); }
#endif
-
], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ]
+
],
+
[ true ],
+
[ AC_DEFINE(BROKEN_SNPRINTF) ],
+
[ AC_DEFINE(BROKEN_SNPRINTF) ]
)
fi
AC_SUBST(NO_SFTP)
@@ -1776,12 +1779,11 @@
]
)
fi
-AC_CHECK_FILE("/dev/ptc",
-
[
-
AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
-
have_dev_ptc=1
-
]
-)
+
+if test -f "/dev/ptc" ; then
+
AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC)
+
have_dev_ptc=1
+fi
# Options from here on. Some of these are preset by platform above
AC_ARG_WITH(mantype,
-...
2010 Dec 09
0
[ANNOUNCE] xkbevd 1.1.2
...utils.c functions
Add printf attributes to util.c functions
Fix errors found by gcc's printf attribute check
Purge RCS/CVS version tags
xkbevd 1.1.2
Gaetan Nadon (1):
config: cfgparse.c is in the root dir and not in src dir
Martin Jansa (1):
config: replace AC_CHECK_FILE with test -f
git tag: xkbevd-1.1.2
http://xorg.freedesktop.org/archive/individual/app/xkbevd-1.1.2.tar.bz2
MD5: d8d0bc5935b4b8f016ed92fd369dd385
SHA1: f7d4eb5485c2b450266e4e467106f4d8560f4edd
http://xorg.freedesktop.org/archive/individual/app/xkbevd-1.1.2.tar.gz
MD5: f83015d2f617863f46ecfe29be...
2013 Jan 13
0
[ANNOUNCE] xgc 1.0.4
...rs of build improvements,
cleanups, and bug fixes; including making the build configuration scripts
compatible with automake-1.13.
Alan Coopersmith (3):
Bounds check value passed to WriteText
config: Add missing AC_CONFIG_SRCDIR
xgc 1.0.4
Gaetan Nadon (5):
config: replace AC_CHECK_FILE with test -f
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
config: move man pages into their own directory
config: let Automake handle Lex and Yacc dist and cleaning
git tag: xgc-1.0.4
http:...
2008 Mar 05
0
[ANNOUNCE] util-macros 1.1.6
Adam Jackson (1):
bump to 1.1.6
Jeremy Huddleston (1):
Support version strings like 1.2.3-blah4
Keith Packard (1):
Cannot use AC_CHECK_FILE when cross compiling; assume no LINUXDOC.
git tag: util-macros-1.1.6
http://xorg.freedesktop.org/archive/individual/util/util-macros-1.1.6.tar.bz2
MD5: 5b82bf7c25112f2ce7e2a3638a91a83c util-macros-1.1.6.tar.bz2
SHA1: 9d0d08630a3549a02cd6cee181d7fbf1a1c8c05c util-macros-1.1.6.tar.bz2
http://xor...
2014 Aug 14
0
Problem with enabling /etc/default(s)/login on Cygwin
...e this:
if --disable-etc-default-login is given
etc_default_login=no
else if --enable-etc-default-login is given
etc_default_login=yes
external_path_file=/etc/default/login
AC_DEFINE([HAVE_ETC_DEFAULT_LOGIN], [1], ...
else if cross_compiling
etc_default_login=no
else if AC_CHECK_FILE(["/etc/default/login"]
etc_default_login=yes
else
etc_default_login=no
???
Thanks,
Corinna
Index: session.c
===================================================================
RCS file: /cvs/openssh/session.c,v
retrieving revision 1.434
diff -u -p -r1.434 session.c
--- sess...