diff --git a/dports/fuse/ext2fuse/Portfile b/dports/fuse/ext2fuse/Portfile
index 94d9408..7f3a17b 100644
a
|
b
|
PortSystem 1.0 |
4 | 4 | |
5 | 5 | name ext2fuse |
6 | 6 | version 0.8.1 |
7 | | revision 1 |
| 7 | revision 2 |
8 | 8 | categories fuse |
9 | 9 | license GPL-2+ |
10 | 10 | platforms darwin |
… |
… |
depends_lib path:lib/libfuse.dylib:fuse4x \ |
29 | 29 | # e2fsprogs does not build for i386 |
30 | 30 | universal_variant no |
31 | 31 | |
32 | | configure.cflags-append -std=gnu89 |
33 | | configure.cflags-append -D__FreeBSD__=10 |
34 | | configure.cflags-append -I${prefix}/include/fuse |
35 | | configure.cflags-append -DENABLE_SWAPFS |
36 | | configure.cppflags -I${prefix}/include/fuse |
| 32 | pre-configure { |
| 33 | configure.cflags-append -std=gnu89 |
| 34 | configure.cflags-append -D__FreeBSD__=10 -DENABLE_SWAPFS |
| 35 | configure.cflags-append [exec pkg-config --cflags-only-other fuse] |
| 36 | configure.cppflags [exec pkg-config --cflags-only-I fuse] |
| 37 | } |