-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:MidnightBSD/src
- Loading branch information
Showing
135 changed files
with
3,498 additions
and
554 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,32 @@ | ||
# Object files | ||
*.o | ||
|
||
# Libraries | ||
*.lib | ||
*.a | ||
|
||
# Shared objects (inc. Windows DLLs) | ||
*.dll | ||
*.so | ||
*.so.* | ||
*.dylib | ||
|
||
# Executables | ||
*.exe | ||
*.app | ||
|
||
*~ | ||
*.orig | ||
|
||
tag.sh | ||
Makefile.in | ||
aclocal.m4 | ||
ar-lib | ||
autom4te.cache | ||
build | ||
bin | ||
build* | ||
compile | ||
configure | ||
config.guess | ||
config.h.in | ||
config.sub | ||
depcomp | ||
doc/Makefile.in | ||
info* | ||
install-sh | ||
ltmain.sh | ||
missing | ||
m4 | ||
|
||
Makefile.in | ||
configure | ||
.DS_Store | ||
|
||
xoconfig.h.in | ||
xo_config.h.in | ||
|
||
.gdbinit | ||
.gdbinit.local | ||
xtest | ||
xtest.dSYM | ||
tests/w | ||
missing | ||
patches* | ||
doc/Makefile.in | ||
encoder/Makefile.in | ||
encoder/cbor/Makefile.in | ||
encoder/test/Makefile.in | ||
libxo/Makefile.in | ||
tests/Makefile.in | ||
tests/core/Makefile.in | ||
tests/gettext/Makefile.in | ||
tests/xo/Makefile.in | ||
xo/Makefile.in | ||
xohtml/Makefile.in | ||
xolint/Makefile.in | ||
xopo/Makefile.in |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -11,8 +11,8 @@ | |
# a particular user has the dist or svn release. | ||
# | ||
|
||
AC_PREREQ(2.2) | ||
AC_INIT([libxo], [1.0.4], [[email protected]]) | ||
AC_PREREQ([2.69]) | ||
AC_INIT([libxo],[1.6.0],[[email protected]]) | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign -Wno-portability]) | ||
|
||
# Support silent build rules. Requires at least automake-1.11. | ||
|
@@ -38,8 +38,6 @@ AC_PATH_PROG(MV, mv, /bin/mv) | |
AC_PATH_PROG(RM, rm, /bin/rm) | ||
AC_PATH_PROG(SED, sed, /bin/sed) | ||
|
||
AC_STDC_HEADERS | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_INLINE | ||
AC_TYPE_SIZE_T | ||
|
@@ -335,9 +333,10 @@ AM_CONDITIONAL([HAVE_LIBM], [test "$HAVE_LIBM" != "no"]) | |
AC_MSG_CHECKING([compiler for gcc]) | ||
HAVE_GCC=no | ||
if test "${CC}" != ""; then | ||
HAVE_GCC=`${CC} --version 2>&1 | grep GCC` | ||
HAVE_GCC=`${CC} --version 2>&1 | grep -i GCC` | ||
if test "${HAVE_GCC}" != ""; then | ||
HAVE_GCC=yes | ||
AC_DEFINE([HAVE_GCC], [1], [Using real gcc]) | ||
else | ||
HAVE_GCC=no | ||
fi | ||
|
@@ -450,15 +449,18 @@ AC_CONFIG_FILES([ | |
xohtml/xohtml.sh | ||
libxo/Makefile | ||
libxo/add.man | ||
bin/Makefile | ||
encoder/Makefile | ||
encoder/cbor/Makefile | ||
encoder/csv/Makefile | ||
encoder/test/Makefile | ||
xo/Makefile | ||
xolint/Makefile | ||
xohtml/Makefile | ||
xopo/Makefile | ||
packaging/libxo.pc | ||
doc/Makefile | ||
doc/top-link.html | ||
tests/Makefile | ||
tests/core/Makefile | ||
tests/gettext/Makefile | ||
|
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# | ||
# Copyright 2015, Juniper Networks, Inc. | ||
# Copyright 2015-2019, Juniper Networks, Inc. | ||
# All rights reserved. | ||
# This SOFTWARE is licensed under the LICENSE provided in the | ||
# ../Copyright file. By downloading, installing, copying, or otherwise | ||
# using the SOFTWARE, you agree to be bound by the terms of that | ||
# LICENSE. | ||
|
||
SUBDIRS = cbor test | ||
SUBDIRS = \ | ||
cbor \ | ||
csv \ | ||
test |
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,51 @@ | ||
# | ||
# $Id$ | ||
# | ||
# Copyright 2015-2019, Juniper Networks, Inc. | ||
# All rights reserved. | ||
# This SOFTWARE is licensed under the LICENSE provided in the | ||
# ../Copyright file. By downloading, installing, copying, or otherwise | ||
# using the SOFTWARE, you agree to be bound by the terms of that | ||
# LICENSE. | ||
|
||
if LIBXO_WARNINGS_HIGH | ||
LIBXO_WARNINGS = HIGH | ||
endif | ||
if HAVE_GCC | ||
GCC_WARNINGS = yes | ||
endif | ||
include ${top_srcdir}/warnings.mk | ||
|
||
enc_csvincdir = ${includedir}/libxo | ||
|
||
AM_CFLAGS = \ | ||
-I${top_srcdir}/libxo \ | ||
-I${top_builddir}/libxo \ | ||
${WARNINGS} | ||
|
||
LIBNAME = libenc_csv | ||
pkglib_LTLIBRARIES = libenc_csv.la | ||
LIBS = \ | ||
-L${top_builddir}/libxo -lxo | ||
|
||
LDADD = ${top_builddir}/libxo/libxo.la | ||
|
||
libenc_csv_la_SOURCES = \ | ||
enc_csv.c | ||
|
||
pkglibdir = ${XO_ENCODERDIR} | ||
|
||
UGLY_NAME = csv.enc | ||
|
||
install-exec-hook: | ||
@DLNAME=`sh -c '. ./libenc_csv.la ; echo $$dlname'` ; \ | ||
if [ x"$$DLNAME" = x ]; \ | ||
then DLNAME=${LIBNAME}.${XO_LIBEXT}; fi ; \ | ||
if [ "$(build_os)" = "cygwin" ]; \ | ||
then DLNAME="../bin/$$DLNAME"; fi ; \ | ||
echo Install link $$DLNAME "->" ${UGLY_NAME} "..." ; \ | ||
mkdir -p ${DESTDIR}${XO_ENCODERDIR} ; \ | ||
cd ${DESTDIR}${XO_ENCODERDIR} \ | ||
&& chmod +w . \ | ||
&& rm -f ${UGLY_NAME} \ | ||
&& ${LN_S} $$DLNAME ${UGLY_NAME} |
Oops, something went wrong.