. flex moved back into the base system, so prefix is /usr

. sysenv.c and umount.c need <minix/type.h> now
This commit is contained in:
Ben Gras 2006-06-20 08:46:45 +00:00
parent 296a0fb33d
commit 9be69be836
3 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
CC=cc /bin/sh ./configure --prefix=/usr/local && make all
CC=cc /bin/sh ./configure --prefix=/usr && make all
if [ "$1" != build ]
then make install
fi

View File

@ -2,6 +2,7 @@
* 23 Dec 2000
*/
#define nil ((void*)0)
#include <minix/type.h>
#include <sys/types.h>
#include <sys/svrctl.h>
#include <stdarg.h>

View File

@ -3,6 +3,7 @@
#define _MINIX 1 /* for proto of the non-POSIX umount() */
#define _POSIX_SOURCE 1 /* for PATH_MAX from limits.h */
#include <minix/type.h>
#include <sys/types.h>
#include <sys/svrctl.h>
#include <fcntl.h>