From 3cb4ebe7752bddbe811c21f086736339ec5e8cea Mon Sep 17 00:00:00 2001 From: Philip Langdale Date: Sat, 31 Mar 2012 12:18:25 -0700 Subject: [PATCH] =?UTF-8?q?Rename=20pifs=20to=20=CF=80fs.=20That=20is=20wh?= =?UTF-8?q?at=20it=20is,=20after=20all.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- configure.ac | 21 ++------------------- src/Makefile.am | 6 +++--- src/{pifs.c => πfs.c} | 0 4 files changed, 6 insertions(+), 23 deletions(-) rename src/{pifs.c => πfs.c} (100%) diff --git a/.gitignore b/.gitignore index 1c78455..4308873 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,5 @@ config.h config.log config.status Makefile -pifs +πfs stamp-h1 diff --git a/configure.ac b/configure.ac index 6ab9ddd..8b9db39 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ -AC_INIT([piFS], [1.0], [philipl@overt.org], [pifs]) +AC_INIT([πFS], [1.0], [philipl@overt.org], [πfs]) AC_CONFIG_AUX_DIR(build) -AC_CONFIG_SRCDIR(src/pifs.c) +AC_CONFIG_SRCDIR(src/πfs.c) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE @@ -13,26 +13,9 @@ AC_LANG_C # Checks for header files AC_HEADER_DIRENT AC_HEADER_STDC -AC_CHECK_HEADERS([fcntl.h string.h unistd.h]) PKG_CHECK_MODULES([FUSE], [fuse >= 2.8]) -# Checks for typedefs, structures, and compiler characteristics -AC_HEADER_STDBOOL -AC_C_CONST -AC_TYPE_UID_T -AC_C_INLINE -AC_TYPE_MODE_T -AC_TYPE_OFF_T -AC_TYPE_SIZE_T - -# Check for functions -AC_FUNC_CLOSEDIR_VOID -AC_FUNC_LSTAT -AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK -AC_FUNC_UTIME_NULL -AC_CHECK_FUNCS([fchdir fdatasync fork ftruncate lchown memset mkdir mkfifo rmdir setxattr strdup strerror utime]) - AC_SUBST([EXTRA_CFLAGS], ["-Wall -Werror -Wextra -Wno-unused-parameter"]) AC_CONFIG_FILES([Makefile diff --git a/src/Makefile.am b/src/Makefile.am index 9a13749..1dcb5ea 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ INCLUDES = $(FUSE_CFLAGS) $(EXTRA_CFLAGS) -bin_PROGRAMS=pifs +bin_PROGRAMS=πfs -pifs_SOURCES=pifs.c piqpr8.c +__fs_SOURCES=πfs.c piqpr8.c -pifs_LDADD = $(FUSE_LIBS) -lm +__fs_LDADD = $(FUSE_LIBS) -lm diff --git a/src/pifs.c b/src/πfs.c similarity index 100% rename from src/pifs.c rename to src/πfs.c