On Tue, 24 Apr 2001, David Bailey wrote: [...] > Making all in sigc++ > Make: Don't know how to make ./macros/acconfig.h.m4. Stop. > *** Exit 1 > Stop. > > Has anyone experienced this as well? Has anyone resolved it? Forgive me if > I'm being naive on this. Very weird. sigc++/acconfig.h should be in the distribution. So everyone who used the source tarball should have been affected by this if that was the case. I guess we better check to make sure `make dist` is working properly. What's happening is that acconfig.h is missing so make is trying one of its rules for generating some of the header files and failing. I've attached sigc++/acconfig.h from latest CVS. This should work okay now. Allan. (ARRae)
#ifndef _SIGC_CONFIG_H_ #define _SIGC_CONFIG_H_ #if 0 @TOP@ @BOTTOM@ #undef PACKAGE #endif /* 0 */ #undef SIGC_MAJOR_VERSION #undef SIGC_MINOR_VERSION #undef SIGC_MICRO_VERSION // detect common platforms #if defined(_WIN32) // Win32 compilers have a lot of varation #if defined(__BORLANDC__) #define LIBSIGC_BC #define LIBSIGC_WIN32 #elif defined(_MSC_VER) #define LIBSIGC_MSC #define LIBSIGC_WIN32 #elif defined(__CYGWIN__) #define LIBSIGC_UNIX #else #error "Unknown architecture (send me gcc --dumpspecs)" #endif #else #define LIBSIGC_UNIX #endif /* _WIN32 */ #ifdef LIBSIGC_UNIX #undef SIGC_CXX_NAMESPACES #undef SIGC_CXX_PARTIAL_SPEC #undef SIGC_CXX_MEMBER_FUNC_TEMPLATES #undef SIGC_CXX_MEMBER_CLASS_TEMPLATES #undef SIGC_CXX_MUTABLE #undef SIGC_CXX_FRIEND_TEMPLATES #undef SIGC_CXX_TEMPLATE_CCTOR #undef SIGC_CXX_INT_CTOR #undef SIGC_CXX_VOID_RETURN #undef SIGC_CXX_SPECIALIZE_REFERENCES #undef SIGC_PTHREADS #undef SIGC_PTHREAD_DCE #ifdef SIGC_PTHREADS #undef SIGC_PTHREAD_COND_ATTR #undef SIGC_PTHREAD_COND_IMPL #undef SIGC_PTHREAD_MUTEX_ATTR #undef SIGC_PTHREAD_MUTEX_IMPL #undef SIGC_PTHREAD_THREAD_ATTR #undef SIGC_PTHREAD_THREAD_IMPL #undef SIGC_PTHREAD_KEY_IMPL #endif /* SIGC_PTHREADS */ #endif /* LIBSIGC_UNIX */ #ifdef LIBSIGC_BC #define SIGC_CXX_NAMESPACES 1 #define SIGC_CXX_PARTIAL_SPEC 1 #define SIGC_CXX_MEMBER_FUNC_TEMPLATES 1 #define SIGC_CXX_MEMBER_CLASS_TEMPLATES 1 #define SIGC_CXX_MUTABLE 1 #define SIGC_CXX_FRIEND_TEMPLATES 1 #define SIGC_CXX_INT_CTOR 1 #define SIGC_CXX_VOID_RETURN 1 #define SIGC_CXX_SPECIALIZE_REFERENCES 1 #endif /* LIBSIGC_BC */ #ifdef LIBSIGC_MSC #define SIGC_CXX_NAMESPACES 1 #define SIGC_CXX_MEMBER_FUNC_TEMPLATES 1 #define SIGC_CXX_MEMBER_CLASS_TEMPLATES 1 #define SIGC_CXX_MUTABLE 1 #define SIGC_CXX_TEMPLATE_CCTOR 1 #define SIGC_CXX_INT_CTOR 1 #endif /* LIBSIGC_MSC */ #ifdef LIBSIGC_WIN32 #ifdef LIBSIGC_EXPORTS #define LIBSIGC_API __declspec(dllexport) #define LIBSIGC_TMPL #else #define LIBSIGC_API __declspec(dllimport) #define LIBSIGC_TMPL extern #endif /* LIBSIGC_EXPORTS */ #else #define LIBSIGC_API #endif /* LIBSIGC_WIN32 */ #endif /* _SIGC_CONFIG_H_ */
