Codebase list frei0r / 0519c7e
automake fixes IOhannes m zmölnig 12 years ago
2 changed file(s) with 20 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Description: fix args to AM_INIT_AUTOMAKE
1 arguments to AM_INIT_AUTOMAKE have a new meaning.
2 see http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
3 we use it to enable subdir-objects (else we get loads of warnings)
4 Author: IOhannes m zmölnig
5 Last-Update: 2014-05-20
6 ---
7 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
8 --- frei0r.orig/configure.ac
9 +++ frei0r/configure.ac
10 @@ -5,7 +5,7 @@
11 AC_INIT(frei0r-plugins, [1.4.0], [frei0r-devel@piksel.no])
12 AC_CONFIG_MACRO_DIR([m4])
13
14 -AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
15 +AM_INIT_AUTOMAKE([subdir-objects])
16
17 # Checks for programs.
18 AC_PROG_CXX
44 020130316~245bb38.patch
55 020130415~b1faa09.patch
66 020140427~fc84121.patch
7 1-AM_INIT_AUTOMAKE.patch