I know this is not a supported package. But if someone can point me the way, 
I'd appreciate it. I'm trying to configure (at this point) open-vm-tools 9.4.0:

$(OPENVMTOOLS_DIR)/.configured: $(OPENVMTOOLS_DIR)/.source
    (cd $(OPENVMTOOLS_DIR) ; \
    ./configure \
        --disable-docs \
        --without-root-privileges \
        --without-gtk2 \
        --without-gtkmm \
        --without-pam \
        --without-x \
      );    
    touch $(OPENVMTOOLS_DIR)/.configured


And I get into this error:

checking how to hardcode library paths into programs... immediate
checking for pkg-config... yes
checking for X... disabled
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for glib-2.0 >= 2.6.0 (via pkg-config)... no
configure: error: glib >= 2.6.0 is required.
make: *** [open-vm-tools-9.4.0-1280544/.configured] Error 1

I also tried adding --host=$(GNU_TARGET_NAME) and --build=$(GNU_BUILD_NAME):

$(OPENVMTOOLS_DIR)/.configured: $(OPENVMTOOLS_DIR)/.source
    (cd $(OPENVMTOOLS_DIR) ; \
    ./configure \
        --host=$(GNU_TARGET_NAME) \
        --build=$(GNU_BUILD_NAME) \
        --disable-docs \
        --without-root-privileges \
        --without-gtk2 \
        --without-gtkmm \
        --without-pam \
        --without-x \
      );    
    touch $(OPENVMTOOLS_DIR)/.configured

And I get:

checking for X... disabled
checking libintl.h usability... no
checking libintl.h presence... no
checking for libintl.h... no
checking libintl.h usability... no
checking libintl.h presence... no
checking for libintl.h... no
configure: error: libintl.h not found. Make sure you have the gettext headers 
installed.
make: *** [open-vm-tools-9.4.0-1280544/.configured] Error 1

------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk

_______________________________________________
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel

Reply via email to