Thread: [Libsysio-commit] HEAD: libsysio configure.in
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2003-07-26 05:21:22
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv24840 Modified Files: configure.in Log Message: Add check for existence of st_gen in stat struct Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -w -b -B -p -r1.5 -r1.6 --- configure.in 26 Mar 2003 00:05:59 -0000 1.5 +++ configure.in 25 Jul 2003 14:44:14 -0000 1.6 @@ -209,6 +209,19 @@ AC_MSG_RESULT($have__st_ino) if test x$have__st_ino = xyes; then AC_DEFINE(HAVE__ST_INO) fi +# Check for st_gen +# +AC_MSG_CHECKING(for st_gen) +AC_TRY_COMPILE([ +#include <sys/stat.h>], +[struct stat st; +st.st_gen = 0;], + have_st_gen=yes, + have_st_gen=no) +AC_MSG_RESULT($have_st_gen) +if test x$have_st_gen = xyes; then + AC_DEFINE(HAVE_GENERATION) +fi AC_MSG_CHECKING(whether .text pseudo-op must be used) AC_CACHE_VAL(sysio_asm_dot_text, [dnl |
From: Sonja T. <so...@us...> - 2003-08-18 15:52:24
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv20431/libsysio Modified Files: configure.in Log Message: Making "make check" work for executing the basic sanity tests Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -w -b -B -p -r1.7 -r1.8 --- configure.in 14 Aug 2003 18:39:32 -0000 1.7 +++ configure.in 18 Aug 2003 15:52:20 -0000 1.8 @@ -173,6 +173,7 @@ if test ${machine:0:5} = alpha && \ AC_DEFINE(ALPHA_LINUX) fi AC_MSG_RESULT($alpha_linux_env) +AM_CONDITIONAL(TEST_ALPHA_ARG, test x$alpha_linux_env = xyes) # check for 64 bit stat, fstat, truncate, ftruncate syscalls # |
From: Ruth K. <rk...@us...> - 2003-10-23 18:29:32
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv23724 Modified Files: configure.in Log Message: older bash on alpha RH6, no substring. and slight mod to cplant_tests Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -b -B -p -r1.10 -r1.11 --- configure.in 10 Oct 2003 18:50:30 -0000 1.10 +++ configure.in 23 Oct 2003 16:06:13 -0000 1.11 @@ -89,8 +89,7 @@ AC_ARG_WITH(cplant_tests, [ case "${withval}" in yes) AC_MSG_ERROR(need path to compiler for --with-cplant-tests);; no) with_cplant_tests=no;; - *) CPLANT_PATH=${withval} - CC=${CPLANT_PATH}/cplant-cc + *) CC=${withval} CCDEPMODE=${CC} CPP="${CC} -E" AC_CHECK_FILE(${CC}, @@ -172,8 +171,8 @@ fi # AC_MSG_CHECKING(for alpha linux) alpha_linux_env=no -if test ${machine:0:5} = alpha && \ - test ${os:0:5} = linux; then +if test `expr ${machine} : "alpha"` = 5 && \ + test `expr ${os} : "linux"` = 5; then alpha_linux_env=yes AC_DEFINE(ALPHA_LINUX) fi |
From: Ruth K. <rk...@us...> - 2004-01-12 18:10:35
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv5172 Modified Files: configure.in Log Message: tweak for compatibility with alpha RH6 env Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -b -B -p -r1.12 -r1.13 --- configure.in 16 Dec 2003 15:43:14 -0000 1.12 +++ configure.in 12 Jan 2004 18:10:32 -0000 1.13 @@ -32,7 +32,7 @@ AC_ARG_WITH(lib-dir, esac;], [ LIBBUILD_DIR=`pwd`/lib; test -d ${LIBBUILD_DIR} || mkdir ${LIBBUILD_DIR} || have_lib_dir=no;]) -if test x${have_lib_dir} == xyes; then +if test x${have_lib_dir} = xyes; then echo "Using sysio library directory ${LIBBUILD_DIR}" else AC_MSG_ERROR(Need writeable path to sysio library directory ${LIBBUILD_DIR}) @@ -224,7 +224,7 @@ fi # Check for fdatasync syscall # AC_MSG_CHECKING(for fdatasync system call) -if test x$alpha_linux_env == xyes; then +if test x$alpha_linux_env = xyes; then _syscallnum=SYS_osf_fdatasync else _syscallnum=SYS_fdatasync |
From: Lee W. <lw...@us...> - 2004-01-21 14:50:55
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1:/tmp/cvs-serv24940 Modified Files: configure.in Log Message: Noted that the sockets driver is "EXPERIMENTAL". It probably cannot link successfully right now without other mods from CFS. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -w -b -B -p -r1.14 -r1.15 --- configure.in 21 Jan 2004 14:44:53 -0000 1.14 +++ configure.in 21 Jan 2004 14:50:52 -0000 1.15 @@ -124,7 +124,7 @@ AM_CONDITIONAL(WITH_CPLANT_TESTS, test x AC_ARG_WITH(sockets, AC_HELP_STRING([--with-sockets], - [build sockets interface driver]), + [build sockets interface driver (EXPERIMENTAL)]), [ case "${withval}" in yes) ;; no) ;; |
From: Lee W. <lw...@us...> - 2005-05-21 03:24:36
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31148 Modified Files: configure.in Log Message: Change version to 1.0; We're ready. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.19 retrieving revision 1.20 diff -u -w -b -B -p -r1.19 -r1.20 --- configure.in 18 Nov 2004 13:00:44 -0000 1.19 +++ configure.in 21 May 2005 03:24:27 -0000 1.20 @@ -1,4 +1,4 @@ -AC_INIT(libsysio, 0.1) +AC_INIT(libsysio, 1.0) AC_CANONICAL_HOST |
From: Lee W. <lw...@us...> - 2005-10-31 18:51:08
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28642 Modified Files: configure.in Log Message: Internal API changes visible to the drivers beg an update of the version number. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.21 retrieving revision 1.22 diff -u -w -b -B -p -r1.21 -r1.22 --- configure.in 19 Oct 2005 19:30:56 -0000 1.21 +++ configure.in 31 Oct 2005 18:50:58 -0000 1.22 @@ -1,4 +1,4 @@ -AC_INIT(libsysio, 1.0) +AC_INIT(libsysio, 1.1) AC_CANONICAL_HOST |
From: Lee W. <lw...@us...> - 2006-02-27 16:46:45
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30279 Modified Files: configure.in Log Message: New version. Tracking release to Cray and ClusterFS. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.22 retrieving revision 1.23 diff -u -w -b -B -p -r1.22 -r1.23 --- configure.in 31 Oct 2005 18:50:58 -0000 1.22 +++ configure.in 27 Feb 2006 16:46:41 -0000 1.23 @@ -1,4 +1,4 @@ -AC_INIT(libsysio, 1.1) +AC_INIT(libsysio, 1.2) AC_CANONICAL_HOST |
From: Ruth K. <rk...@us...> - 2006-12-12 00:48:22
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv31794 Modified Files: configure.in Log Message: set SYSIO_TRACING to 1 instead of yes, and remove dup configure block Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.23 retrieving revision 1.24 diff -u -w -b -B -p -r1.23 -r1.24 --- configure.in 27 Feb 2006 16:46:41 -0000 1.23 +++ configure.in 12 Dec 2006 00:48:18 -0000 1.24 @@ -118,7 +118,7 @@ AC_ARG_WITH(tracing, AC_HELP_STRING([--with-tracing], [enable tracing support]), [ case "${withval}" in - yes) TRACING=-DSYSIO_TRACING=${withval} ;; + yes) TRACING=-DSYSIO_TRACING=1 ;; no) ;; *) AC_MSG_ERROR(bad value ${withval} for --with-tracing) ;; esac], @@ -182,17 +182,6 @@ if test x$with_lustre_hack = xyes; then AC_DEFINE(HAVE_LUSTRE_HACK) fi -AC_ARG_WITH(tracing, - AC_HELP_STRING([--with-tracing], - [enable tracing support]), - [ case "${withval}" in - yes) TRACING=-DSYSIO_TRACING=${withval} ;; - no) ;; - *) AC_MSG_ERROR(bad value ${withval} for --with-tracing) ;; - esac], - [TRACING=-DSYSIO_TRACING=1]) -AC_SUBST(TRACING) - AC_ARG_WITH(alternate-symbols, AC_HELP_STRING([--with-alternate-symbols@<:@=<qualifier>@:>@], [Prepend standard, public, symbols with a unique qualifer]), |
From: Ruth K. <rk...@us...> - 2006-12-19 21:22:37
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25211 Modified Files: configure.in Log Message: aclocal 1.10 is particular about ordering of AC_PROG_CC Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.24 retrieving revision 1.25 diff -u -w -b -B -p -r1.24 -r1.25 --- configure.in 12 Dec 2006 00:48:18 -0000 1.24 +++ configure.in 19 Dec 2006 21:22:33 -0000 1.25 @@ -13,9 +13,9 @@ case "$host_os" in esac AM_INIT_AUTOMAKE([subdir-objects]) +AC_PROG_CC AM_PROG_CC_C_O -AC_PROG_CC AC_PROG_RANLIB AC_PROG_MAKE_SET AC_HEADER_STDC |
From: Lee W. <lw...@us...> - 2007-01-02 20:44:17
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2466 Modified Files: configure.in Log Message: Fix return type for readlink with newer versions of glibc >From Oleg Drokin at Cluster File Systems: [...] newer glibc version readlink returns ssize_t instead of int, and thus libsysio cannot be compiled anymore due to conflicting declarations. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.25 retrieving revision 1.26 diff -u -w -b -B -p -r1.25 -r1.26 --- configure.in 19 Dec 2006 21:22:33 -0000 1.25 +++ configure.in 2 Jan 2007 20:44:10 -0000 1.26 @@ -238,6 +238,20 @@ if test "$machine" = rs6000; then machine="powerpc" fi +AC_MSG_CHECKING(if readlink returns ssize_t) +AC_TRY_COMPILE([ + include <unistd.h> +],[ + ssize_t readlink(const char *, char *, size_t); +], + readlink_returns_ssize_t="yes", + readlink_returns_ssize_t="yes" +) +AC_MSG_RESULT($readlink_returns_ssize_t) +if test x$readlink_returns_ssize_t = xyes; then + AC_DEFINE(HAVE_POSIX_1003_READLINK, 1, [readlink returns ssize_t]) +fi + # If we can't provoke the declaration of stat64 then we assume the # environment supports 64-bit file support naturally. Beware! AC_MSG_CHECKING(whether _LARGEFILE64_SOURCE definition is required) |
From: Lee W. <lw...@us...> - 2007-03-23 20:02:16
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12453 Modified Files: configure.in Log Message: The configure test for readlink was broken. The readlink module was improperly forcing the BSD variance. This is in compliance with the proper POSIX options. One note: The GNU includes just don't define a prototype for readlink sans extensions. The choices made here should be the correct ones. Your mileage may vary... Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.26 retrieving revision 1.27 diff -u -w -b -B -p -r1.26 -r1.27 --- configure.in 2 Jan 2007 20:44:10 -0000 1.26 +++ configure.in 23 Mar 2007 20:02:13 -0000 1.27 @@ -240,12 +240,15 @@ fi AC_MSG_CHECKING(if readlink returns ssize_t) AC_TRY_COMPILE([ - include <unistd.h> +#include <unistd.h> ],[ - ssize_t readlink(const char *, char *, size_t); +static void test_code() { + ssize_t rtn; + rtn = readlink("old", "new"); +} ], readlink_returns_ssize_t="yes", - readlink_returns_ssize_t="yes" + readlink_returns_ssize_t="no" ) AC_MSG_RESULT($readlink_returns_ssize_t) if test x$readlink_returns_ssize_t = xyes; then |
From: Lee W. <lw...@us...> - 2007-03-28 21:30:12
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv19222 Modified Files: configure.in Log Message: Go back to the old way of testing readlink. It works fine when strange env variables aren't defined -- They aren't really needed anymore. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.27 retrieving revision 1.28 diff -u -w -b -B -p -r1.27 -r1.28 --- configure.in 23 Mar 2007 20:02:13 -0000 1.27 +++ configure.in 28 Mar 2007 21:30:09 -0000 1.28 @@ -242,10 +242,7 @@ AC_MSG_CHECKING(if readlink returns ssiz AC_TRY_COMPILE([ #include <unistd.h> ],[ -static void test_code() { - ssize_t rtn; - rtn = readlink("old", "new"); -} + extern ssize_t readlink(const char *, char *, size_t); ], readlink_returns_ssize_t="yes", readlink_returns_ssize_t="no" |
From: Lee W. <lw...@us...> - 2007-04-12 21:22:45
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13675 Modified Files: configure.in Log Message: Fix readlink type test and add a check for any kind of symlink support at all. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.28 retrieving revision 1.29 diff -u -w -b -B -p -r1.28 -r1.29 --- configure.in 28 Mar 2007 21:30:09 -0000 1.28 +++ configure.in 12 Apr 2007 21:22:43 -0000 1.29 @@ -219,12 +219,6 @@ case "$host_os" in # These systems are always xcoff xcoff=yes elf=no - # ... and always needed... - AC_DEFINE(__USE_LARGEFILE64) - AC_DEFINE(_LARGE_FILES) - AC_DEFINE(_LARGE_FILE_API) - AC_DEFINE(_ALL_SOURCE) - AC_DEFINE(_XOPEN_SOURCE_EXTENDED) ;; esac @@ -238,18 +232,50 @@ if test "$machine" = rs6000; then machine="powerpc" fi -AC_MSG_CHECKING(if readlink returns ssize_t) +case "$host_os" in + gnu* | linux*) + AC_DEFINE(_XOPEN_SOURCE, 600) + ;; + aix*) + # ... and always needed... + AC_DEFINE(__USE_LARGEFILE64) + AC_DEFINE(_LARGE_FILES) + AC_DEFINE(_LARGE_FILE_API) + AC_DEFINE(_ALL_SOURCE) + AC_DEFINE(_XOPEN_SOURCE_EXTENDED) + ;; +esac + +AC_MSG_CHECKING(for symlink support) +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/stat.h> +],[ +#ifndef S_ISLNK +#error +#endif +], + symlink_support="yes", + symlink_support="no" +) +AC_MSG_RESULT($symlink_support) + +if test x$symlink_support = xyes; then + AC_MSG_CHECKING(if readlink returns int) AC_TRY_COMPILE([ #include <unistd.h> ],[ - extern ssize_t readlink(const char *, char *, size_t); + extern int readlink(const char *, char *, size_t); ], - readlink_returns_ssize_t="yes", - readlink_returns_ssize_t="no" + readlink_returns_int="yes", + readlink_returns_int="no" ) -AC_MSG_RESULT($readlink_returns_ssize_t) -if test x$readlink_returns_ssize_t = xyes; then - AC_DEFINE(HAVE_POSIX_1003_READLINK, 1, [readlink returns ssize_t]) + AC_MSG_RESULT($readlink_returns_int) + if test x$readlink_returns_int = no; then + AC_DEFINE(HAVE_POSIX_1003_READLINK, + 1, + [readlink returns ssize_t]) + fi fi # If we can't provoke the declaration of stat64 then we assume the |
From: Lee W. <lw...@us...> - 2007-04-30 16:52:27
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2000 Modified Files: configure.in Log Message: Merged "unification" branch. First, the changes alter the core to perform pnode-ops by pnode. However, it maintains the pre-existing interface in order to minimize driver changes. Second, more detailed tracing information is available now in the form of a tag, indicating which function the data is from, as well as arguments and return data. Note1: The S_IFDIR bit is no longer set when the pnode-op mkdir function is called. If you need that, set it in your driver. Note2: It is possible to encounter a disconnected tree in _sysio_pb_path. If so, it returns an empty string. This *might* be good enough for your driver. If not, you'll need a change for this as well -- In fact, you should go ahead and change it anyway. Instead of _sysio_pb_path, use _sysio_pb_pathof. This new function takes the base pnode and a pointer to a string. It returns an integer. The usual zero on success or a negated errno on failure. Note3: Sockets support is horribly broken and won't build. As far as I know, this was never used. Unless somebody tells me differently, sockets support will be deprecated in the next release. Otherwise, let me know and I'll fix it. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.29 retrieving revision 1.30 diff -u -w -b -B -p -r1.29 -r1.30 --- configure.in 12 Apr 2007 21:22:43 -0000 1.29 +++ configure.in 30 Apr 2007 16:52:19 -0000 1.30 @@ -161,7 +161,7 @@ AC_ARG_WITH(sockets, AC_HELP_STRING([--with-sockets], [build sockets interface driver (EXPERIMENTAL)]), [ case "${withval}" in - yes) ;; + yes) AC_MSG_ERROR(the sockets driver is broken right now);; no) ;; *) AC_MSG_ERROR(bad value ${withval} for --with-sockets) ;; esac], |
From: Lee W. <lw...@us...> - 2007-04-30 23:24:15
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2987 Modified Files: configure.in Log Message: Restore support of statvfs{,64}. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.30 retrieving revision 1.31 diff -u -w -b -B -p -r1.30 -r1.31 --- configure.in 30 Apr 2007 16:52:19 -0000 1.30 +++ configure.in 30 Apr 2007 23:24:12 -0000 1.31 @@ -343,6 +343,12 @@ if test x$have_st_gen = xyes; then AC_DEFINE(HAVE_GENERATION) fi +# +# Backward compatibility. The core no longer needs it. We used to check for +# this. Now we assume it and, so, want to provoke support from the drivers. +# +AC_DEFINE(_HAVE_STATVFS) + AC_MSG_CHECKING(whether .text pseudo-op must be used) AC_CACHE_VAL(sysio_asm_dot_text, [dnl cat > conftest.s <<EOF |
From: Ruth K. <rk...@us...> - 2007-05-09 23:16:25
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5699 Modified Files: configure.in Log Message: add ifdef _HAVE_STATVFS Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.31 retrieving revision 1.32 diff -u -w -b -B -p -r1.31 -r1.32 --- configure.in 30 Apr 2007 23:24:12 -0000 1.31 +++ configure.in 9 May 2007 23:16:20 -0000 1.32 @@ -69,7 +69,17 @@ AC_ARG_WITH(tests, *) AC_MSG_ERROR(bad value ${withval} for --with-tests) ;; esac], [with_tests=yes]) -AM_CONDITIONAL(WITH_TESTS, test x$with_tests = xyes) +AM_CONDITIONAL(WITH_TESTS, test x$with_tests == xyes) + +AC_ARG_WITH(statvfs, + AC_HELP_STRING([--with-statvfs],[include statvfs code]), + [ case "${withval}" in + yes) ;; + no) ;; + *) AC_MSG_ERROR(bad value ${withval} for --with-statvfs) ;; + esac], + [with_statvfs=no]) +AM_CONDITIONAL(_HAVE_STATVFS, test x$with_statvfs = xyes) AC_ARG_WITH(automount, AC_HELP_STRING([--with-automount@<:@=<automount-file-name>@:>@], @@ -347,8 +357,6 @@ fi # Backward compatibility. The core no longer needs it. We used to check for # this. Now we assume it and, so, want to provoke support from the drivers. # -AC_DEFINE(_HAVE_STATVFS) - AC_MSG_CHECKING(whether .text pseudo-op must be used) AC_CACHE_VAL(sysio_asm_dot_text, [dnl cat > conftest.s <<EOF |
From: Ruth K. <rk...@us...> - 2007-05-09 23:36:18
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13489 Modified Files: configure.in Log Message: typo Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.32 retrieving revision 1.33 diff -u -w -b -B -p -r1.32 -r1.33 --- configure.in 9 May 2007 23:16:20 -0000 1.32 +++ configure.in 9 May 2007 23:36:15 -0000 1.33 @@ -69,7 +69,7 @@ AC_ARG_WITH(tests, *) AC_MSG_ERROR(bad value ${withval} for --with-tests) ;; esac], [with_tests=yes]) -AM_CONDITIONAL(WITH_TESTS, test x$with_tests == xyes) +AM_CONDITIONAL(WITH_TESTS, test x$with_tests = xyes) AC_ARG_WITH(statvfs, AC_HELP_STRING([--with-statvfs],[include statvfs code]), |
From: Lee W. <lw...@us...> - 2007-08-20 19:12:12
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15038 Modified Files: configure.in Log Message: Split tracing support out. Added an initializer queue so that trace functionality may be added external to this library. to use it, register your initializer function with _sysio_register_trace using the _sysio_initializer_trace_q. Only the "func" argument is valid when the pseudo-event is called from _sysio_boot_trace. You might want to remove your initializer event from the initializer queue once called, unless it's ok to call it more than once. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.34 retrieving revision 1.35 diff -u -w -b -B -p -r1.34 -r1.35 --- configure.in 2 Jul 2007 18:58:15 -0000 1.34 +++ configure.in 20 Aug 2007 19:12:07 -0000 1.35 @@ -127,14 +127,14 @@ AM_CONDITIONAL(WITH_STATVFS, test x$with AC_SUBST(_HAVE_STATVFS) AC_ARG_WITH(tracing, - AC_HELP_STRING([--with-tracing], - [enable tracing support]), + AC_HELP_STRING([--with-tracing], [enable tracing support]), [ case "${withval}" in yes) TRACING=-DSYSIO_TRACING=1 ;; no) ;; *) AC_MSG_ERROR(bad value ${withval} for --with-tracing) ;; esac], - [TRACING=-DSYSIO_TRACING=1]) + [with_tracing=no]) +AM_CONDITIONAL(WITH_TRACING, test x$with_tracing = xyes) AC_SUBST(TRACING) AC_ARG_WITH(cplant_yod, |
From: Lee W. <lw...@us...> - 2007-08-20 19:30:58
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23924 Modified Files: configure.in Log Message: Bump the minor version number. Version is now 1.3 Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.36 retrieving revision 1.37 diff -u -w -b -B -p -r1.36 -r1.37 --- configure.in 20 Aug 2007 19:28:12 -0000 1.36 +++ configure.in 20 Aug 2007 19:30:54 -0000 1.37 @@ -1,4 +1,4 @@ -AC_INIT(libsysio, 1.2) +AC_INIT(libsysio, 1.3) AC_CANONICAL_HOST |
From: Ruth K. <rk...@us...> - 2007-08-24 16:50:31
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv17270 Modified Files: configure.in Log Message: typo in readlink configure Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.37 retrieving revision 1.38 diff -u -w -b -B -p -r1.37 -r1.38 --- configure.in 20 Aug 2007 19:30:54 -0000 1.37 +++ configure.in 24 Aug 2007 16:50:20 -0000 1.38 @@ -283,7 +283,7 @@ if test x$symlink_support = xyes; then readlink_returns_int="no" ) AC_MSG_RESULT($readlink_returns_int) - if test x$readlink_returns_int = no; then + if test x$readlink_returns_int = xno; then AC_DEFINE(HAVE_POSIX_1003_READLINK, 1, [readlink returns ssize_t]) |
From: Lee W. <lw...@us...> - 2008-04-16 12:49:53
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15670 Modified Files: configure.in Log Message: Bumped version to 1.4. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.38 retrieving revision 1.39 diff -u -w -b -B -p -r1.38 -r1.39 --- configure.in 24 Aug 2007 16:50:20 -0000 1.38 +++ configure.in 16 Apr 2008 12:49:39 -0000 1.39 @@ -1,4 +1,4 @@ -AC_INIT(libsysio, 1.3) +AC_INIT(libsysio, 1.4) AC_CANONICAL_HOST |
From: Lee W. <lw...@us...> - 2008-07-11 18:25:08
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15153 Modified Files: configure.in Log Message: Changed version to 2.0 to reflect the incompatibilites in the drivers API. Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.41 retrieving revision 1.42 diff -u -w -b -B -p -r1.41 -r1.42 --- configure.in 17 Jun 2008 17:18:56 -0000 1.41 +++ configure.in 11 Jul 2008 18:25:05 -0000 1.42 @@ -1,4 +1,4 @@ -AC_INIT(libsysio, 1.4) +AC_INIT(libsysio, 2.0) AC_CANONICAL_HOST |