mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
Prevented locally defined headers from interfering with ntfs-3g ones
Order the include directories so that those defined for ntfs-3g have priority over locally defined ones.
This commit is contained in:
parent
90c361e7f8
commit
9a8aeeea13
@ -7,7 +7,10 @@ endif
|
||||
|
||||
libfuse_lite_la_CFLAGS= \
|
||||
$(AM_CFLAGS) \
|
||||
$(LIBFUSE_LITE_CFLAGS) \
|
||||
$(LIBFUSE_LITE_CFLAGS)
|
||||
|
||||
libfuse_lite_la_CPPFLAGS= \
|
||||
$(AM_CPPFLAGS) \
|
||||
-I$(top_srcdir)/include/fuse-lite
|
||||
|
||||
libfuse_lite_la_LIBADD = $(LIBFUSE_LITE_LIBS)
|
||||
|
@ -9,8 +9,8 @@ else
|
||||
noinst_LTLIBRARIES = libntfs-3g.la
|
||||
endif
|
||||
|
||||
libntfs_3g_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/include/ntfs-3g
|
||||
libntfs_3g_la_CPPFLAGS= $(AM_CPPFLAGS) $(LIBNTFS_CPPFLAGS)
|
||||
libntfs_3g_la_CFLAGS = $(AM_CFLAGS)
|
||||
libntfs_3g_la_CPPFLAGS= $(AM_CPPFLAGS) $(LIBNTFS_CPPFLAGS) -I$(top_srcdir)/include/ntfs-3g
|
||||
libntfs_3g_la_LIBADD = $(LIBNTFS_LIBS)
|
||||
libntfs_3g_la_LDFLAGS = -version-info $(LIBNTFS_3G_VERSION) -no-undefined
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user