Skip to content
Snippets Groups Projects
Commit 62519bfe authored by Yang Tse's avatar Yang Tse
Browse files

somewhat protect Mac OS X users from using Mac OS 9 config file

parent 29f7f468
No related branches found
No related tags found
No related merge requests found
#ifndef __LIB_CONFIG_MAC_H
#define __LIB_CONFIG_MAC_H
/* ================================================================ */
/* lib/config-mac.h - Hand crafted config file for Mac OS 9 */
/* ================================================================ */
/* On Mac OS X you must run configure to generate config.h file */
/* ================================================================ */
#define OS "mac"
#define HAVE_NETINET_IN_H 1
......@@ -83,3 +92,5 @@
#define HAVE_EXTRA_STRICMP_H 1
#define HAVE_EXTRA_STRDUP_H 1
#endif /* __LIB_CONFIG_MAC_H */
......@@ -48,8 +48,8 @@
#endif
#endif
#ifdef macintosh
#include "config-mac.h"
#if defined(macintosh) && defined(__MRC__)
# include "config-mac.h"
#endif
#ifdef __AMIGA__
......
#ifndef __SRC_CONFIG_MAC_H
#define __SRC_CONFIG_MAC_H
/* ================================================================ */
/* src/config-mac.h - Hand crafted config file for Mac OS 9 */
/* ================================================================ */
/* On Mac OS X you must run configure to generate config.h file */
/* ================================================================ */
/* Define to 1 if you want the built-in manual */
#define USE_MANUAL 1
......@@ -19,3 +28,5 @@
/* we provide our own strdup prototype */
char *strdup(char *s1);
#endif /* __SRC_CONFIG_MAC_H */
......@@ -46,8 +46,8 @@
#include "config-win32.h"
#endif
#ifdef macintosh
#include "config-mac.h"
#if defined(macintosh) && defined(__MRC__)
# include "config-mac.h"
#endif
#ifdef __riscos__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment