# spec.pkg-config **Repository Path**: monkcag3/spec.pkg-config ## Basic Information - **Project Name**: spec.pkg-config - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-24 - **Last Updated**: 2022-04-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # spec.pkg-config #### 错误 1. autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal ${ACLOCAL_FLAGS} autoreconf: configure.ac: tracing autoreconf: configure.ac: adding subdirectory glib to autoreconf autoreconf: Entering directory `glib' autoreconf: running: aclocal -I m4macros ${ACLOCAL_FLAGS} m4macros/glib-gettext.m4:39: error: m4_copy: won't overwrite defined macro: glib_DEFUN m4macros/glib-gettext.m4:39: the top level autom4te: /usr/bin/m4 failed with exit status: 1 aclocal: error: echo failed with exit status: 1 autoreconf: aclocal failed with exit status: 1 修改如下: vim glib/m4macros/glib-gettext.m4 m4_copy([AC_DEFUN], [glib_DEFUN]) m4_copy([AC_REQUIRE], [glib_REQUIRE]) 替换成: m4_copy_force([AC_DEFUN], [glib_DEFUN]) m4_copy_force([AC_REQUIRE], [glib_REQUIRE])