John Eberly wrote:
> "My system definitely has gcc."
> 
> so does mine.
> 
> it appeared to my untrained eye, that possibly there were some comments 
> improperly escaped with @#, so I deleted all of those lines and now I am 
> getting the following.
> 
> Package glib-2.0 was not found in the pkg-config search path.
> Perhaps you should add the directory containing `glib-2.0.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'glib-2.0' found
> Package glib-2.0 was not found in the pkg-config search path.
> Perhaps you should add the directory containing `glib-2.0.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'glib-2.0' found
> 
> I have not had a chance to explore this further yet.

My build broke with revision 2473. Anything before this will build correctly.

The problem with PKG_CONFIG_PATH can be fixed with the following patch (There 
may be problems with 
line wrap.):

Index: configure
===================================================================
--- configure   (revision 2514)
+++ configure   (working copy)
@@ -194,10 +194,12 @@
    case "$CPU" in
      i[3456789]86|x86)
        MACHINE='x86'
+      LBD='lib'
        ;;
      x86_64|amd64)
        MACHINE='amd64'
        CPU='k8'
+      LBD='lib64'

        echo ""
        echo ""
@@ -495,7 +497,7 @@
      else
        log_success "found version $libidl_ver"
        cnf_append "VBOX_LIBIDL_CONFIG" \
-        "PKG_CONFIG_PATH=`libIDL-config-2 --prefix`/lib/pkgconfig 
`which_wrapper libIDL-config-2`"
+        "PKG_CONFIG_PATH=`libIDL-config-2 --prefix`/$LBD/pkgconfig 
`which_wrapper libIDL-config-2`"
      fi
    elif check_avail "libIDL-config" libIDL-config; then
      libidl_ver=`libIDL-config --version`


_______________________________________________
vbox-users mailing list
[email protected]
http://vbox.innotek.de/mailman/listinfo/vbox-users

Reply via email to