summaryrefslogtreecommitdiff
path: root/m4/gst-args.m4
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2006-04-01 09:40:24 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2006-04-01 09:40:24 +0000
commit30bd47de758f3f98b2959af9105911ba093624e6 (patch)
treeaf83911a58099878823288311de4fb753189a5cd /m4/gst-args.m4
parentc18b429f2a3698b6fc5e849a637aa0c8b91e82b9 (diff)
downloadgstreamer-common-30bd47de758f3f98b2959af9105911ba093624e6.tar.gz
m4/as-version.m4: newer version
Original commit message from CVS: 2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org> * m4/as-version.m4: newer version * m4/gst-args.m4: * m4/gst-doc.m4: update and add other macros to be shared across projects
Diffstat (limited to 'm4/gst-args.m4')
-rw-r--r--m4/gst-args.m410
1 files changed, 8 insertions, 2 deletions
diff --git a/m4/gst-args.m4 b/m4/gst-args.m4
index 4b7aacd..6d6ab2d 100644
--- a/m4/gst-args.m4
+++ b/m4/gst-args.m4
@@ -131,13 +131,19 @@ AC_DEFUN([GST_ARG_WITH_PACKAGE_NAME],
esac
],
[
+ P=$1
+ if test "x$P" = "x"
+ then
+ P=$PACKAGE_NAME
+ fi
+
dnl default value
if test "x$GST_CVS" = "xyes"
then
dnl nano >= 1
- GST_PACKAGE_NAME="[$1] CVS/prerelease"
+ GST_PACKAGE_NAME="$P CVS/prerelease"
else
- GST_PACKAGE_NAME="[$1] source release"
+ GST_PACKAGE_NAME="$P source release"
fi
]
)