OSSP CVS Repository

ossp - History for /ossp-pkg/xds/Makefile.in
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Directory]  [Show Milestones

DateVersion Description
2005-Jun-02 20:51    1.41    Check-in [5087]: Bumped year in copyright messages for year 2005. By rse.
2004-Sep-12 19:32    1.40    Check-in [4717]: Bumped year in copyright messages for year 2004. By rse. (diff)
2003-Feb-17 13:36    1.39    Check-in [3272]: upgrade to standard OSSP copyright and bump year to 2003 By rse. (diff)
2002-Mar-17 11:25    1.38    Check-in [2031]: update texts By rse. (diff)
2002-Jan-02 19:10    1.37    Check-in [1496]: switch to devtool By rse. (diff)
2002-Jan-02 18:13    1.36    Check-in [1495]: bump copyright year By rse. (diff)
2001-Aug-30 12:55    1.35    Check-in [797]: - Removed _GNU_SOURCE define, which is only needed when compiling on Linux with the -ansi flag set.

- Added @xdr_lib@ to LIBS define so that the test suites are linked with it when necessary on that platform. By simons. (diff)

2001-Aug-23 10:42    1.34    Check-in [751]: - Moved all float-related stuff into xds_engine_xdr.c so that we don't need any prototypes or structure declarations in the public header file.

- Renamed xds_float_t to my_float.

- Renamed float2xds_float() to float2myfloat(). By simons. (diff)

2001-Aug-22 22:22    1.33    Check-in [732]: Added the float2xds_float.c module to the list of library objects. By simons. (diff)
2001-Aug-13 21:48    1.32    Check-in [665]: Remove trailing whitespaces on all non-generated files. By rse. (diff)
2001-Aug-13 21:40    1.31    Check-in [664]: cleanup cleanup targets ;) again By rse. (diff)
2001-Aug-13 21:35    1.30    Check-in [662]: Add target for building ChangeLog from CVS logs By rse. (diff)
2001-Aug-13 21:23    1.29    Check-in [661]: Add autogen.sh for generating (after "make realclean") and/or updating (after new versions are released) the build environment. By rse. (diff)
2001-Aug-13 20:21    1.28    Check-in [659]: Try to fix cleaning targets By rse. (diff)
2001-Aug-12 13:31    1.27    Check-in [654]: Hhmm... who has introduced ossp.com?! Our project's domain is ossp.org, of course. By rse. (diff)
2001-Aug-11 17:28    1.26    Check-in [650]: libtool is generated. By rse. (diff)
2001-Aug-11 17:23    1.25    Check-in [649]: First cut for GNU Libtool 1.4 & GNU Shtool 1.5 support. This needs a little bit more cleanup which will follow later, but I want to flush my pending work now in order to continue with other projects. The XDS build environment now is in sync with the usual style for OSSP libraries. By rse. (diff)
2001-Aug-09 21:58    1.24    Check-in [640]: Use the license consistently. By rse. (diff)
2001-Aug-08 21:15    1.23    Check-in [634]: First cut of the ruthless style adjustments to OSSP XDS:

o adjust source tree to follow OSSP source tree style by heavily combining sources into smaller sets (needs more work when still missing parts are added later)

o automatic re-indentation of sources with GNU indent (still needs manual review and adjustments; will follow)

These two heavy steps were mostly done automatically with the help of two helper scripts written in Perl. So expect more manual adjustments to follow... By rse. (diff)

2001-Aug-08 13:21    1.22    Check-in [623]: Implemented xml engines for encoding or decoding strings plus the apropriate test cases. By simons. (diff)
2001-Aug-07 16:46    1.21    Check-in [617]: Added phony declaration for those targets not associated with a file in the repository. By simons. (diff)
2001-Aug-07 16:42    1.20    Check-in [616]: Added docs target to build the manual. By simons. (diff)
2001-Aug-07 16:23    1.19    Check-in [615]: xds.3 is no longer in this area... By rse. (diff)
2001-Aug-07 13:19    1.18    Check-in [614]: clean and distclean targets will now be executed in docs and regression-tests, too. By simons. (diff)
2001-Aug-07 13:16    1.17    Check-in [613]: Added docs directory to the build system. By simons. (diff)
2001-Aug-02 19:24    1.16    Check-in [603]: Implemented XML engines for octet streams. The base64-encoding code still needs some work, though: The test with an empty string currently fails. Also we had to do some weird work-arounds in the decoding routine because base64_decode does not honor srclen. By simons. (diff)
2001-Aug-02 17:03    1.15    Check-in [602]: Tabified the makefiles. By simons. (diff)
2001-Aug-02 16:56    1.14    Check-in [598]: Build modules that need 64-bit support only if 64-bit data types have been found! By simons. (diff)
2001-Aug-02 12:54    1.13    Check-in [595]: Improved dependencies to be more accurate. By simons. (diff)
2001-Aug-01 17:25    1.12    Check-in [591]: Merged the whole contents of branch "callback-semantic-rewrite" into the main branch. The changes there include:

- A change of the callback semantics; callbacks do now return XDS_ERR_(UNDER|OVER)FLOW in case the buffer size doesn't fit. Rather than passing the differing byte size through the return code, it is stored in the location used_buffer_size points to -- a new parameter provided to all callbacks.

   In order to implement this, the framework, all callbacks and most
   of the test suits had to be adapted.

- internal.h now provides the macro xds_check_parameter(), which can be used to verify the contents of function parameters with assert() and if in one line. If assert()s are deactivated, the routine will still return XDS_ERR_INVALID_ARG.

   Because of this change, internal.h now includes the system header
   assert.h. This means that this include coulde be removed from
   almost all modules.

- internal.h now provides the macros xds_init_(en|de)coding_engine(). These can be used to comfortably verify a callback's parameters and to verify the buffer size. All engines have been rewritten to use these. By simons. (diff)

2001-Aug-01 17:07    1.11.2.2    Check-in [590] on branch callback-semantic-rewrite: Activated the XML engines again. By simons. (diff)
2001-Aug-01 13:24    1.11.2.1    Check-in [589] on branch callback-semantic-rewrite: Temporarily disabled building of xml engines. By simons. (diff)
2001-Jul-31 17:27    1.11    Check-in [577]: Implemented xml_encode_begin(), xml_decode_begin(), xml_encode_end(), and xml_decode_end(). By simons. (diff)
2001-Jul-24 16:55    1.10    Check-in [565]: Removed rules for compiling C++ code: We don't have any. By simons. (diff)
2001-Jul-23 18:33    1.9    Check-in [562]: Implemented encoding and decoding of doubles in XML. By simons. (diff)
2001-Jul-23 18:17    1.8    Check-in [561]: Added XML implementations for uint32, int64, and uint64. By simons. (diff)
2001-Jul-23 17:33    1.7    Check-in [560]: Removed redundant include of sys/types.h. By simons. (diff)
2001-Jul-23 17:28    1.6    Check-in [558]: Added skeleton for the int32 XML encoding engine. By simons. (diff)
2001-Jul-23 15:04    1.5    Check-in [557]: Added skeleton code for encoding and decoding of double types. By simons. (diff)
2001-Jul-20 12:09    1.4    Check-in [548]: Hard-code the define of _GNU_SOURCE for the moment. By simons. (diff)
2001-Jul-20 11:55    1.3    Check-in [546]: Solved the dependency thing. By simons. (diff)
2001-Jul-20 11:54    1.2    Check-in [545]: Made comments in makefiles more accurate. By simons. (diff)
2001-Jul-20 11:53    1.1    Check-in [544]: Added skeleton autoconf support. By simons.

CVSTrac 2.0.1