summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjosh.macdonald <jmacd@users.noreply.github.com>2014-01-14 06:27:04 +0000
committerjosh.macdonald <jmacd@users.noreply.github.com>2014-01-14 06:27:04 +0000
commit9e98593f4cbaa59b8fdef989983a4fc727685b4c (patch)
tree1d1c785b089b8e939f81d686847866749832177b
parent83253f41e9c16c7c043df5930da1f57fca3d294d (diff)
3.0.8 release
-rw-r--r--xdelta3/config.h.in7
-rw-r--r--xdelta3/configure.ac4
-rw-r--r--xdelta3/releases/xdelta3-3.0.8.tar.xzbin0 -> 429964 bytes
-rw-r--r--xdelta3/xdelta3-main.h3
-rw-r--r--xdelta3/xdelta3.prj2
5 files changed, 12 insertions, 4 deletions
diff --git a/xdelta3/config.h.in b/xdelta3/config.h.in
index 45309d0..70bb1c2 100644
--- a/xdelta3/config.h.in
+++ b/xdelta3/config.h.in
@@ -3,6 +3,9 @@
3/* Define if pointers to integers require aligned access */ 3/* Define if pointers to integers require aligned access */
4#undef HAVE_ALIGNED_ACCESS_REQUIRED 4#undef HAVE_ALIGNED_ACCESS_REQUIRED
5 5
6/* Define to 1 if you have the <dlfcn.h> header file. */
7#undef HAVE_DLFCN_H
8
6/* Define to 1 if you have the <inttypes.h> header file. */ 9/* Define to 1 if you have the <inttypes.h> header file. */
7#undef HAVE_INTTYPES_H 10#undef HAVE_INTTYPES_H
8 11
@@ -36,6 +39,10 @@
36/* Define to 1 if you have the <unistd.h> header file. */ 39/* Define to 1 if you have the <unistd.h> header file. */
37#undef HAVE_UNISTD_H 40#undef HAVE_UNISTD_H
38 41
42/* Define to the sub-directory in which libtool stores uninstalled libraries.
43 */
44#undef LT_OBJDIR
45
39/* Define to the address where bug reports for this package should be sent. */ 46/* Define to the address where bug reports for this package should be sent. */
40#undef PACKAGE_BUGREPORT 47#undef PACKAGE_BUGREPORT
41 48
diff --git a/xdelta3/configure.ac b/xdelta3/configure.ac
index 8b44382..3b430d7 100644
--- a/xdelta3/configure.ac
+++ b/xdelta3/configure.ac
@@ -1,8 +1,8 @@
1AC_INIT([Xdelta3], [3.0.7], [josh.macdonald@gmail.com], 1AC_INIT([Xdelta3], [3.0.8], [josh.macdonald@gmail.com],
2 [xdelta3], [http://xdelta.org/]) 2 [xdelta3], [http://xdelta.org/])
3AC_PREREQ([2.68]) 3AC_PREREQ([2.68])
4AC_CONFIG_MACRO_DIR([m4]) 4AC_CONFIG_MACRO_DIR([m4])
5#LT_INIT 5LT_INIT
6AM_INIT_AUTOMAKE([1.9 no-define foreign tar-ustar]) 6AM_INIT_AUTOMAKE([1.9 no-define foreign tar-ustar])
7#AC_DISABLE_STATIC 7#AC_DISABLE_STATIC
8AX_CHECK_ALIGNED_ACCESS_REQUIRED 8AX_CHECK_ALIGNED_ACCESS_REQUIRED
diff --git a/xdelta3/releases/xdelta3-3.0.8.tar.xz b/xdelta3/releases/xdelta3-3.0.8.tar.xz
new file mode 100644
index 0000000..34e3143
--- /dev/null
+++ b/xdelta3/releases/xdelta3-3.0.8.tar.xz
Binary files differ
diff --git a/xdelta3/xdelta3-main.h b/xdelta3/xdelta3-main.h
index 022ede0..090b7d9 100644
--- a/xdelta3/xdelta3-main.h
+++ b/xdelta3/xdelta3-main.h
@@ -358,7 +358,7 @@ static int
358main_version (void) 358main_version (void)
359{ 359{
360 /* $Format: " XPR(NTR \"Xdelta version $Xdelta3Version$, Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, Joshua MacDonald\\n\");" $ */ 360 /* $Format: " XPR(NTR \"Xdelta version $Xdelta3Version$, Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, Joshua MacDonald\\n\");" $ */
361 XPR(NTR "Xdelta version 3.0.7, Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Joshua MacDonald\n"); 361 XPR(NTR "Xdelta version 3.0.8, Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Joshua MacDonald\n");
362 XPR(NTR "Xdelta comes with ABSOLUTELY NO WARRANTY.\n"); 362 XPR(NTR "Xdelta comes with ABSOLUTELY NO WARRANTY.\n");
363 XPR(NTR "This is free software, and you are welcome to redistribute it\n"); 363 XPR(NTR "This is free software, and you are welcome to redistribute it\n");
364 XPR(NTR "under certain conditions; see \"COPYING\" for details.\n"); 364 XPR(NTR "under certain conditions; see \"COPYING\" for details.\n");
@@ -376,6 +376,7 @@ main_config (void)
376 XPR(NTR "REGRESSION_TEST=%d\n", REGRESSION_TEST); 376 XPR(NTR "REGRESSION_TEST=%d\n", REGRESSION_TEST);
377 XPR(NTR "SECONDARY_DJW=%d\n", SECONDARY_DJW); 377 XPR(NTR "SECONDARY_DJW=%d\n", SECONDARY_DJW);
378 XPR(NTR "SECONDARY_FGK=%d\n", SECONDARY_FGK); 378 XPR(NTR "SECONDARY_FGK=%d\n", SECONDARY_FGK);
379 XPR(NTR "SECONDARY_LZMA=%d\n", SECONDARY_LZMA);
379 XPR(NTR "UNALIGNED_OK=%d\n", UNALIGNED_OK); 380 XPR(NTR "UNALIGNED_OK=%d\n", UNALIGNED_OK);
380 XPR(NTR "VCDIFF_TOOLS=%d\n", VCDIFF_TOOLS); 381 XPR(NTR "VCDIFF_TOOLS=%d\n", VCDIFF_TOOLS);
381 XPR(NTR "XD3_ALLOCSIZE=%d\n", XD3_ALLOCSIZE); 382 XPR(NTR "XD3_ALLOCSIZE=%d\n", XD3_ALLOCSIZE);
diff --git a/xdelta3/xdelta3.prj b/xdelta3/xdelta3.prj
index 940a3a6..79f11a6 100644
--- a/xdelta3/xdelta3.prj
+++ b/xdelta3/xdelta3.prj
@@ -9,7 +9,7 @@
9(Checkin-Login jmacd) 9(Checkin-Login jmacd)
10(Populate-Ignore ("\\.svn")) 10(Populate-Ignore ("\\.svn"))
11(Project-Keywords 11(Project-Keywords
12 (Xdelta3Version "3.0.7") 12 (Xdelta3Version "3.0.8")
13 ) 13 )
14(Files 14(Files
15 (COPYING (xdelta3/b/29_COPYING 1.1 744)) 15 (COPYING (xdelta3/b/29_COPYING 1.1 744))