/* ******************************************************************* */
/*                                                                     */
/*                         Applied Type System                         */
/*                                                                     */
/*                              Hongwei Xi                             */
/*                                                                     */
/* ******************************************************************* */

/*
** ATS - Unleashing the Potential of Types!
** Copyright (C) 2002-2010 Hongwei Xi, Boston University
** All rights reserved
**
** ATS is free software;  you can  redistribute it and/or modify it under
** the  terms of the  GNU General Public License as published by the Free
** Software Foundation; either version 2.1, or (at your option) any later
** version.
** 
** ATS 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 General Public License
** for more details.
** 
** You  should  have  received  a  copy of the GNU General Public License
** along  with  ATS;  see the  file COPYING.  If not, please write to the
** Free Software Foundation,  51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*/

/* ****** ****** */
//
// Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu)
// Time: March, 2010
//
/* ****** ****** */

#define __ATS(x) x

/* ****** ****** */

(*
//
#define GLIB_COMPILATION 1
//
#include <glibconfig.h> // HX: gmacros.h may otherwise complain
*)

/* ****** ****** */

__ATS(#define ATSCTRB_GLIB_MAJOR_VERSION GLIB_MAJOR_VERSION)
__ATS(#define ATSCTRB_GLIB_MINOR_VERSION GLIB_MINOR_VERSION)
__ATS(#define ATSCTRB_GLIB_MICRO_VERSION GLIB_MICRO_VERSION)
__ATS(#define ATSCTRB_GLIB_VERSION 1000 * (1000 * GLIB_MAJOR_VERSION + GLIB_MINOR_VERSION) + GLIB_MICRO_VERSION)

/* ****** ****** */

/* end of [glibconfig] */
