Add some comments describing what programs are being checked for.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 11 May 2013 23:59:17 +0000 (23:59 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 11 May 2013 23:59:17 +0000 (23:59 +0000)
Move DESKTOP_FILE_INSTALL into the group of programs used for packaging;
it's used when you install a source package.  (It's not used to *build*
a source package, but....)

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@49256 f5534014-38df-0310-8fa8-9805f1628bb7

configure.ac

index 2a2b0f0d6b13b514783c8f221126e7055ecf3c9b..a41a18f80ff93e3bc47a8b2255c024ee50487610 100644 (file)
@@ -45,7 +45,7 @@ AC_DEFINE(VERSION_MICRO, version_micro, [Wireshark's micro version])
 AM_DISABLE_STATIC
 
 #
-# Checks for programs used in the build process.
+# Checks for programs used in the main build process.
 #
 AC_PROG_CC
 AM_PROG_CC_C_O
@@ -412,7 +412,7 @@ AC_ARG_WITH([gtk3],
 AX_LIBSMI
 
 #
-# Program paths
+# Check for programs used when building DocBook documentation.
 #
 
 # Check for a2x (convert asciidoc to another format)
@@ -420,8 +420,6 @@ AC_PATH_PROG(A2X, a2x)
 AC_CHECK_PROG(HAVE_A2X, a2x, "yes", "no")
 AM_CONDITIONAL(HAVE_A2X, test x$HAVE_A2X = xyes)
 
-AC_PATH_PROG(DESKTOP_FILE_INSTALL, desktop-file-install)
-
 # Want to control a tape drive? Use mt. Want to convert HTML to text?
 # Uhhhhh... elinks? lynx? w3m? pandoc? html2text?
 AC_PATH_PROG(ELINKS, elinks)
@@ -458,6 +456,12 @@ AM_CONDITIONAL(HAVE_XSLTPROC, test x$HAVE_XSLTPROC = xyes)
 # For now, we check to see if the various packaging utilites are in our
 # path.  I'm too lazy to write code to go hunt for them.  -  Gerald
 
+#
+# Source packages.
+# (Lets you install the desktop files.)
+#
+AC_PATH_PROG(DESKTOP_FILE_INSTALL, desktop-file-install)
+
 # SVR4/Solaris
 AC_CHECK_PROG(HAVE_PKGPROTO, pkgproto, "yes", "no")
 AC_CHECK_PROG(HAVE_PKGMK, pkgmk, "yes", "no")