aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-03 15:07:49 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-03 15:07:49 +0000
commitd77cf8f3c06ef1673167cac22f5f1072c8eb3584 (patch)
tree5212b62147b416ca33541d085f500f91d32427e8
parentaced3911edbe1c1605fbca574d47091784d4939b (diff)
downloadgnunet-fuse-d77cf8f3c06ef1673167cac22f5f1072c8eb3584.tar.gz
gnunet-fuse-d77cf8f3c06ef1673167cac22f5f1072c8eb3584.zip
-fixing build system
-rw-r--r--configure.ac19
-rw-r--r--src/Makefile.am2
-rw-r--r--src/fuse/Makefile.am (renamed from src/ext/Makefile.am)0
-rw-r--r--src/fuse/ext_api.c (renamed from src/ext/ext_api.c)0
-rw-r--r--src/fuse/getattr.c (renamed from src/ext/getattr.c)0
-rw-r--r--src/fuse/gnunet-fuse.c (renamed from src/ext/gnunet-fuse.c)0
-rw-r--r--src/fuse/gnunet-fuse.h (renamed from src/ext/gnunet-fuse.h)0
-rw-r--r--src/fuse/gnunet-service-fuse.c (renamed from src/ext/gnunet-service-fuse.c)0
-rw-r--r--src/fuse/mkdir.c (renamed from src/ext/mkdir.c)0
-rw-r--r--src/fuse/mknod.c (renamed from src/ext/mknod.c)0
-rw-r--r--src/fuse/open.c (renamed from src/ext/open.c)0
-rw-r--r--src/fuse/read.c (renamed from src/ext/read.c)0
-rw-r--r--src/fuse/readdir.c (renamed from src/ext/readdir.c)0
-rw-r--r--src/fuse/release.c (renamed from src/ext/release.c)0
-rw-r--r--src/fuse/rename.c (renamed from src/ext/rename.c)0
-rw-r--r--src/fuse/rmdir.c (renamed from src/ext/rmdir.c)0
-rw-r--r--src/fuse/test_fuse_api.c (renamed from src/ext/test_fuse_api.c)0
-rw-r--r--src/fuse/truncate.c (renamed from src/ext/truncate.c)0
-rw-r--r--src/fuse/unlink.c (renamed from src/ext/unlink.c)0
-rw-r--r--src/fuse/utimens.c (renamed from src/ext/utimens.c)0
-rw-r--r--src/fuse/write.c (renamed from src/ext/write.c)0
21 files changed, 8 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index d0cf129..d5c6e41 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1# This file is part of GNUnet. 1# This file is part of GNUnet.
2# (C) 2001-2011 Christian Grothoff (and other contributing authors) 2# (C) 2001-2012 Christian Grothoff (and other contributing authors)
3# 3#
4# GNUnet is free software; you can redistribute it and/or modify 4# GNUnet is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published 5# it under the terms of the GNU General Public License as published
@@ -20,9 +20,9 @@
20# Process this file with autoconf to produce a configure script. 20# Process this file with autoconf to produce a configure script.
21# 21#
22AC_PREREQ(2.61) 22AC_PREREQ(2.61)
23AC_INIT([gnunet-ext],[0.0.0],[bug-gnunet@gnu.org]) 23AC_INIT([gnunet-fuse],[0.9.3],[bug-gnunet@gnu.org])
24AM_INIT_AUTOMAKE([gnunet-ext], [0.0.0]) 24AM_INIT_AUTOMAKE([gnunet-fuse], [0.9.3])
25AM_CONFIG_HEADER(gnunet_ext_config.h) 25AM_CONFIG_HEADER(gnunet_fuse_config.h)
26 26
27AH_TOP([#define _GNU_SOURCE 1]) 27AH_TOP([#define _GNU_SOURCE 1])
28 28
@@ -35,18 +35,13 @@ AC_PROG_CPP
35AC_PROG_INSTALL 35AC_PROG_INSTALL
36AC_PROG_LN_S 36AC_PROG_LN_S
37AC_PROG_MAKE_SET 37AC_PROG_MAKE_SET
38AC_LIBTOOL_WIN32_DLL
39AC_PROG_CC 38AC_PROG_CC
40AM_PROG_CC_STDC 39AM_PROG_CC_STDC
41AC_HEADER_STDC 40AC_HEADER_STDC
42AC_CANONICAL_HOST 41AC_CANONICAL_HOST
43
44# dynamic libraries/plugins
45AC_DISABLE_STATIC
46AC_PROG_LIBTOOL
47
48AC_SYS_LARGEFILE 42AC_SYS_LARGEFILE
49AC_FUNC_FSEEKO 43AC_FUNC_FSEEKO
44AM_PROG_CC_C_O
50 45
51CFLAGS="-Wall $CFLAGS" 46CFLAGS="-Wall $CFLAGS"
52# use '-fno-strict-aliasing', but only if the compiler can take it 47# use '-fno-strict-aliasing', but only if the compiler can take it
@@ -168,7 +163,7 @@ fi
168 163
169if test "x$gnunet" == "x0" 164if test "x$gnunet" == "x0"
170then 165then
171 AC_MSG_ERROR([gnunet-gtk requires GNUnet]) 166 AC_MSG_ERROR([gnunet-fuse requires GNUnet])
172fi 167fi
173 168
174AC_SUBST(GNUNET_CFLAGS) 169AC_SUBST(GNUNET_CFLAGS)
@@ -187,5 +182,5 @@ AC_OUTPUT([ po/Makefile.in
187Makefile 182Makefile
188src/Makefile 183src/Makefile
189src/include/Makefile 184src/include/Makefile
190src/ext/Makefile 185src/fuse/Makefile
191]) 186])
diff --git a/src/Makefile.am b/src/Makefile.am
index a53c604..0306f77 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,2 +1,2 @@
1SUBDIRS = include ext . 1SUBDIRS = include fuse .
2 2
diff --git a/src/ext/Makefile.am b/src/fuse/Makefile.am
index c22779c..c22779c 100644
--- a/src/ext/Makefile.am
+++ b/src/fuse/Makefile.am
diff --git a/src/ext/ext_api.c b/src/fuse/ext_api.c
index 961995b..961995b 100644
--- a/src/ext/ext_api.c
+++ b/src/fuse/ext_api.c
diff --git a/src/ext/getattr.c b/src/fuse/getattr.c
index 1b4b6f2..1b4b6f2 100644
--- a/src/ext/getattr.c
+++ b/src/fuse/getattr.c
diff --git a/src/ext/gnunet-fuse.c b/src/fuse/gnunet-fuse.c
index cfcfa60..cfcfa60 100644
--- a/src/ext/gnunet-fuse.c
+++ b/src/fuse/gnunet-fuse.c
diff --git a/src/ext/gnunet-fuse.h b/src/fuse/gnunet-fuse.h
index f30420c..f30420c 100644
--- a/src/ext/gnunet-fuse.h
+++ b/src/fuse/gnunet-fuse.h
diff --git a/src/ext/gnunet-service-fuse.c b/src/fuse/gnunet-service-fuse.c
index 5b523ac..5b523ac 100644
--- a/src/ext/gnunet-service-fuse.c
+++ b/src/fuse/gnunet-service-fuse.c
diff --git a/src/ext/mkdir.c b/src/fuse/mkdir.c
index 68372cb..68372cb 100644
--- a/src/ext/mkdir.c
+++ b/src/fuse/mkdir.c
diff --git a/src/ext/mknod.c b/src/fuse/mknod.c
index f8fb1a5..f8fb1a5 100644
--- a/src/ext/mknod.c
+++ b/src/fuse/mknod.c
diff --git a/src/ext/open.c b/src/fuse/open.c
index 6a067e2..6a067e2 100644
--- a/src/ext/open.c
+++ b/src/fuse/open.c
diff --git a/src/ext/read.c b/src/fuse/read.c
index 0abe005..0abe005 100644
--- a/src/ext/read.c
+++ b/src/fuse/read.c
diff --git a/src/ext/readdir.c b/src/fuse/readdir.c
index 17145ae..17145ae 100644
--- a/src/ext/readdir.c
+++ b/src/fuse/readdir.c
diff --git a/src/ext/release.c b/src/fuse/release.c
index af458ab..af458ab 100644
--- a/src/ext/release.c
+++ b/src/fuse/release.c
diff --git a/src/ext/rename.c b/src/fuse/rename.c
index 10b0419..10b0419 100644
--- a/src/ext/rename.c
+++ b/src/fuse/rename.c
diff --git a/src/ext/rmdir.c b/src/fuse/rmdir.c
index afd9d0f..afd9d0f 100644
--- a/src/ext/rmdir.c
+++ b/src/fuse/rmdir.c
diff --git a/src/ext/test_fuse_api.c b/src/fuse/test_fuse_api.c
index 2c76988..2c76988 100644
--- a/src/ext/test_fuse_api.c
+++ b/src/fuse/test_fuse_api.c
diff --git a/src/ext/truncate.c b/src/fuse/truncate.c
index c605c6c..c605c6c 100644
--- a/src/ext/truncate.c
+++ b/src/fuse/truncate.c
diff --git a/src/ext/unlink.c b/src/fuse/unlink.c
index eff4098..eff4098 100644
--- a/src/ext/unlink.c
+++ b/src/fuse/unlink.c
diff --git a/src/ext/utimens.c b/src/fuse/utimens.c
index 16500ab..16500ab 100644
--- a/src/ext/utimens.c
+++ b/src/fuse/utimens.c
diff --git a/src/ext/write.c b/src/fuse/write.c
index 617d21f..617d21f 100644
--- a/src/ext/write.c
+++ b/src/fuse/write.c