mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-28 16:08:12 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@5306 d708f5d6-7413-0410-9779-e7cbd77b26cf
52 lines
1.8 KiB
Text
52 lines
1.8 KiB
Text
// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
/* Copyright (C) 2007 The giomm Development Team
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <glibmm/interface.h>
|
|
|
|
// There have been issues with other libraries defining HOST_NOT_FOUND (e.g.
|
|
// netdb.h). As a workaround, we added the alternate name HOST_WAS_NOT_FOUND.
|
|
// Portable code should not use HOST_NOT_FOUND. Undefining it here (and
|
|
// restoring it below) will allow programs to compile even if they include
|
|
// netdb.h. See Bug #529496
|
|
#ifdef HOST_NOT_FOUND
|
|
#define GIOMM_SAVED_HOST_NOT_FOUND HOST_NOT_FOUND
|
|
#undef HOST_NOT_FOUND
|
|
#endif // HOST_NOT_FOUND
|
|
|
|
_DEFS(giomm,gio)
|
|
_PINCLUDE(glibmm/private/interface_p.h)
|
|
|
|
namespace Gio
|
|
{
|
|
|
|
//Note that GIOErrorEnum is not named GIOError in gio because there is already a GIOError in glib,
|
|
//But we can have both Glib::Error and Gio::Error in C++.
|
|
|
|
/** Exception class for giomm errors.
|
|
*/
|
|
_WRAP_GERROR(Error, GIOErrorEnum, G_IO_ERROR, NO_GTYPE)
|
|
|
|
|
|
} // namespace Gio
|
|
|
|
#ifdef GIOMM_SAVED_HOST_NOT_FOUND
|
|
// restore the previously-defined HOST_NOT_FOUND macro
|
|
#define HOST_NOT_FOUND GIOMM_SAVED_HOST_NOT_FOUND
|
|
#undef GIOMM_SAVED_HOST_NOT_FOUND
|
|
#endif // GIOMM_SAVED_HOST_NOT_FOUND
|