diff options
Diffstat (limited to 'debian/patches/001-changes_build_sys.diff')
-rw-r--r-- | debian/patches/001-changes_build_sys.diff | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/debian/patches/001-changes_build_sys.diff b/debian/patches/001-changes_build_sys.diff new file mode 100644 index 0000000..cf98b0c --- /dev/null +++ b/debian/patches/001-changes_build_sys.diff @@ -0,0 +1,44 @@ +Description: some buildsystem changes +Author: Jörg Frings-Fürst <debian@jff-webhosting.net> +Reviewed-by: +Last-Update: 2014-05-07 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/configure.in +=================================================================== +--- trunk.orig/configure.in 2014-05-07 16:35:17.303465288 +0200 ++++ trunk/configure.in 2014-05-07 16:35:49.536109222 +0200 +@@ -1,9 +1,11 @@ + dnl Process this file with autoconf to produce a configure script. + AC_INIT(onig, 5.9.5) + ++ ++AUTOMAKE_OPTIONS=subdir-objects + AC_CONFIG_MACRO_DIR([m4]) + +-AM_INIT_AUTOMAKE ++AM_INIT_AUTOMAKE([foreign]) + AC_CONFIG_HEADER(config.h) + + +@@ -41,7 +43,7 @@ + dnl Checks for programs. + AC_PROG_CC + AM_PROG_LIBTOOL +-LTVERSION="2:0:0" ++LTVERSION="2:1:0" + AC_SUBST(LTVERSION) + + AC_PROG_INSTALL +Index: trunk/Makefile.am +=================================================================== +--- trunk.orig/Makefile.am 2014-05-07 16:35:17.303465288 +0200 ++++ trunk/Makefile.am 2014-05-07 16:35:17.295465127 +0200 +@@ -3,6 +3,7 @@ + sampledir = $(top_srcdir)/sample + libname = libonig.la + ++AUTOMAKE_OPTIONS=subdir-objects + ACLOCAL_AMFLAGS = -I m4 + #AM_CFLAGS = -DNOT_RUBY + AM_CFLAGS = |