summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid I. Lehn <dlehn@users.sourceforge.net>2002-03-21 23:44:14 +0000
committerDavid I. Lehn <dlehn@users.sourceforge.net>2002-03-21 23:44:14 +0000
commit1ca4ae60d2fd9190f24c57f311d84f2e56baaafa (patch)
tree0c5a0d8d1007bddbc9fbde3d05fe2cd9dcf1d16e
parent5dbd908f00b0f2c194b977e9d1e29817732094e2 (diff)
downloadgstreamer-plugins-bad-1ca4ae60d2fd9190f24c57f311d84f2e56baaafa.tar.gz
acconfig.h usage deprecated
Original commit message from CVS: acconfig.h usage deprecated
-rw-r--r--acconfig.h56
m---------common0
-rw-r--r--configure.ac4
3 files changed, 2 insertions, 58 deletions
diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644
index b6e24c422..000000000
--- a/acconfig.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#undef PACKAGE
-#undef VERSION
-#undef GST_PLUGINS
-#undef GST_PLUGINS_RELEASE
-#undef GST_VERSION_RELEASE
-
-/* Gettext stuff */
-#undef ENABLE_NLS
-#undef HAVE_CATGETS
-#undef HAVE_GETTEXT
-#undef HAVE_LC_MESSAGES
-#undef HAVE_STPCPY
-
-#undef USE_GLIB2
-
-#undef HAVE_CPU_I386
-#undef HAVE_CPU_PPC
-#undef HAVE_CPU_ALPHA
-#undef HAVE_CPU_ARM
-#undef HAVE_CPU_SPARC
-
-#undef HAVE_RDTSC
-
-#undef HAVE_LIBGHTTP
-#undef HAVE_LIBMMX
-#undef HAVE_LIBXV
-#undef HAVE_OSS
-#undef HAVE_XAUDIO
-#undef HAVE_LIBDVDREAD
-#undef HAVE_VORBIS
-#undef HAVE_AALIB
-#undef HAVE_LIBMAD
-#undef HAVE_LIBMIKMOD
-#undef HAVE_LIBJPEG
-#undef HAVE_LIBGSM
-#undef HAVE_LIBSDL
-#undef HAVE_LIBHERMES
-#undef HAVE_NASM
-#undef HAVE_A52DEC
-#undef HAVE_MPEG2DEC
-#undef HAVE_FLACLIB
-#undef HAVE_LIBRTP
-#undef HAVE_LINUX_CDROM
-#undef HAVE_LINUX_VIDEODEV
-#undef HAVE_LIBSDL
-#undef HAVE_LIBOPENQUICKTIME
-
-#undef GSM_HEADER_IN_SUBDIR
-
-#undef HAVE_ATOMIC_H
-
-#undef GST_DEBUG_ENABLED
-#undef GST_INFO_ENABLED
-#undef GST_DEBUG_COLOR
-
-#undef GST_DISABLE_LOADSAVE
diff --git a/common b/common
-Subproject de68be0c16181a66f42fad60319e273097f6024
+Subproject 38267abf56a3428093cea71429dca6a24a92754
diff --git a/configure.ac b/configure.ac
index 67b174225..bea6e4ab7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -115,7 +115,7 @@ case "x${target_cpu}" in
dnl (ie CPUID)
case "x${target_cpu}" in
xi386 | xi486) ;;
- *) AC_DEFINE(HAVE_RDTSC) ;;
+ *) AC_DEFINE(HAVE_RDTSC, 1, [Define if RDTSC is available]) ;;
esac ;;
xpowerpc) HAVE_CPU_PPC=yes
AC_DEFINE(HAVE_CPU_PPC, 1, [Define if the target CPU is a PPC]) ;;
@@ -395,7 +395,7 @@ GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [
if test $HAVE_GSM != "yes"; then
GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm")
if test $HAVE_GSM = "yes"; then
- AC_DEFINE(GSM_HEADER_IN_SUBDIR)
+ AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir])
fi
fi
AC_SUBST(GSM_LIBS)