Skip to content

Commit

Permalink
new version with minor fix of uninstall and __sig_atomic_t
Browse files Browse the repository at this point in the history
  • Loading branch information
yonhan3 committed Apr 24, 2020
1 parent 7d492ad commit 6b17b8e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for openosc 1.0.1.
# Generated by GNU Autoconf 2.69 for openosc 1.0.2.
#
# Report bugs to <yonhan@cisco.com>.
#
Expand Down Expand Up @@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='openosc'
PACKAGE_TARNAME='openosc'
PACKAGE_VERSION='1.0.1'
PACKAGE_STRING='openosc 1.0.1'
PACKAGE_VERSION='1.0.2'
PACKAGE_STRING='openosc 1.0.2'
PACKAGE_BUGREPORT='yonhan@cisco.com'
PACKAGE_URL=''

Expand Down Expand Up @@ -1328,7 +1328,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures openosc 1.0.1 to adapt to many kinds of systems.
\`configure' configures openosc 1.0.2 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1398,7 +1398,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of openosc 1.0.1:";;
short | recursive ) echo "Configuration of openosc 1.0.2:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1506,7 +1506,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
openosc configure 1.0.1
openosc configure 1.0.2
generated by GNU Autoconf 2.69

Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1996,7 +1996,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by openosc $as_me 1.0.1, which was
It was created by openosc $as_me 1.0.2, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -2859,7 +2859,7 @@ fi

# Define the identity of the package.
PACKAGE='openosc'
VERSION='1.0.1'
VERSION='1.0.2'


cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -16710,7 +16710,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by openosc $as_me 1.0.1, which was
This file was extended by openosc $as_me 1.0.2, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -16776,7 +16776,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
openosc config.status 1.0.1
openosc config.status 1.0.2
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
2 changes: 2 additions & 0 deletions include/openosc_fortify_extern.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ struct sockaddr;
# define _SIGSET_H_types 1
#endif

typedef int __sig_atomic_t;

/* A `sigset_t' has a bit for each signal. */

# define _SIGSET_NWORDS (1024 / (8 * sizeof (unsigned long int)))
Expand Down
3 changes: 3 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ include_HEADERS = $(top_srcdir)/include/*.h

install-exec-hook:
cd $(DESTDIR)$(libdir) && rm $(lib_LTLIBRARIES)

uninstall-local:
cd $(DESTDIR)$(libdir) && rm libopenosc.a libopenosc.so*
8 changes: 6 additions & 2 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,8 @@ ps: ps-am

ps-am:

uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES
uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
uninstall-local

.MAKE: install-am install-exec-am install-strip

Expand All @@ -706,12 +707,15 @@ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am uninstall-includeHEADERS \
uninstall-libLTLIBRARIES
uninstall-libLTLIBRARIES uninstall-local


install-exec-hook:
cd $(DESTDIR)$(libdir) && rm $(lib_LTLIBRARIES)

uninstall-local:
cd $(DESTDIR)$(libdir) && rm libopenosc.a libopenosc.so*

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

0 comments on commit 6b17b8e

Please sign in to comment.