summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-06-22 22:17:07 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-06-22 22:17:07 +0000
commit9c5b2e031da3fcc4fd6785fae411e43bd6db5f9a (patch)
treef051ec5c01dd45f4ad985a188d79c4c3ae822aff
parent5a2daf0021571ffdfb6e5a51bad1037d88737328 (diff)
downloadxine-lib-9c5b2e031da3fcc4fd6785fae411e43bd6db5f9a.tar.gz
xine-lib-9c5b2e031da3fcc4fd6785fae411e43bd6db5f9a.tar.bz2
Fixed CPP bug.
CVS patchset: 216 CVS date: 2001/06/22 22:17:07
-rw-r--r--m4/aa.m47
1 files changed, 2 insertions, 5 deletions
diff --git a/m4/aa.m4 b/m4/aa.m4
index 76cb70e01..2575081b1 100644
--- a/m4/aa.m4
+++ b/m4/aa.m4
@@ -130,14 +130,11 @@ int main () {
return 0;
}
else {
- printf("\n*** An old version of AALIB (%d.%d) was found.\n",
- AA_LIB_VERSION,
#ifdef AA_LIB_MINNOR
- AA_LIB_MINNOR
+ printf("\n*** An old version of AALIB (%d.%d) was found.\n", AA_LIB_VERSION, AA_LIB_MINNOR);
#else
- AA_LIB_MINOR
+printf("\n*** An old version of AALIB (%d.%d) was found.\n", AA_LIB_VERSION, AA_LIB_MINOR);
#endif
- );
printf("*** You need a version of AALIB newer than %d.%d. The latest version of\n", major, minor);
printf("*** AALIB is always available from:\n");
printf("*** http://www.ta.jcu.cz://aa\n");