-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move CMake stuff to separate directory
- Loading branch information
Showing
3 changed files
with
78 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Xcode configuration file for Mini-XML, a small XML file parsing library. | ||
* | ||
* https://www.msweet.org/mxml | ||
* | ||
* Copyright © 2003-2020 by Michael R Sweet. | ||
* | ||
* Licensed under Apache License v2.0. See the file "LICENSE" for more | ||
* information. | ||
*/ | ||
|
||
/* | ||
* Include necessary headers... | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <stdarg.h> | ||
#include <ctype.h> | ||
|
||
|
||
/* | ||
* Version number... | ||
*/ | ||
|
||
#define MXML_VERSION "Mini-XML v3.2" | ||
|
||
|
||
/* | ||
* Inline function support... | ||
*/ | ||
|
||
#define inline | ||
|
||
|
||
/* | ||
* Long long support... | ||
*/ | ||
|
||
#define HAVE_LONG_LONG 1 | ||
|
||
|
||
/* | ||
* Do we have the *printf() functions? | ||
*/ | ||
|
||
#define HAVE_SNPRINTF 1 | ||
#define HAVE_VASPRINTF 1 | ||
#define HAVE_VSNPRINTF 1 | ||
|
||
|
||
/* | ||
* Do we have the strXXX() functions? | ||
*/ | ||
|
||
#define HAVE_STRDUP 1 | ||
#define HAVE_STRLCAT 1 | ||
#define HAVE_STRLCPY 1 | ||
|
||
|
||
/* | ||
* Do we have threading support? | ||
*/ | ||
|
||
#define HAVE_PTHREAD_H 1 | ||
|
||
|
||
/* | ||
* Define prototypes for string functions as needed... | ||
*/ | ||
|
||
extern char *_mxml_strdupf(const char *, ...); | ||
extern char *_mxml_vstrdupf(const char *, va_list); |
File renamed without changes.