diff options
author | az <az@FreeBSD.org> | 2006-02-28 15:09:32 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2006-02-28 15:09:32 +0800 |
commit | 4198638d1ef435be25989bb10cad9a0d3d532495 (patch) | |
tree | 1a266fced84b04cd86ce4c0765c077685d735742 /sysutils/setcdboot | |
parent | 8c359ac8f947ec10c911b66f6781b01d016706b7 (diff) | |
download | freebsd-ports-gnome-4198638d1ef435be25989bb10cad9a0d3d532495.tar.gz freebsd-ports-gnome-4198638d1ef435be25989bb10cad9a0d3d532495.tar.zst freebsd-ports-gnome-4198638d1ef435be25989bb10cad9a0d3d532495.zip |
- Fix build on RELENG_6
Approved by: portmgr (erwin@)
Diffstat (limited to 'sysutils/setcdboot')
-rw-r--r-- | sysutils/setcdboot/Makefile | 4 | ||||
-rw-r--r-- | sysutils/setcdboot/files/setcdboot.c | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/sysutils/setcdboot/Makefile b/sysutils/setcdboot/Makefile index 107c2972d753..b5814203f0d0 100644 --- a/sysutils/setcdboot/Makefile +++ b/sysutils/setcdboot/Makefile @@ -18,10 +18,6 @@ PLIST_FILES= bin/setcdboot .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 600100 && ${OSVERSION} < 700000 -BROKEN= Does not compile on FreeBSD 6.x -.endif - do-fetch: do-extract: diff --git a/sysutils/setcdboot/files/setcdboot.c b/sysutils/setcdboot/files/setcdboot.c index 187536bf1004..5386afddbe44 100644 --- a/sysutils/setcdboot/files/setcdboot.c +++ b/sysutils/setcdboot/files/setcdboot.c @@ -62,7 +62,7 @@ struct ptable_ent { /* XXX these should be in the system headers */ #include <osreldate.h> -#if __FreeBSD_version < 700003 +#if __FreeBSD_version < 600032 static __inline int isonum_722(u_char *p) { |