[Midnightbsd-cvs] src [10449] trunk/lib/libyaml: add libyaml

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Jun 6 19:34:58 EDT 2018


Revision: 10449
          http://svnweb.midnightbsd.org/src/?rev=10449
Author:   laffer1
Date:     2018-06-06 19:34:58 -0400 (Wed, 06 Jun 2018)
Log Message:
-----------
add libyaml

Added Paths:
-----------
    trunk/lib/libyaml/
    trunk/lib/libyaml/Makefile
    trunk/lib/libyaml/config.h

Added: trunk/lib/libyaml/Makefile
===================================================================
--- trunk/lib/libyaml/Makefile	                        (rev 0)
+++ trunk/lib/libyaml/Makefile	2018-06-06 23:34:58 UTC (rev 10449)
@@ -0,0 +1,20 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/lib/libyaml/Makefile 256998 2013-10-23 18:07:07Z bdrewery $
+
+LIBYAML=	${.CURDIR}/../../contrib/libyaml
+
+LIB=		yaml
+PRIVATELIB=	true
+SHLIB_MAJOR=	1
+SRCS=		api.c dumper.c emitter.c loader.c \
+		parser.c reader.c scanner.c writer.c
+
+.PATH:		${LIBYAML}/src ${LIBYAML}/include
+
+WARNS?=		1
+CFLAGS+=	-I${LIBYAML}/include \
+		-I${LIBYAML} \
+		-I${.CURDIR} \
+		-DHAVE_CONFIG_H
+
+.include <bsd.lib.mk>


Property changes on: trunk/lib/libyaml/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/lib/libyaml/config.h
===================================================================
--- trunk/lib/libyaml/config.h	                        (rev 0)
+++ trunk/lib/libyaml/config.h	2018-06-06 23:34:58 UTC (rev 10449)
@@ -0,0 +1,84 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/lib/libyaml/config.h 247779 2013-03-04 11:27:41Z bapt $ */
+
+/* config.h.  Generated from config.h.in by configure.  */
+/* config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define to 1 if you have the <dlfcn.h> header file. */
+#define HAVE_DLFCN_H 1
+
+/* Define to 1 if you have the <inttypes.h> header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the <memory.h> header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the <stdint.h> header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the <stdlib.h> header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the <strings.h> header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the <string.h> header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the <unistd.h> header file. */
+#define HAVE_UNISTD_H 1
+
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+   */
+#define LT_OBJDIR ".libs/"
+
+/* Name of package */
+#define PACKAGE "yaml"
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT "http://pyyaml.org/newticket?component=libyaml"
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "yaml"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "yaml 0.1.4"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "yaml"
+
+/* Define to the home page for this package. */
+#define PACKAGE_URL ""
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "0.1.4"
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Version number of package */
+#define VERSION "0.1.4"
+
+/* Define the major version number. */
+#define YAML_VERSION_MAJOR 0
+
+/* Define the minor version number. */
+#define YAML_VERSION_MINOR 1
+
+/* Define the patch version number. */
+#define YAML_VERSION_PATCH 4
+
+/* Define the version string. */
+#define YAML_VERSION_STRING "0.1.4"
+
+/* Define to empty if `const' does not conform to ANSI C. */
+/* #undef const */
+
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+/* #undef size_t */


Property changes on: trunk/lib/libyaml/config.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list