1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-08 22:34:06 -07:00

* src/igc-types.h: Emit a warning if HAVE_MPS is not defined

This commit is contained in:
Helmut Eller 2026-05-06 10:25:01 +02:00
parent 9a10d45d95
commit abe63ceccc

View file

@ -20,6 +20,13 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#ifndef EMACS_IGC_TYPES_H
#define EMACS_IGC_TYPES_H
#ifndef HAVE_MPS
/* FIXME: this file should only be included if HAVE_MPS. Currently the
code in pdumper.c depends on the enum tags from this file. Emit a
warning instead of an error until that is fixed. */
#warning "HAVE_MPS not defined"
#endif
enum igc_obj_type
{
IGC_OBJ_INVALID,