mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
72bea99a8f
The OpenSolaris port of libfuse, from which our Solaris-port of libfuse-lite originated, had to be supplied with some additional compiler flags in order to compile. The configure script now detects whether it is running on a Solaris system. If that is the case it passes the proper compiler flags to libfuse-lite, so it can compile properly. Tested on: - OpenIndiana oi_151a3 / gcc 3.4.3 - OpenIndiana oi_151a7 / gcc 4.3.3 - Solaris 11.1 / gcc 4.5.2
32 lines
558 B
Makefile
32 lines
558 B
Makefile
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|
|
|
|
if FUSE_INTERNAL
|
|
noinst_LTLIBRARIES = libfuse-lite.la
|
|
endif
|
|
|
|
libfuse_lite_la_CFLAGS= \
|
|
$(AM_CFLAGS) \
|
|
$(LIBFUSE_LITE_CFLAGS) \
|
|
-I$(top_srcdir)/include/fuse-lite
|
|
|
|
libfuse_lite_la_LIBADD = $(LIBFUSE_LITE_LIBS)
|
|
|
|
libfuse_lite_la_SOURCES = \
|
|
fuse.c \
|
|
fuse_i.h \
|
|
fuse_kern_chan.c \
|
|
fuse_loop.c \
|
|
fuse_lowlevel.c \
|
|
fuse_misc.h \
|
|
fuse_opt.c \
|
|
fuse_session.c \
|
|
fuse_signals.c \
|
|
fusermount.c \
|
|
helper.c \
|
|
mount.c \
|
|
mount_util.c \
|
|
mount_util.h
|
|
|
|
libs: libfuse-lite.la
|