Ticket #530: patch48.patch
File patch48.patch, 5.7 KB (added by , 14 years ago) |
---|
-
xapian-maintainer-tools/win32msvc/ChangeLog
1 Wed Jan 05 14:23:00 GMT 2011 Charlie Hull <charlie@flax.co.uk> 2 3 * README: add details of patch to api/compactor.cc and diritor.h 4 * win32_backends_brass.mak, win32_backends_flint.mak, win32_backends_chert.mak: 5 add brass_compact.cc etc. 6 * win32_api.mak: add compactor.cc 7 * win32_bin.mak: remove separate compactors and add xapian_chert_update.exe 8 * win32_bindings_csharp.mak: add Compactor.cs 9 * config.h.omega.win32: add uid_t, S_IRUSR,S_IWGRP,S_IROTH, geteuid(), 10 PKGLIBBINDIR definitions 11 * win32_applications_omega.mak: add svnparse.cc, pkglibbindir.cc 12 1 13 Fri Sep 03 13:35:00 GMT 2010 Charlie Hull <charlie@flax.co.uk> 2 14 3 15 * README: remove details of some patches that are no longer necessary -
xapian-maintainer-tools/win32msvc/config.h.omega.win32
83 83 #define PACKAGE_NAME "xapian-omega" 84 84 85 85 /* Define to the full name and version of this package. */ 86 #define PACKAGE_STRING "xapian-omega 1.2. 3"86 #define PACKAGE_STRING "xapian-omega 1.2.4" 87 87 88 88 /* Define to the one symbol short name of this package. */ 89 89 #define PACKAGE_TARNAME "xapian-omega" 90 90 91 91 /* Define to the version of this package. */ 92 #define PACKAGE_VERSION "1.2. 3"92 #define PACKAGE_VERSION "1.2.4" 93 93 94 94 /* Define to the name of a function implementing snprintf but not caring about 95 95 ISO C90 return value semantics (if one exists) */ … … 106 106 /* USE_ICONV */ 107 107 108 108 /* Version number of package */ 109 #define VERSION "1.2. 3"109 #define VERSION "1.2.4" 110 110 111 111 /* Define to 1 if your processor stores words with the most significant byte 112 112 first (like Motorola and SPARC, unlike Intel and VAX). */ … … 125 125 # define ssize_t long 126 126 #endif 127 127 128 /* Define to `unsigned int' if <sys/types.h> does not define. */ 129 #define uid_t unsigned int 130 128 131 /* Define rare() as identity, since we don't have this in MSVC (See 129 132 * the section "Branch Prediction Hints" in xapian-core/HACKING) */ 130 133 #define rare(COND) (COND) … … 147 150 # pragma warning(disable:4003) 148 151 #endif 149 152 153 /* These fstat() flags do not exist on Windows */ 154 #define S_IRUSR S_IREAD 155 #define S_IRGRP 0 156 #define S_IROTH 0 157 158 /* geteuid() has no direct equivalent */ 159 #define geteuid() 0 160 161 /* no defined helper directory */ 162 #define PKGLIBBINDIR "" 163 No newline at end of file -
xapian-maintainer-tools/win32msvc/config.h.win32
99 99 #define PACKAGE_NAME "xapian-core" 100 100 101 101 /* Define to the full name and version of this package. */ 102 #define PACKAGE_STRING "xapian-core 1.2. 3"102 #define PACKAGE_STRING "xapian-core 1.2.4" 103 103 104 104 /* Define to the one symbol short name of this package. */ 105 105 #define PACKAGE_TARNAME "xapian-core" 106 106 107 107 /* Define to the version of this package. */ 108 #define PACKAGE_VERSION "1.2. 3"108 #define PACKAGE_VERSION "1.2.4" 109 109 110 110 /* explicit prototype needed for pread (if any) */ 111 111 /* #undef PREAD_PROTOTYPE */ … … 128 128 #define STDC_HEADERS 1 129 129 130 130 /* Version number of package */ 131 #define VERSION "1.2. 3"131 #define VERSION "1.2.4" 132 132 133 133 /* Define if you want debugging to be enabled (will cause some slow down) */ 134 134 /* #undef XAPIAN_DEBUG */ -
xapian-maintainer-tools/win32msvc/config.mak
24 24 # win32_applications_omega.mak 25 25 # win32_bindings_python.mak 26 26 # and any other bindings mak files 27 XAPIAN_APPLICATIONS=..\..\xapian- omega27 XAPIAN_APPLICATIONS=..\..\xapian-applications\omega 28 28 XAPIAN_BINDINGS=..\..\xapian-bindings 29 29 30 30 # ------------- Perl settings------------- -
xapian-maintainer-tools/win32msvc/win32_applications_omega.mak
10 10 11 11 # Where the core is, relative to the Omega application 12 12 # Change this to match your environment 13 XAPIAN_CORE_REL_OMEGA=..\ xapian-core13 XAPIAN_CORE_REL_OMEGA=..\..\xapian-core 14 14 15 15 !IF "$(OS)" == "Windows_NT" 16 16 NULL= … … 74 74 "$(OUTDIR)\freemem.obj" \ 75 75 "$(OUTDIR)\msvc_dirent.obj" \ 76 76 "$(OUTDIR)\xpsxmlparse.obj" \ 77 "$(OUTDIR)\str.obj" 77 "$(OUTDIR)\str.obj" \ 78 "$(OUTDIR)\svgparse.obj" \ 79 "$(OUTDIR)\pkglibbindir.obj" 78 80 79 80 81 SCRIPTINDEX_OBJS= \ 81 82 "$(OUTDIR)\scriptindex.obj" \ 82 83 "$(OUTDIR)\myhtmlparse.obj" \ … … 158 159 "$(OUTDIR)\common\stringutils.cc" \ 159 160 "$(OUTDIR)\common\str.cc" \ 160 161 "$(OUTDIR)\common\safe.cc" \ 161 "$(OUTDIR)\transform.cc" 162 162 "$(OUTDIR)\transform.cc" \ 163 "$(OUTDIR)\svgparse.cc" \ 164 "$(OUTDIR)\pkglibbindir.cc" 163 165 164 166 CLEAN : 165 167 -@erase $(PROGRAMS) … … 274 276 -@erase deps.d 275 277 $(CPP) -showIncludes $(CPP_PROJ) $(SRCS) >>deps.d 276 278 if exist "$(XAPIAN_CORE_REL_OMEGA)\win32\$(DEPEND)" $(XAPIAN_CORE_REL_OMEGA)\win32\$(DEPEND) 277 # DO NOT DELETE THIS LINE -- xapdep depends on it. 278 No newline at end of file 279 # DO NOT DELETE THIS LINE -- xapdep depends on it.