Patches from sms to deal with off_t not getting defined.

This commit is contained in:
rocky
2007-03-10 23:57:58 +00:00
parent ce30f41003
commit d9fc7b742b
2 changed files with 11 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
/* -*- C++ -*- /* -*- C++ -*-
$Id: devices.cpp,v 1.1 2006/03/07 20:01:26 rocky Exp $ $Id: devices.cpp,v 1.2 2007/03/10 23:57:58 rocky Exp $
Copyright (C) 2006 Rocky Bernstein <rocky@panix.com> Copyright (C) 2006 Rocky Bernstein <rocky@panix.com>
@@ -17,6 +17,10 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <cdio/cdio.h> #include <cdio/cdio.h>
#include <cdio++/cdio.hpp> #include <cdio++/cdio.hpp>

View File

@@ -1,5 +1,5 @@
/* -*- C++ -*- /* -*- C++ -*-
$Id: iso9660.cpp,v 1.3 2006/03/07 20:54:22 rocky Exp $ $Id: iso9660.cpp,v 1.4 2007/03/10 23:57:58 rocky Exp $
Copyright (C) 2006 Rocky Bernstein <rocky@panix.com> Copyright (C) 2006 Rocky Bernstein <rocky@panix.com>
@@ -17,6 +17,11 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "config.h"
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <cdio++/iso9660.hpp> #include <cdio++/iso9660.hpp>
/*! /*!