2016-06-03 01:35:01 +00:00
|
|
|
AC_INIT([libcpuid CPU Identification library], [0.3.0], [libcpuid-devel@lists.sourceforge.net], [libcpuid])
|
2008-11-06 18:17:20 +00:00
|
|
|
AC_CONFIG_SRCDIR([libcpuid/libcpuid.h])
|
2010-04-20 10:18:53 +00:00
|
|
|
AC_CONFIG_HEADERS([config.h])
|
2014-06-25 10:48:32 +00:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2010-04-20 10:18:53 +00:00
|
|
|
AM_INIT_AUTOMAKE([-Wall dist-bzip2 dist-zip foreign])
|
2008-11-06 18:17:20 +00:00
|
|
|
|
|
|
|
dnl Versioning scheme shamelessly copied from libexif.
|
2009-07-06 18:33:56 +00:00
|
|
|
dnl Short walkthrough. C means CURRENT, A mean AGE, R means REVISION
|
|
|
|
dnl 1) When you make a change that breaks binary compatibility, increment CURRENT, reset REVISION to 0 and:
|
|
|
|
dnl 1.1) If the change doesn't remove interfaces, increment AGE, otherwise reset to 0.
|
|
|
|
dnl 2) When you make just a source change that doesn't break binary compatibility, increment REVISION.
|
|
|
|
dnl When you make a change that adds features, increment AGE, and set REVISION to 0
|
2008-11-06 18:17:20 +00:00
|
|
|
dnl C:A:R
|
|
|
|
dnl 10:0:0 Version 0.1.0
|
2009-07-06 18:33:56 +00:00
|
|
|
dnl 11:0:0 Version 0.1.1: four more fields to cpu_raw_data_t
|
2010-04-20 09:01:07 +00:00
|
|
|
dnl 11:0:1 Version 0.1.2: added cpu_msr* functions
|
|
|
|
dnl 11:0:2 Version 0.1.3: added cpu_clock_by_ic() function
|
2011-01-14 05:28:31 +00:00
|
|
|
dnl 11:0:3 Version 0.1.4: just an identification change, to reflect the detection table upgrades
|
2011-10-11 16:38:41 +00:00
|
|
|
dnl 12:1:0 Version 0.2.0: two more fields to cpu_id_t
|
2014-06-25 11:13:00 +00:00
|
|
|
dnl 12:1:1 Version 0.2.1: more processors support
|
2015-11-03 23:17:52 +00:00
|
|
|
dnl 12:1:2 Version 0.2.2: more processors support, *BSD/Solaris support, updates to MSR stuff
|
2016-06-03 01:35:01 +00:00
|
|
|
dnl 13:2:0 Version 0.3.0: increment max Intel leaf 04 entries to 8
|
|
|
|
LIBCPUID_CURRENT=13
|
|
|
|
LIBCPUID_AGE=2
|
|
|
|
LIBCPUID_REVISION=0
|
2008-11-06 18:17:20 +00:00
|
|
|
AC_SUBST([LIBCPUID_AGE])
|
|
|
|
AC_SUBST([LIBCPUID_REVISION])
|
|
|
|
AC_SUBST([LIBCPUID_CURRENT])
|
|
|
|
AC_SUBST([LIBCPUID_CURRENT_MIN],[`expr $LIBCPUID_CURRENT - $LIBCPUID_AGE`])
|
|
|
|
LIBCPUID_VERSION_INFO="$LIBCPUID_CURRENT:$LIBCPUID_REVISION:$LIBCPUID_AGE"
|
|
|
|
AC_SUBST([LIBCPUID_VERSION_INFO])
|
|
|
|
|
|
|
|
|
|
|
|
AC_PROG_CC
|
2014-08-18 15:17:24 +00:00
|
|
|
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
|
2008-11-06 18:17:20 +00:00
|
|
|
AC_C_CONST
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
AM_CPPFLAGS="$CPPFLAGS"
|
|
|
|
|
|
|
|
AC_CHECK_HEADERS([stdint.h])
|
|
|
|
|
|
|
|
AM_LDFLAGS="$LDFLAGS"
|
|
|
|
if test "x$GCC" = "xyes"; then
|
|
|
|
AM_CFLAGS="$AM_CFLAGS -ansi -pedantic-error"
|
|
|
|
AM_CXXFLAGS="$AM_CXXFLAGS -ansi -pedantic-error"
|
|
|
|
AM_CPPFLAGS="$AM_CPPFLAGS -g -Wall -Wmissing-declarations -Wmissing-prototypes"
|
|
|
|
AM_LDFLAGS="$AM_LDFLAGS -g -Wall"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
AC_SUBST(AM_CPPFLAGS)
|
|
|
|
AC_SUBST(AM_LDFLAGS)
|
|
|
|
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
|
|
|
libcpuid.pc
|
|
|
|
libcpuid/Makefile
|
2008-11-10 16:04:29 +00:00
|
|
|
cpuid_tool/Makefile
|
2009-01-13 18:33:28 +00:00
|
|
|
tests/Makefile
|
2016-05-22 20:20:16 +00:00
|
|
|
libcpuid/Doxyfile
|
2008-11-06 18:17:20 +00:00
|
|
|
])
|
|
|
|
AC_OUTPUT
|
|
|
|
|