diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-20 20:15:13 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-20 20:15:13 +0000 |
commit | e8e9ffcf33fc27f7ccb25c176b14a80664a905b7 (patch) | |
tree | ffb5f19916a824a86a4447c31e351b1946b4374a /m4 | |
parent | d985a62999a6fa76d8ae0fbdef619ec9d1bda27e (diff) |
added wrobell's AC_DEFINE change
Original commit message from CVS:
added wrobell's AC_DEFINE change
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gst-feature.m4 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/m4/gst-feature.m4 b/m4/gst-feature.m4 index cc37f0188..0c307016d 100644 --- a/m4/gst-feature.m4 +++ b/m4/gst-feature.m4 @@ -72,13 +72,19 @@ NOUSE= dnl *** If it's enabled if test x$USE_[$1] = xyes; then + dnl save compile variables before the test + gst_check_save_LIBS=$LIBS gst_check_save_LDFLAGS=$LDFLAGS gst_check_save_CFLAGS=$CFLAGS gst_check_save_CPPFLAGS=$CPPFLAGS gst_check_save_CXXFLAGS=$CXXFLAGS + HAVE_[$1]=no + + dnl TEST_FOR_FEATURE $4 + LIBS=$gst_check_save_LIBS LDFLAGS=$gst_check_save_LDFLAGS CFLAGS=$gst_check_save_CFLAGS @@ -94,6 +100,7 @@ dnl *** Warn if it's disabled or not found if test x$USE_[$1] = xyes; then ifelse([$6], , :, [$6]) GST_PLUGINS_YES="$GST_PLUGINS_YES \n\t[$3]" + AC_DEFINE(HAVE_[$1], , [support for features: $3]) else ifelse([$3], , :, [AC_MSG_WARN( ***** NOTE: These plugins won't be built: [$3] |