Codebase list freefem++ / debian/3.13.2-1 config-wrapper.h
debian/3.13.2-1

Tree @debian/3.13.2-1 (Download .tar.gz)

config-wrapper.h @debian/3.13.2-1raw · history · blame

// Include a platform-specific configuration file
// ----------------------------------------------

// $Id$

// This wrapper is necessary for platforms where the configure script
// does not run.

#ifndef CONFIG_WRAPPER_H
#define CONFIG_WRAPPER_H

#ifdef __MWERKS__
#include "config-macos9.h"
#else
#include <config.h>
#endif

#endif // CONFIG_WRAPPER_H