Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Nov 2005 05:45:49 GMT
From:      Sam Lawrance <lawrance@FreeBSD.org>
To:        llevier@argosnet.com, lawrance@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/88852: VMWare3 Port Compilation failure under FreeBSD 6.0 i386
Message-ID:  <200511140545.jAE5jn2N026163@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
Synopsis: VMWare3 Port Compilation failure under FreeBSD 6.0 i386

State-Changed-From-To: open->feedback
State-Changed-By: lawrance
State-Changed-When: Mon Nov 14 05:30:29 GMT 2005
State-Changed-Why: 
Your compile is failing here in driver.c:

static struct cdevsw vmmon_cdevsw = {
#if __FreeBSD_version >= 500104
#if __FreeBSD_version >= 502103
        .d_version =    D_VERSION,
#else
        .d_maj =        CDEV_MAJOR   <-------- HERE
#endif
        .d_open =       FreeBSD_Driver_Open,  
        .d_name =       DEVICE_NAME,
#else
        /* open */      FreeBSD_Driver_Open,
        /* close */     noclose,
        /* read */      noread,
        /* psize */     nopsize,
        /* flags */     0,
        /* bmaj */      -1
#endif
};

Which means that somehow __FreeBSD_version is defined to less than 502013.
Is your copy of /usr/src from 6.x?  If not, could you update it and try
again?


http://www.freebsd.org/cgi/query-pr.cgi?pr=88852



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511140545.jAE5jn2N026163>