Index: io_bxl/glue.c =================================================================== --- io_bxl/glue.c (revision 30612) +++ io_bxl/glue.c (revision 30613) @@ -7,6 +7,8 @@ void pcb_bxl_set_justify(pcb_bxl_ctx_t *ctx, const char *str) {} void pcb_bxl_add_line(pcb_bxl_ctx_t *ctx) {} void pcb_bxl_add_arc(pcb_bxl_ctx_t *ctx) {} +void pcb_bxl_add_text(pcb_bxl_ctx_t *ctx) {} +void pcb_bxl_set_text_str(pcb_bxl_ctx_t *ctx, char *str) { free(str); } void pcb_bxl_poly_begin(pcb_bxl_ctx_t *ctx) {} void pcb_bxl_poly_end(pcb_bxl_ctx_t *ctx) {} void pcb_bxl_poly_add_vertex(pcb_bxl_ctx_t *ctx, pcb_coord_t x, pcb_coord_t y) {} @@ -15,3 +17,11 @@ static pcb_bxl_test_style_t dummy_ts; void pcb_bxl_text_style_begin(pcb_bxl_ctx_t *ctx, char *name) { free(name); ctx->state.text_style = &dummy_ts; } void pcb_bxl_text_style_end(pcb_bxl_ctx_t *ctx) {} +void pcb_bxl_set_text_style(pcb_bxl_ctx_t *ctx, const char *name) {} + + +void pcb_bxl_padstack_begin(pcb_bxl_ctx_t *ctx, char *name) { free(name); } +void pcb_bxl_padstack_end(pcb_bxl_ctx_t *ctx) { } +void pcb_bxl_padstack_begin_shape(pcb_bxl_ctx_t *ctx, const char *name) {} +void pcb_bxl_padstack_end_shape(pcb_bxl_ctx_t *ctx) {} +