Blame src/components/vmware/configure.in

Packit Service a1973e
AC_INIT
Packit Service a1973e
AC_ARG_WITH(vmware_incdir,
Packit Service a1973e
   [--with-vmware_incdir=<path> Specify path to VMware GuestSDK includes],
Packit Service a1973e
   [VMWARE_INCDIR=$withval
Packit Service a1973e
         CFLAGS="$CFLAGS -I$withval" 
Packit Service a1973e
         AC_CHECK_HEADER([vmGuestLib.h],
Packit Service a1973e
                         [VMGUESTLIB=1],
Packit Service a1973e
                         [AC_MSG_WARN([vmGuestLib.h not found])],
Packit Service a1973e
                         )],
Packit Service a1973e
         [AC_MSG_WARN([Component requires path to vmware includes])])	
Packit Service a1973e
Packit Service a1973e
AC_SUBST(VMWARE_INCDIR)
Packit Service a1973e
AC_SUBST(VMGUESTLIB)
Packit Service a1973e
AC_CONFIG_FILES([Makefile.vmware])
Packit Service a1973e
AC_OUTPUT