AC_INIT([libosinfo], [1.4.0], [libosinfo@redhat.com]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.11.1 foreign color-tests tar-ustar]) AC_PREREQ([2.61]) AC_CONFIG_SRCDIR([osinfo/osinfo_db.c]) AC_CONFIG_HEADERS([config.h]) AC_PROG_CC AC_PROG_LN_S LT_INIT([shared disable-static win32-dll]) LIBOSINFO_COMPILE_WARNINGS AM_MAINTAINER_MODE([enable]) # i18 support AM_GNU_GETTEXT_VERSION([0.19.8]) AM_GNU_GETTEXT([external]) GETTEXT_PACKAGE=AC_PACKAGE_NAME AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[The name of the gettext domain]) # Autoconf 2.61a.99 and earlier don't support linking a file only # in VPATH builds. But since GNUmakefile is for maintainer use # only, it does not matter if we skip the link with older autoconf. # Automake 1.10.1 and earlier try to remove GNUmakefile in non-VPATH # builds, so use a shell variable to bypass this. GNUmakefile=GNUmakefile m4_if(m4_version_compare([2.61a.100], m4_defn([m4_PACKAGE_VERSION])), [1], [], [AC_CONFIG_LINKS([$GNUmakefile:$GNUmakefile], [], [GNUmakefile=$GNUmakefile])]) # Use the silent-rules feature when possible. m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) # Keep these two definitions in agreement. GLIB_MINIMUM_VERSION="2.38" GLIB_ENCODED_VERSION="GLIB_VERSION_2_38" PKG_CHECK_MODULES([LIBXML], [libxml-2.0 >= 2.6.0]) PKG_CHECK_MODULES([LIBXSLT], [libxslt >= 1.0.0]) PKG_CHECK_MODULES([GLIB], [glib-2.0 >= $GLIB_MINIMUM_VERSION gobject-2.0 gio-2.0]) GLIB_CFLAGS="$GLIB_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=$GLIB_ENCODED_VERSION" GLIB_CFLAGS="$GLIB_CFLAGS -DGLIB_VERSION_MAX_ALLOWED=$GLIB_ENCODED_VERSION" AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) GTK_DOC_CHECK([1.10],[--flavour no-tmpl]) AC_ARG_ENABLE([tests], AS_HELP_STRING([--enable-tests], [enable test suite]), [], [enable_tests=yes]) if test "x$enable_tests" != "xno" ; then have_curl=no PKG_CHECK_MODULES([CURL], [libcurl], [have_curl=yes], [:]) AC_SUBST(CURL_CFLAGS) AC_SUBST(CURL_LIBS) fi AM_CONDITIONAL([HAVE_CURL],[test "x$have_curl" = "xyes"]) AM_CONDITIONAL([ENABLE_TESTS],[test "x$enable_tests" = "xyes"]) LIBOSINFO_MAJOR_VERSION=`echo $VERSION | awk -F. '{print $1}'` LIBOSINFO_MINOR_VERSION=`echo $VERSION | awk -F. '{print $2}'` LIBOSINFO_MICRO_VERSION=`echo $VERSION | awk -F. '{print $3}'` LIBOSINFO_VERSION=$LIBOSINFO_MAJOR_VERSION.$LIBOSINFO_MINOR_VERSION.$LIBOSINFO_MICRO_VERSION$LIBOSINFO_MICRO_VERSION_SUFFIX LIBOSINFO_VERSION_NUMBER=`expr $LIBOSINFO_MAJOR_VERSION \* 1000000 + $LIBOSINFO_MINOR_VERSION \* 1000 + $LIBOSINFO_MICRO_VERSION` # In libtool terminology we need to figure out: # # CURRENT # The most recent interface number that this library implements. # # REVISION # The implementation number of the CURRENT interface. # # AGE # The difference between the newest and oldest interfaces that this # library implements. # # In other words, the library implements all the interface numbers # in the range from number `CURRENT - AGE' to `CURRENT'. # # Libtool assigns the soname version from `CURRENT - AGE', and we # don't want that to ever change in libosinfo. ie it must always be # zero, to produce libosinfo.so.0. # # We would, however, like the libosinfo version number reflected # in the so version'd symlinks, and this is based on AGE.REVISION # eg libosinfo.so.0.AGE.REVISION # # Assuming we do ever want to break soname version, this can # toggled. But seriously, don't ever touch this. LIBOSINFO_SONUM=0 # The following examples show what libtool will do # # Input: 0.3.0 -> libosinfo.so.0.3.0 # Input: 1.0.0 -> libosinfo.so.0.1000.0 # Input: 2.5.8 -> libosinfo.so.0.2005.8 # AGE=`expr $LIBOSINFO_MAJOR_VERSION '*' 1000 + $LIBOSINFO_MINOR_VERSION` REVISION=$LIBOSINFO_MICRO_VERSION CURRENT=`expr $LIBOSINFO_SONUM + $AGE` LIBOSINFO_VERSION_INFO=$CURRENT:$REVISION:$AGE AC_SUBST([LIBOSINFO_MAJOR_VERSION]) AC_SUBST([LIBOSINFO_MINOR_VERSION]) AC_SUBST([LIBOSINFO_MICRO_VERSION]) AC_SUBST([LIBOSINFO_SONUM]) AC_SUBST([LIBOSINFO_VERSION]) AC_SUBST([LIBOSINFO_VERSION_INFO]) AC_SUBST([LIBOSINFO_VERSION_NUMBER]) NO_UNDEFINED_LDFLAGS= VERSION_SCRIPT_FLAGS= USE_VERSION_DEFS=0 case "$host" in *-*-mingw*) VERSION_SCRIPT_FLAGS="-Wl," USE_VERSION_DEFS=1 NO_UNDEFINED_FLAGS="-no-undefined" ;; *-*-cygwin*) NO_UNDEFINED_LDFLAGS="-no-undefined" ;; *darwin*) NO_UNDEFINED_LDFLAGS="-Wl,-undefined,error" ;; *-*-solaris*) NO_UNDEFINED_LDFLAGS="-zdefs" ;; *) NO_UNDEFINED_FLAGS="-Wl,--no-undefined" VERSION_SCRIPT_FLAGS=-Wl,--version-script= `ld --help 2>&1 | grep -- --version-script >/dev/null` || \ VERSION_SCRIPT_FLAGS="-Wl,-M -Wl," ;; esac AC_SUBST([NO_UNDEFINED_FLAGS]) AC_SUBST([VERSION_SCRIPT_FLAGS]) AM_CONDITIONAL([USE_VERSION_DEFS], [test "$USE_VERSION_DEFS" = "1"]) with_linux=no case $host in *-*-linux*) with_linux=yes ;; esac AM_CONDITIONAL([WITH_LINUX], [test "$with_linux" = "yes"]) AC_PATH_PROG([PERL], [perl]) if test -z "$PERL"; then AC_MSG_ERROR([Failed to find perl.]) fi GOBJECT_INTROSPECTION_CHECK([0.9.7]) AC_ARG_ENABLE([vala], AS_HELP_STRING([--enable-vala], [enable Vala binding generation]), [], [enable_vala=check]) if test "x$enable_introspection" = "xyes" ; then if test "x$enable_vala" != "xno" ; then AC_PATH_PROG(VAPIGEN, vapigen, no) if test "x$VAPIGEN" != "xno"; then if test "x$enable_vala" == "xcheck" ; then enable_vala=yes fi AC_SUBST(VAPIGEN) else if test "x$enable_vala" == "xyes" ; then AC_MSG_ERROR([Cannot find the "vapigen" binary in your PATH]) fi fi fi fi AM_CONDITIONAL([WITH_VALA], [test "x$enable_vala" = "xyes"]) AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage], [enable GCC code coverage]), [], [enable_coverage=no]) COVERAGE_CFLAGS= COVERAGE_LDFLAGS= if test "x$enable_coverage" == "xyes" ; then COVERAGE_CFLAGS="-fprofile-arcs -ftest-coverage" COVERAGE_LDFLAGS="$COVERAGE_CFLAGS" fi AC_SUBST(COVERAGE_CFLAGS) AC_SUBST(COVERAGE_LDFLAGS) USB_ID_FILES="/usr/share/usb.ids /usr/share/misc/usb.ids \ /usr/share/hwdata/usb.ids /usr/local/share/usbids/usb.ids" AC_ARG_WITH(usb-ids-path, [AC_HELP_STRING([--with-usb-ids-path], [Specify the path to usb.ids @<:@default=(internal)@:>@])]) AC_MSG_CHECKING([location of usb.ids database]) local_usb_ids=0 if test -z "$with_usb_ids_path" then if test $host = $build then for FILE in $USB_ID_FILES do if test -f $FILE then with_usb_ids_path="$FILE" break fi done fi if test -z "$with_usb_ids_path" then local_usb_ids=1 fi fi AM_CONDITIONAL([LOCAL_USB_IDS], [test "$local_usb_ids" = "1"]) if test -n "$with_usb_ids_path" then AC_DEFINE_UNQUOTED([USB_IDS], ["$with_usb_ids_path"], ["location of usb.ids database"]) AC_MSG_RESULT([$with_usb_ids_path]) else AC_MSG_RESULT([]) fi PCI_ID_FILES="/usr/share/pci.ids /usr/share/misc/pci.ids \ /usr/share/hwdata/pci.ids /usr/local/share/pciids/pci.ids" AC_ARG_WITH(pci-ids-path, [AC_HELP_STRING([--with-pci-ids-path], [Specify the path to pci.ids @<:@default=(internal)@:>@])]) AC_MSG_CHECKING([location of pci.ids database]) local_pci_ids=0 if test -z "$with_pci_ids_path" then if test $host = $build then for FILE in $PCI_ID_FILES do if test -f $FILE then with_pci_ids_path="$FILE" break fi done fi if test -z "$with_pci_ids_path" then local_pci_ids=1 fi fi AM_CONDITIONAL([LOCAL_PCI_IDS], [test "$local_pci_ids" = "1"]) if test -n "$with_pci_ids_path" then AC_DEFINE_UNQUOTED([PCI_IDS], ["$with_pci_ids_path"], ["location of pci.ids database"]) AC_MSG_RESULT([$with_pci_ids_path]) else AC_MSG_RESULT([]) fi # Setup GLIB_MKENUMS to use glib-mkenums even if GLib is uninstalled. GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` AC_SUBST(GLIB_MKENUMS) AC_CONFIG_FILES([ Makefile libosinfo.spec mingw-libosinfo.spec osinfo/Makefile osinfo/libosinfo-1.0.pc osinfo/osinfo_version.h tools/Makefile tests/Makefile docs/Makefile docs/reference/Makefile examples/Makefile po/Makefile.in ]) AC_OUTPUT