mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-26 21:54:30 +08:00
Fix the compile command in the examples
Reported by Luciano Dalle Ore
This commit is contained in:
parent
384496dd02
commit
46b9c3326d
@ -5,6 +5,9 @@
|
||||
be linked to stubs in glibc. So move -pthread from Libs.private
|
||||
to Libs in fuse.pc. Reported by Werner Fink
|
||||
|
||||
* Fix the compile command in the examples. Reported by Luciano
|
||||
Dalle Ore
|
||||
|
||||
2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
|
||||
|
||||
* Released 2.9.0
|
||||
|
@ -6,7 +6,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` cusexmp.c -o cusexmp
|
||||
gcc -Wall cusexmp.c `pkg-config fuse --cflags --libs` -o cusexmp
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 29
|
||||
|
@ -6,7 +6,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` fioc.c -o fioc
|
||||
gcc -Wall fioc.c `pkg-config fuse --cflags --libs` -o fioc
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
@ -6,7 +6,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` fsel.c -o fsel
|
||||
gcc -Wall fsel.c `pkg-config fuse --cflags --libs` -o fsel
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 29
|
||||
|
@ -6,7 +6,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` fusexmp.c -o fusexmp
|
||||
gcc -Wall fusexmp.c `pkg-config fuse --cflags --libs` -o fusexmp
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
@ -6,7 +6,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` -lulockmgr fusexmp_fh.c -o fusexmp_fh
|
||||
gcc -Wall fusexmp_fh.c `pkg-config fuse --cflags --libs` -lulockmgr -o fusexmp_fh
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
@ -5,7 +5,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` hello.c -o hello
|
||||
gcc -Wall hello.c `pkg-config fuse --cflags --libs` -o hello
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
@ -5,7 +5,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` hello_ll.c -o hello_ll
|
||||
gcc -Wall hello_ll.c `pkg-config fuse --cflags --libs` -o hello_ll
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
@ -5,7 +5,7 @@
|
||||
This program can be distributed under the terms of the GNU GPL.
|
||||
See the file COPYING.
|
||||
|
||||
gcc -Wall `pkg-config fuse --cflags --libs` null.c -o null
|
||||
gcc -Wall null.c `pkg-config fuse --cflags --libs` -o null
|
||||
*/
|
||||
|
||||
#define FUSE_USE_VERSION 26
|
||||
|
Loading…
Reference in New Issue
Block a user