summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-02-12 07:13:21 -0800
committerH. Peter Anvin <hpa@zytor.com>2009-02-12 07:13:21 -0800
commit462c45225fd1b86b938310d7dd623534c618a9e0 (patch)
treecd7dbb4391a6f507ef75a71f8fdd8d858db528c7
parentfde8d06b29714d94b8ad4b71a22148cf44e91fa0 (diff)
downloadfatattr-462c45225fd1b86b938310d7dd623534c618a9e0.tar.gz
Remove crap inherited from zisofs-tools
-rw-r--r--Makefile8
-rw-r--r--configure.in1
2 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 0964cf4..779e6c0 100644
--- a/Makefile
+++ b/Makefile
@@ -39,11 +39,11 @@ release:
$(MAKE) spec
$(MAKE) distclean
-mkzftree: $(OBJS)
- $(CC) $(LDFLAGS) -o mkzftree $(OBJS) $(LIBS)
+fatattr: $(OBJS)
+ $(CC) $(LDFLAGS) -o fatattr $(OBJS) $(LIBS)
spotless: distclean
- rm -f configure config.h.in zisofs-tools.spec
+ rm -f configure config.h.in fatattr.spec
install: all
mkdir -p $(INSTALLROOT)$(bindir)
@@ -73,7 +73,7 @@ configure: configure.in aclocal.m4
VERSION = $(shell cat version)
version.h: version
- echo "#define ZISOFS_TOOLS_VERSION \"$(VERSION)\"" > version.h
+ echo "#define FATATTR_VERSION \"$(VERSION)\"" > version.h
fatattr.spec: fatattr.spec.in version
sed -e 's/@@VERSION@@/$(VERSION)/g' < $< > $@
diff --git a/configure.in b/configure.in
index c821e28..f474bc1 100644
--- a/configure.in
+++ b/configure.in
@@ -46,7 +46,6 @@ AC_CHECK_MEMBERS(struct stat.st_mtim.tv_nsec, , , [#include <sys/stat.h>])
AH_TEMPLATE([HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC],
[Define to 1 if `struct stat.st_[mca]tim' are struct timespec])
-AC_SEARCH_LIBS(compress2, z, , [AC_MSG_ERROR(zlib not found, cannot continue)])
AC_SEARCH_LIBS(getopt_long, [getopt getopt_long])
AC_CHECK_FUNCS(getopt_long)
AH_TEMPLATE([HAVE_GETOPT_LONG], [Define to 1 if you have the `getopt_long' function])