Hello all,
Does anyone know what the likely causes of this error are? This occurs when I run configure after running autoconf on the project. I cannot locate any general answer to this question anywhere. I have Autoconf 2.13, Automake 1.4-p5, and libtool 1.3.5. My input files follow. Any help would be greatly appreciated, as I am having a tough time getting going with these tools, and all the documentation is leading me around in circles with very large circumferences. Thanks, John -------------- configure.in: AC_INIT(aspi.linux.c) AM_INIT_AUTOMAKE(opensmdi, 0.0.5) AM_PROG_LIBTOOL dnl Checks for programs. dnl Checks for libraries. dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(sys/file.h) dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. AC_FUNC_MEMCMP AC_OUTPUT(Makefile) -------------- Makefile.am: ## Process this file with automake to produce Makefile.in lib_LTLIBRARIES = libsmdi.la libsmdi_la_SOURCES = smdi.c aspi.linux.c libsmdi_la_LDFLAGS = -version-info 2:0:5 include_HEADERS = aspi.h smdi.h Thanks in advance, John