1 --- misc/redland-1.0.7/LICENSE.txt Wed May 2 07:45:42 2007
2 +++ misc/build/redland-1.0.7/LICENSE.txt Mon Jun 16 15:55:51 2008
5 11. http://purl.org/net/dajobe/
6 12. http://www.bristol.ac.uk/
11 +For the avoidance of doubt, except that if any license choice other
12 +than GPL or LGPL is available it will apply instead, Sun elects to
13 +use only the Lesser General Public License version 2.1 (LGPLv2) at
14 +this time for any software where a choice of LGPL license versions
15 +is made available with the language indicating that LGPLv2.1 or any
16 +later version may be used, or where a choice of which version of the
17 +LGPL is applied is otherwise unspecified.
19 --- misc/redland-1.0.7/librdf/makefile.mk Mon Jun 16 19:32:46 2008
20 +++ misc/build/redland-1.0.7/librdf/makefile.mk Mon Jun 16 19:26:20 2008
23 +#*************************************************************************
25 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
27 +# Copyright 2008 by Sun Microsystems, Inc.
29 +# OpenOffice.org - a multi-platform office productivity suite
31 +# $RCSfile: redland-1.0.7.patch,v $
33 +# $Revision: 1.2.6.2 $
35 +# This file is part of OpenOffice.org.
37 +# OpenOffice.org is free software: you can redistribute it and/or modify
38 +# it under the terms of the GNU Lesser General Public License version 3
39 +# only, as published by the Free Software Foundation.
41 +# OpenOffice.org is distributed in the hope that it will be useful,
42 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
43 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44 +# GNU Lesser General Public License version 3 for more details
45 +# (a copy is included in the LICENSE file that accompanied this code).
47 +# You should have received a copy of the GNU Lesser General Public License
48 +# version 3 along with OpenOffice.org. If not, see
49 +# <http://www.openoffice.org/license.html>
50 +# for a copy of the LGPLv3 License.
52 +#*************************************************************************
54 +PRJ=..$/..$/..$/..$/..
60 +EXTERNAL_WARNINGS_NOT_ERRORS=TRUE
63 +# --- Settings -----------------------------------------------------
65 +.INCLUDE : settings.mk
67 +CDEFS+=-DLIBRDF_INTERNAL -DWIN32 -DNDEBUG -D_WINDOWS -D_USRDLL -DWIN32_EXPORTS
69 +# --- Files --------------------------------------------------------
72 + $(SLO)$/rdf_concepts.obj \
73 + $(SLO)$/rdf_digest.obj \
74 + $(SLO)$/rdf_digest_md5.obj \
75 + $(SLO)$/rdf_digest_openssl.obj \
76 + $(SLO)$/rdf_digest_sha1.obj \
77 + $(SLO)$/rdf_files.obj \
78 + $(SLO)$/rdf_hash.obj \
79 + $(SLO)$/rdf_hash_cursor.obj \
80 + $(SLO)$/rdf_hash_memory.obj \
81 + $(SLO)$/rdf_heuristics.obj \
82 + $(SLO)$/rdf_init.obj \
83 + $(SLO)$/rdf_iterator.obj \
84 + $(SLO)$/rdf_list.obj \
85 + $(SLO)$/rdf_log.obj \
86 + $(SLO)$/rdf_model.obj \
87 + $(SLO)$/rdf_model_storage.obj \
88 + $(SLO)$/rdf_node.obj \
89 + $(SLO)$/rdf_parser.obj \
90 + $(SLO)$/rdf_parser_raptor.obj \
91 + $(SLO)$/rdf_query.obj \
92 + $(SLO)$/rdf_query_rasqal.obj \
93 + $(SLO)$/rdf_query_results.obj \
94 + $(SLO)$/rdf_query_triples.obj \
95 + $(SLO)$/rdf_serializer.obj \
96 + $(SLO)$/rdf_serializer_raptor.obj \
97 + $(SLO)$/rdf_statement.obj \
98 + $(SLO)$/rdf_storage.obj \
99 + $(SLO)$/rdf_storage_file.obj \
100 + $(SLO)$/rdf_storage_list.obj \
101 + $(SLO)$/rdf_storage_hashes.obj \
102 + $(SLO)$/rdf_stream.obj \
103 + $(SLO)$/rdf_uri.obj \
104 + $(SLO)$/rdf_utf8.obj \
107 +# $(SLO)$/rdf_hash_bdb.obj \
108 +# $(SLO)$/rdf_storage_mysql.obj \
109 +# $(SLO)$/rdf_storage_sqlite.obj \
112 +SHL1DEPN= makefile.mk
113 +SHL1OBJS= $(SLOFILES)
115 +#SHL1TARGET= $(TARGET)$(DLLPOSTFIX)
116 +SHL1TARGET= $(TARGET)
117 +SHL1IMPLIB= $(TARGET)
118 +SHL1USE_EXPORTS=name
120 +#SHL1VERSIONMAP=../service/exports.map
121 +SHL1DEF=$(MISC)$/$(SHL1TARGET).def
122 +DEF1NAME=$(SHL1TARGET)
126 + $(PRJ)$/$(INPATH)$/lib$/libraptor.lib \
127 + $(PRJ)$/$(INPATH)$/lib$/librasqal.lib \
133 +# --- Targets ------------------------------------------------------
135 +.INCLUDE : target.mk
137 --- misc/redland-1.0.7/librdf/rdf_digest.c Wed Dec 5 18:25:18 2007
138 +++ misc/build/redland-1.0.7/librdf/rdf_digest.c Mon Jun 16 15:55:51 2008
141 librdf_free_digest(librdf_digest *digest)
146 LIBRDF_FREE(digest_context, digest->context);
148 --- misc/redland-1.0.7/librdf/rdf_hash.c Thu Dec 20 22:39:42 2007
149 +++ misc/build/redland-1.0.7/librdf/rdf_hash.c Mon Jun 16 15:55:51 2008
152 librdf_free_hash(librdf_hash* hash)
158 librdf_hash_close(hash);
159 --- misc/redland-1.0.7/librdf/rdf_init.c Tue Nov 6 16:26:18 2007
160 +++ misc/build/redland-1.0.7/librdf/rdf_init.c Mon Jun 16 15:55:51 2008
163 librdf_free_world(librdf_world *world)
168 /* NOTE: raptor is always initialised as a parser and may
169 * be also used as a serializer, but it is NOT finished
170 * in the serializer_raptor registration. Therefore, always
171 --- misc/redland-1.0.7/librdf/rdf_list.c Thu Dec 20 22:39:42 2007
172 +++ misc/build/redland-1.0.7/librdf/rdf_list.c Mon Jun 16 15:55:51 2008
175 librdf_free_list(librdf_list* list)
179 LIBRDF_ASSERT_RETURN(list->iterator_count,
180 "Iterators were active on freeing list", );
182 --- misc/redland-1.0.7/librdf/rdf_model.c Tue Oct 23 16:55:06 2007
183 +++ misc/build/redland-1.0.7/librdf/rdf_model.c Mon Jun 16 15:55:51 2008
185 librdf_iterator* iterator;
188 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(model, librdf_model);
194 --- misc/redland-1.0.7/librdf/rdf_node.c Thu Dec 20 22:39:42 2007
195 +++ misc/build/redland-1.0.7/librdf/rdf_node.c Mon Jun 16 15:55:51 2008
200 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(node, librdf_node);
206 --- misc/redland-1.0.7/librdf/rdf_parser.c Mon Dec 17 08:19:11 2007
207 +++ misc/build/redland-1.0.7/librdf/rdf_parser.c Mon Jun 16 15:55:51 2008
210 librdf_free_parser(librdf_parser *parser)
212 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(parser, librdf_parser);
216 if(parser->context) {
217 if(parser->factory->terminate)
218 --- misc/redland-1.0.7/librdf/rdf_query.c Tue Oct 23 16:55:06 2007
219 +++ misc/build/redland-1.0.7/librdf/rdf_query.c Mon Jun 16 15:55:51 2008
222 librdf_free_query(librdf_query* query)
224 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(query, librdf_query);
230 --- misc/redland-1.0.7/librdf/rdf_query_results.c Fri Oct 26 04:23:36 2007
231 +++ misc/build/redland-1.0.7/librdf/rdf_query_results.c Mon Jun 16 15:55:51 2008
234 librdf_free_query_results(librdf_query_results* query_results)
236 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(query_results, librdf_query_results);
240 if(query_results->query->factory->free_results)
241 query_results->query->factory->free_results(query_results);
244 librdf_free_query_results_formatter(librdf_query_results_formatter* formatter)
248 if(formatter->query_results->query->factory->free_results_formatter)
249 formatter->query_results->query->factory->free_results_formatter(formatter);
251 --- misc/redland-1.0.7/librdf/rdf_serializer.c Tue Oct 23 16:55:06 2007
252 +++ misc/build/redland-1.0.7/librdf/rdf_serializer.c Mon Jun 16 15:55:51 2008
255 librdf_free_serializer(librdf_serializer *serializer)
257 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(serializer, librdf_serializer);
261 if(serializer->context) {
262 if(serializer->factory->terminate)
263 --- misc/redland-1.0.7/librdf/rdf_statement.c Tue Nov 6 16:26:18 2007
264 +++ misc/build/redland-1.0.7/librdf/rdf_statement.c Mon Jun 16 15:55:51 2008
269 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(statement, librdf_statement);
274 world = statement->world;
275 --- misc/redland-1.0.7/librdf/rdf_storage.c Thu Dec 20 22:39:42 2007
276 +++ misc/build/redland-1.0.7/librdf/rdf_storage.c Mon Jun 16 15:55:51 2008
279 librdf_free_storage (librdf_storage* storage)
281 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(storage, librdf_storage);
287 --- misc/redland-1.0.7/librdf/rdf_storage_hashes.c Thu Dec 20 22:39:42 2007
288 +++ misc/build/redland-1.0.7/librdf/rdf_storage_hashes.c Mon Jun 16 15:55:51 2008
289 @@ -1389,6 +1389,66 @@
290 LIBRDF_STATEMENT_OBJECT);
294 +/* return -1 on failure, 1 if context contains stmt, 0 if not */
296 +librdf_storage_hashes_context_contains_statement(librdf_storage* storage,
297 + librdf_node* context_node,
298 + librdf_statement* statement)
300 + librdf_storage_hashes_context* context=(librdf_storage_hashes_context*)storage->context;
301 + librdf_hash_datum key, value; /* on stack - not allocated */
305 + if(context->contexts_index < 0) {
306 + librdf_log(storage->world, 0, LIBRDF_LOG_WARN, LIBRDF_FROM_STORAGE, NULL,
307 + "Storage was created without context support");
312 + size=librdf_node_encode(context_node, NULL, 0);
315 + key.data=(char*)LIBRDF_MALLOC(cstring, size);
318 + key.size=librdf_node_encode(context_node,
319 + (unsigned char*)key.data, size);
321 + LIBRDF_FREE(data, key.data);
326 + size=librdf_statement_encode(statement, NULL, 0);
328 + LIBRDF_FREE(data, key.data);
331 + value.data=(char*)LIBRDF_MALLOC(cstring, size);
333 + LIBRDF_FREE(data, key.data);
336 + value.size=librdf_statement_encode(statement, (unsigned char*)value.data, size);
338 + LIBRDF_FREE(data, value.data);
339 + LIBRDF_FREE(data, key.data);
343 + status=librdf_hash_exists(context->hashes[context->contexts_index], &key, &value);
344 + LIBRDF_FREE(data, value.data);
345 + LIBRDF_FREE(data, key.data);
347 + /* DO NOT free statement, ownership was not passed in */
354 * librdf_storage_hashes_context_add_statement:
355 * @storage: #librdf_storage object
356 @@ -1414,7 +1474,15 @@
357 "Storage was created without context support");
362 + /* Do not add duplicate statements */
363 + status=librdf_storage_hashes_context_contains_statement(storage, context_node, statement);
370 if(librdf_storage_hashes_add_remove_statement(storage,
371 statement, context_node, 1))
373 @@ -1595,7 +1663,6 @@
375 librdf_storage_hashes_context_serialise_stream_context* scontext=(librdf_storage_hashes_context_serialise_stream_context*)context;
376 librdf_hash_datum* v;
377 - librdf_node** cnp=NULL;
380 case LIBRDF_ITERATOR_GET_METHOD_GET_OBJECT:
381 @@ -1608,20 +1675,14 @@
382 return scontext->context_node;
385 - /* current stuff is out of date - get new cached answers */
386 - if(scontext->index_contexts) {
387 - if(scontext->context_node)
388 - librdf_free_node(scontext->context_node);
389 - scontext->context_node=NULL;
390 - cnp=&scontext->context_node;
393 + /* note: scontext->context_node is still valid */
395 librdf_statement_clear(&scontext->current);
397 v=(librdf_hash_datum*)librdf_iterator_get_value(scontext->iterator);
400 /* decode value content and optional context */
401 - if(!librdf_statement_decode_parts(&scontext->current, cnp,
402 + if(!librdf_statement_decode_parts(&scontext->current, NULL,
403 (unsigned char*)v->data, v->size)) {
406 --- misc/redland-1.0.7/librdf/rdf_storage_list.c Thu Dec 20 22:39:42 2007
407 +++ misc/build/redland-1.0.7/librdf/rdf_storage_list.c Mon Jun 16 15:55:51 2008
412 +/* return -1 on failure, 1 if context contains stmt, 0 if not */
414 +librdf_storage_list_context_contains_statement(librdf_storage* storage,
415 + librdf_node* context_node,
416 + librdf_statement* statement)
418 + librdf_storage_list_context* context=(librdf_storage_list_context*)storage->context;
419 + librdf_hash_datum key, value; /* on stack - not allocated */
423 + if(!context->index_contexts) {
424 + librdf_log(storage->world, 0, LIBRDF_LOG_WARN, LIBRDF_FROM_STORAGE, NULL,
425 + "Storage was created without context support");
430 + size=librdf_node_encode(context_node, NULL, 0);
433 + key.data=(char*)LIBRDF_MALLOC(cstring, size);
436 + key.size=librdf_node_encode(context_node,
437 + (unsigned char*)key.data, size);
439 + LIBRDF_FREE(data, key.data);
444 + size=librdf_statement_encode(statement, NULL, 0);
446 + LIBRDF_FREE(data, key.data);
449 + value.data=(char*)LIBRDF_MALLOC(cstring, size);
451 + LIBRDF_FREE(data, key.data);
454 + value.size=librdf_statement_encode(statement, (unsigned char*)value.data, size);
456 + LIBRDF_FREE(data, value.data);
457 + LIBRDF_FREE(data, key.data);
461 + status=librdf_hash_exists(context->contexts, &key, &value);
462 + LIBRDF_FREE(data, value.data);
463 + LIBRDF_FREE(data, key.data);
465 + /* DO NOT free statement, ownership was not passed in */
471 * librdf_storage_list_context_add_statement:
472 * @storage: #librdf_storage object
474 "Storage was created without context support");
479 + /* Do not add duplicate statements */
480 + status=librdf_storage_list_context_contains_statement(storage, context_node, statement);
487 /* Store statement + node in the storage_list */
488 sln=(librdf_storage_list_node*)LIBRDF_MALLOC(librdf_storage_list_node, sizeof(librdf_storage_list_node));
490 --- misc/redland-1.0.7/librdf/rdf_stream.c Mon Dec 24 00:23:10 2007
491 +++ misc/build/redland-1.0.7/librdf/rdf_stream.c Mon Jun 16 15:55:52 2008
494 librdf_free_stream(librdf_stream* stream)
499 if(stream->finished_method)
500 stream->finished_method(stream->context);
502 --- misc/redland-1.0.7/librdf/rdf_uri.c Tue Oct 23 16:55:06 2007
503 +++ misc/build/redland-1.0.7/librdf/rdf_uri.c Mon Jun 16 15:55:52 2008
508 - LIBRDF_ASSERT_OBJECT_POINTER_RETURN(uri, librdf_uri);
514 --- misc/redland-1.0.7/librdf/win32_rdf_config.h Sun May 6 19:14:36 2007
515 +++ misc/build/redland-1.0.7/librdf/win32_rdf_config.h Sat Jul 12 08:56:20 2008
517 #define HAVE_STRICMP 1
519 /* MS names for these functions */
520 -#define vsnprintf _vsnprintf
521 +// next line breaks build on wntmsci12
522 +//#define vsnprintf _vsnprintf
523 #define snprintf _snprintf
524 #define access _access
525 #define stricmp _stricmp
529 /* BDB has close method with 2 args */
530 -#define HAVE_BDB_CLOSE_2_ARGS 1
531 +// #define HAVE_BDB_CLOSE_2_ARGS 1
533 /* BDB defines DBC */
534 -#define HAVE_BDB_CURSOR 1
535 +// #define HAVE_BDB_CURSOR 1
537 /* BDB cursor method has 4 arguments */
538 -#define HAVE_BDB_CURSOR_4_ARGS 1
539 +// #define HAVE_BDB_CURSOR_4_ARGS 1
541 /* BDB defines DB_TXN */
542 -#define HAVE_BDB_DB_TXN 1
543 +// #define HAVE_BDB_DB_TXN 1
545 /* BDB has fd method with 2 args */
546 -#define HAVE_BDB_FD_2_ARGS 1
547 +// #define HAVE_BDB_FD_2_ARGS 1
549 /* Have BDB hash support */
550 -#define HAVE_BDB_HASH 1
551 +// #define HAVE_BDB_HASH 1
553 /* BDB has open method with 6 args */
554 /* #undef HAVE_BDB_OPEN_6_ARGS */
556 /* BDB has open method with 7 args */
557 -#define HAVE_BDB_OPEN_7_ARGS 1
558 +// #define HAVE_BDB_OPEN_7_ARGS 1
560 /* BDB has set_flags method */
561 -#define HAVE_BDB_SET_FLAGS 1
562 +// #define HAVE_BDB_SET_FLAGS 1
564 /* BDB has dbopen method */
565 /* #undef HAVE_DBOPEN */
567 /* BDB has db_create method */
568 -#define HAVE_DB_CREATE 1
569 +// #define HAVE_DB_CREATE 1
571 /* Define to 1 if you have the <db.h> header file. */
573 +// #define HAVE_DB_H 1
575 /* Define to 1 if you have the <dlfcn.h> header file. */
576 /* undef HAVE_DLFCN_H */
577 @@ -143,13 +144,13 @@
578 /* #undef HAVE_LIBWWW */
580 /* Have local MD5 digest */
581 -#define HAVE_LOCAL_MD5_DIGEST 1
582 +// #define HAVE_LOCAL_MD5_DIGEST 1
584 /* Have local RIPEMD160 digest */
585 /* #undef HAVE_LOCAL_RIPEMD160_DIGEST */
587 /* Have local SHA1 digest */
588 -#define HAVE_LOCAL_SHA1_DIGEST 1
589 +// #define HAVE_LOCAL_SHA1_DIGEST 1
591 /* Define to 1 if you have the <memory.h> header file. */
592 #define HAVE_MEMORY_H 1
593 @@ -161,25 +162,33 @@
594 #define HAVE_MKTEMP 1
596 /* MySQL libraries are present */
597 -#define HAVE_MYSQL 1
598 +// #define HAVE_MYSQL 1
600 /* Define to 1 if you have the <openssl/crypto.h> header file. */
601 /* #undef HAVE_OPENSSL_CRYPTO_H */
602 +#define HAVE_OPENSSL_CRYPTO_H 1
604 /* Have openssl MD5 digest */
605 /* #undef HAVE_OPENSSL_CRYPTO_MD5_DIGEST */
606 +#define HAVE_OPENSSL_CRYPTO_MD5_DIGEST 1
608 /* Have openssl RIPEMD160 digest */
609 /* #undef HAVE_OPENSSL_CRYPTO_RIPEMD160_DIGEST */
610 +#define HAVE_OPENSSL_CRYPTO_RIPEMD160_DIGEST 1
612 /* Have openssl SHA1 digest */
613 /* #undef HAVE_OPENSSL_CRYPTO_SHA1_DIGEST */
614 +#define HAVE_OPENSSL_CRYPTO_SHA1_DIGEST 1
616 /* Have openssl digests */
617 /* #undef HAVE_OPENSSL_DIGESTS */
618 +#define HAVE_OPENSSL_DIGESTS 1
620 /* Define to 1 if you have the <pthread.h> header file. */
621 /* #undef HAVE_PTHREAD_H */
623 +#undef HAVE_PTHREAD_H */
626 /* Define to 1 if you have the <stdint.h> header file. */
627 #define HAVE_STDINT_H 1
629 #define SIZEOF_UNSIGNED_LONG_LONG 8
631 /* SQLite API version */
632 -#define SQLITE_API 3
633 +// #define SQLITE_API 3
635 /* Define to 1 if you have the ANSI C header files. */
636 #define STDC_HEADERS 1
637 @@ -256,14 +265,17 @@
638 /* Building file storage */
639 #define STORAGE_FILE 1
641 +#define STORAGE_HASHES 1
642 +#define STORAGE_MEMORY 1
644 /* Building MySQL storage */
645 -#define STORAGE_MYSQL 1
646 +// #define STORAGE_MYSQL 1
648 /* Building PostgreSQL storage */
649 /*#undef STORAGE_POSTGRESQL*/
651 /* Building SQLite storage */
652 -#define STORAGE_SQLITE 1
653 +// #define STORAGE_SQLITE 1
655 /* Building 3store storage */
656 /*#undef STORAGE_TSTORE*/
657 --- misc/redland-1.0.7/raptor/LICENSE.txt Fri Mar 23 06:28:24 2007
658 +++ misc/build/redland-1.0.7/raptor/LICENSE.txt Mon Jun 16 15:55:52 2008
661 Copyright (C) 2000-2007 David Beckett
662 Copyright (C) 2000-2005 University of Bristol
667 +For the avoidance of doubt, except that if any license choice other
668 +than GPL or LGPL is available it will apply instead, Sun elects to
669 +use only the Lesser General Public License version 2.1 (LGPLv2) at
670 +this time for any software where a choice of LGPL license versions
671 +is made available with the language indicating that LGPLv2.1 or any
672 +later version may be used, or where a choice of which version of the
673 +LGPL is applied is otherwise unspecified.
675 --- misc/redland-1.0.7/rasqal/LICENSE.txt Sun Apr 22 23:09:08 2007
676 +++ misc/build/redland-1.0.7/rasqal/LICENSE.txt Mon Jun 16 15:55:52 2008
679 Copyright (C) 2003-2007 Dave Beckett
680 Copyright (C) 2003-2005 University of Bristol
685 +For the avoidance of doubt, except that if any license choice other
686 +than GPL or LGPL is available it will apply instead, Sun elects to
687 +use only the Lesser General Public License version 2.1 (LGPLv2) at
688 +this time for any software where a choice of LGPL license versions
689 +is made available with the language indicating that LGPLv2.1 or any
690 +later version may be used, or where a choice of which version of the
691 +LGPL is applied is otherwise unspecified.
693 --- misc/redland-1.0.7/ltmain.sh 2007-11-28 06:23:09.000000000 +0900
694 +++ misc/build/redland-1.0.7/ltmain.sh 2008-07-06 15:44:48.725250000 +0900
695 @@ -1557,6 +1557,11 @@
696 [\\/]* | [A-Za-z]:[\\/]*) ;;
698 absdir=`cd "$dir" && pwd`
701 + absdir=`cygpath -m $absdir`
704 if test -z "$absdir"; then
705 $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
707 @@ -3237,9 +3242,9 @@
708 revision="$number_revision"
710 freebsd-aout|freebsd-elf|sunos)
711 - current="$number_major"
712 - revision="$number_minor"
714 + current=`expr $number_major + $number_minor`
715 + age="$number_minor"
716 + revision="$number_revision"
719 current=`expr $number_major + $number_minor`
720 @@ -3319,8 +3324,8 @@
725 - versuffix=".$current";
726 + major=.`expr $current - $age`
727 + versuffix="$major.$age.$revision"
731 --- misc/redland-1.0.7/configure 2007-12-17 16:58:16.000000000 +0900
732 +++ misc/build/redland-1.0.7/configure 2008-07-06 15:12:01.397125000 +0900
733 @@ -4544,7 +4544,7 @@
736 # func_win32_libid is a shell function defined in ltmain.sh
737 - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
738 + lt_cv_deplibs_check_method='file_magic ^x86 archive|^x86 DLL'
739 lt_cv_file_magic_cmd='func_win32_libid'
742 @@ -4553,7 +4553,7 @@
743 # func_win32_libid shell function, so use a weaker test based on 'objdump',
744 # unless we find 'file', for example because we are cross-compiling.
745 if ( file / ) >/dev/null 2>&1; then
746 - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
747 + lt_cv_deplibs_check_method='file_magic ^x86 archive|^x86 DLL'
748 lt_cv_file_magic_cmd='func_win32_libid'
750 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
751 --- misc/redland-1.0.7/utils/rdfproc.c 2007-10-23 23:55:06.000000000 +0900
752 +++ misc/build/redland-1.0.7/utils/rdfproc.c 2008-07-06 17:44:47.615875000 +0900
757 -#include <win32_config.h>
758 +#include <win32_rdf_config.h>