summaryrefslogtreecommitdiff
path: root/user/torcs/torcs-1.3.6-no-automake.patch
blob: de57eeea075c3fb327b151bef639598797c06e0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
torcs doesn't use automake, so it shouldn't be calling the macro

http://bugs.gentoo.org/408473

--- torcs-1.3.7.orig/configure.in
+++ torcs-1.3.7/configure.in
@@ -15,9 +15,12 @@
 #
 ##############################################################################
 
-AC_INIT(Make-config.in)
+AC_INIT(torcs, 1.3.7)
 AC_CONFIG_HEADERS(config.h)
-AM_INIT_AUTOMAKE(torcs, 1.3.7)
+dnl Workaround code using old VERSION instead of new PACKAGE_VERSION
+VERSION=$PACKAGE_VERSION
+AC_DEFINE_UNQUOTED([VERSION], "$VERSION", [old VERSION workaround])
+AC_SUBST(VERSION)
 
 dnl Checks for programs.
 AC_PROG_CC