From: Miklos Szeredi Date: Fri, 3 Feb 2006 09:20:31 +0000 (+0000) Subject: fix X-Git-Tag: fuse_2_6_0_pre1~12 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=357529ca870bb79be7dae0d45538d7c49595dfd7;p=qemu-gpiodev%2Flibfuse.git fix --- diff --git a/ChangeLog b/ChangeLog index 852001d..e87d83f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-02-03 Miklos Szeredi + + * Fix compilation when build directory is different from source + directory. Reported by Frédéric L. W. Meunier + 2006-02-02 Miklos Szeredi * Fix even bigger bug introduced in fix for request_end() on diff --git a/example/Makefile.am b/example/Makefile.am index 8d62e9d..1f31cfc 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,5 +1,6 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = -I$(top_srcdir)/include noinst_PROGRAMS = fusexmp fusexmp_fh null hello hello_ll fusexmp_SOURCES = fusexmp.c diff --git a/lib/Makefile.am b/lib/Makefile.am index 4aebe77..287371d 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,5 +1,6 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = -I$(top_srcdir)/include lib_LTLIBRARIES = libfuse.la if BSD @@ -23,6 +24,6 @@ libfuse_la_SOURCES = \ $(mount_source) libfuse_la_LDFLAGS = $(libfuse_libs) -version-number 2:6:0 \ - -Wl,--version-script,fuse_versionscript + -Wl,--version-script,$(srcdir)/fuse_versionscript EXTRA_DIST = fuse_versionscript