Janis Streib
30.03.22 05ec5b8c5dad9c296be7bf4b53c44762ced85e96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
 
AC_PREREQ([2.68])
AC_INIT([G4Track_lib_dist], [0.0.2], [help@polhemus.com])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_LIBTOOL
 
 
have_usblibs=no
AC_SEARCH_LIBS([libusb_open_device_with_vid_pid],[usb-1.0],[have_usblibs=yes])
 
if test "x${have_usblibs}" = xno; then
   AC_MSG_ERROR([
--------------------------------------------------------------------------
The G4Track library requires libusb-1.0 lib to run.  Please install before
continuing.     Stopping....
Check 'config.log' for more information.
--------------------------------------------------------------------------])
fi
 
 
 
AC_CONFIG_FILES([Makefile
         include/Makefile
         udev_rules/Makefile
         bin/Makefile
         man/Makefile])
 
 
AC_OUTPUT