]> git.alsa-project.org Git - alsa-lib.git/commitdiff
added the descriptions for AC_DEFINE*.
authorTakashi Iwai <tiwai@suse.de>
Fri, 16 Aug 2002 17:28:34 +0000 (17:28 +0000)
committerTakashi Iwai <tiwai@suse.de>
Fri, 16 Aug 2002 17:28:34 +0000 (17:28 +0000)
withtout them, autoreconf fails.

configure.in

index 40e9f6310af78d14f2ccdac2fb6ff01bab1451df..b269228fbbbd45e59dc4d48c346bb9ed017ab317 100644 (file)
@@ -107,7 +107,7 @@ case "$dir" in
 /*) ;;
 *) dir="$PWD/$dir"
 esac
-AC_DEFINE_UNQUOTED(DATADIR, "$dir")
+AC_DEFINE_UNQUOTED(DATADIR, "$dir", [directory containing ALSA configuration database])
 
 dnl Check for debug...
 AC_MSG_CHECKING(for debug)
@@ -117,13 +117,13 @@ AC_ARG_WITH(debug,
 if test "$debug" = "yes"; then
   AC_MSG_RESULT(yes)
 else
-  AC_DEFINE(NDEBUG)
+  AC_DEFINE(NDEBUG,,[No assert debug])
   AC_MSG_RESULT(no)
 fi
 
 AC_ARG_WITH(softfloat,
   [  --with-softfloat        do you have floating point unit on this machine? (optional)],
-  [  AC_DEFINE(HAVE_SOFT_FLOAT, "1")],)
+  [  AC_DEFINE(HAVE_SOFT_FLOAT, "1", [Avoid calculation in float])],)
 
 dnl Check for architecture
 AC_MSG_CHECKING(for architecture)