Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ PHP_ARG_ENABLE(sentry, whether to enable Sentry support,
[ --enable-sentry Enable Sentry support])
if test "$PHP_SENTRY" = "yes"; then
AC_DEFINE(HAVE_SENTRY, 1, [Whether you have Sentry])
PHP_NEW_EXTENSION(sentry, sentry.c, $ext_shared)
fi
PHP_NEW_EXTENSION(sentry, sentry.c span_attributes.c sentry_internal.c, $ext_shared)
fi
2 changes: 1 addition & 1 deletion config.w32
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG_ENABLE("sentry", "Enable Sentry support", "no");
if (PHP_SENTRY == "yes") {
AC_DEFINE("HAVE_SENTRY", 1, "Whether you have Sentry");
EXTENSION("Sentry", "sentry.c", true);
EXTENSION("Sentry", "sentry.c span_attributes.c sentry_internal.c", true);
}
Loading
Loading