There are some breaking API changes related to watchdog functionality in the recently released 3.x.x branch of arduino-esp32.
The Interrupt Watchdog API (functions/types/macros prefixed with esp_intwdt) has been made into a private API. Thus, the previous include path #include "esp_int_wdt.h" has been removed. If users still require usage of the Interrupt Watchdog API (though this is not recommended), it can be included via #include "esp_private/esp_int_wdt.h".
So you're probably going to need to update esp32-cam-webserver.ino and app_httpd.cpp with something like:
There are some breaking API changes related to watchdog functionality in the recently released 3.x.x branch of arduino-esp32.
So you're probably going to need to update
esp32-cam-webserver.ino
andapp_httpd.cpp
with something like: