~lttng/babeltrace/trunk

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Jérémie Galarneau
  • Author(s): Simon Marchi
  • Date: 2020-06-08 20:00:35 UTC
  • Revision ID: git-v1:dc13cd867d9c8504abc17d54a7539fa35bbfd8b4
configure: remove unused configuration macros

The `PYTHON_PLUGINS` and `ENABLE_DEBUG_INFO` configuration macros aren't
effectively used, remove them.

Change-Id: If965795f24f20aa1e275c829d44c5f9587a8e5fb
Signed-off-by: Simon Marchi <simon.marchi@efficios.com>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/3622
Tested-by: jenkins <jenkins@lttng.org>
Reviewed-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
417
417
 
418
418
# Set defines for optionnal features conditionnals in the source code
419
419
 
420
 
## jgalar: still used?
421
 
AS_IF([test "x$enable_python_plugins" = xyes],
422
 
  [AC_DEFINE([PYTHON_PLUGINS], [1], [Python plugin support.])]
423
 
)
424
 
 
425
 
AS_IF([test "x$enable_debug_info" = xyes],
426
 
  [AC_DEFINE([ENABLE_DEBUG_INFO], [1], [Define to 1 if you enable the 'debug info' feature])]
427
 
)
428
 
 
429
420
AS_IF([test "x$enable_built_in_plugins" = xyes],
430
421
  [AC_DEFINE([BT_BUILT_IN_PLUGINS], [1], [Define to 1 to register plug-in attributes in static executable sections])]
431
422
)