Rename PACKAGE_MAINTAINER to PACKAGE_DISTRIBUTOR to clarify.
git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@3144 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
4dd10fd6bb
commit
09a8e33f61
16
configure.ac
16
configure.ac
|
@ -104,12 +104,12 @@ AC_MSG_CHECKING([whether to build NSIS installer])
|
|||
AC_MSG_RESULT([${enable_installer}])
|
||||
|
||||
|
||||
AC_ARG_WITH(maintainer,
|
||||
AS_HELP_STRING([--with-maintainer],[Name of maintainer compiling this package]))
|
||||
if test "x$with_maintainer" = "x" ; then
|
||||
AC_DEFINE([PACKAGE_MAINTAINER], "UNKNOWN", [Name of maintainer compiling this package])
|
||||
AC_ARG_WITH(distributor,
|
||||
AS_HELP_STRING([--with-distributor],[Name of distributor compiling this package]))
|
||||
if test "x$with_distributor" = "x" ; then
|
||||
AC_DEFINE([PACKAGE_DISTRIBUTOR], "UNKNOWN", [Name of distributor compiling this package])
|
||||
else
|
||||
AC_DEFINE_UNQUOTED([PACKAGE_MAINTAINER], ["${with_maintainer}"], [Name of maintainer compiling this package])
|
||||
AC_DEFINE_UNQUOTED([PACKAGE_DISTRIBUTOR], ["${with_distributor}"], [Name of distributor compiling this package])
|
||||
fi
|
||||
|
||||
|
||||
|
@ -274,8 +274,8 @@ if test "x$enable_debug" = "xyes" ; then
|
|||
AC_MSG_NOTICE([*** Running in debug mode! ***])
|
||||
fi
|
||||
|
||||
if test "x$with_maintainer" = "x" ; then
|
||||
if test "x$with_distributor" = "x" ; then
|
||||
AC_MSG_NOTICE()
|
||||
AC_MSG_WARN([Maintainer unknown!])
|
||||
AC_MSG_NOTICE([Use --with-maintainer when compiling package for distribution])
|
||||
AC_MSG_WARN([Distributor unknown!])
|
||||
AC_MSG_NOTICE([Use --with-distributor when compiling package for distribution])
|
||||
fi
|
||||
|
|
|
@ -415,8 +415,8 @@ static void posixExceptionHandler(int signum, siginfo_t * siginfo, WZ_DECL_UNUSE
|
|||
write(dumpFile, PACKAGE_VERSION, strlen(PACKAGE_VERSION));
|
||||
write(dumpFile, "\n", 1);
|
||||
|
||||
write(dumpFile, "Maintainer: ", strlen("Maintainer: "));
|
||||
write(dumpFile, PACKAGE_MAINTAINER, strlen(PACKAGE_MAINTAINER));
|
||||
write(dumpFile, "Distributor: ", strlen("Distributor:: "));
|
||||
write(dumpFile, PACKAGE_DISTRIBUTOR, strlen(PACKAGE_DISTRIBUTOR));
|
||||
write(dumpFile, "\n", 1);
|
||||
|
||||
# if defined(DEBUG)
|
||||
|
|
Loading…
Reference in New Issue