Skip to content
This repository has been archived by the owner on Nov 17, 2017. It is now read-only.

Commit

Permalink
Bump to 1.0.0 and fix a renaming of a constant
Browse files Browse the repository at this point in the history
  • Loading branch information
mcolyer committed Mar 21, 2010
1 parent 7afbe13 commit 55a04a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT(ifuse, 0.9.7)
AC_INIT(ifuse, 1.0.0)
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip])
AC_CONFIG_SRCDIR([src/])
AC_CONFIG_HEADERS([config.h])
Expand All @@ -12,7 +12,7 @@ AC_PROG_CC
AM_PROG_CC_C_O

# Checks for libraries.
PKG_CHECK_MODULES(libimobiledevice, libimobiledevice-1.0 >= 0.9.7)
PKG_CHECK_MODULES(libimobiledevice, libimobiledevice-1.0 >= 1.0.0)
PKG_CHECK_MODULES(libglib2, glib-2.0 >= 2.14.1)
PKG_CHECK_MODULES(libgthread2, gthread-2.0 >= 2.14.1)
PKG_CHECK_MODULES(libfuse, fuse >= 2.7.0)
Expand Down
2 changes: 1 addition & 1 deletion src/ifuse.c
Expand Up @@ -101,7 +101,7 @@ struct afc_error_mapping {
{AFC_E_READ_ERROR , ENOTDIR},
{AFC_E_WRITE_ERROR , EIO},
{AFC_E_UNKNOWN_PACKET_TYPE , EIO},
{AFC_E_INVALID_ARGUMENT , EINVAL},
{AFC_E_INVALID_ARG , EINVAL},
{AFC_E_OBJECT_NOT_FOUND , ENOENT},
{AFC_E_OBJECT_IS_DIR , EISDIR},
{AFC_E_DIR_NOT_EMPTY , ENOTEMPTY},
Expand Down

0 comments on commit 55a04a6

Please sign in to comment.