Christian Wiese
11 years ago
3 changed files with 199 additions and 0 deletions
@ -0,0 +1,152 @@ |
|||||||
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
||||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||||
|
#
|
||||||
|
# Filename: package/.../argp-standalone/0001-Makefile.am-add-more-libtoolization.patch
|
||||||
|
# Copyright (C) 2013 The OpenSDE Project
|
||||||
|
#
|
||||||
|
# More information can be found in the files COPYING and README.
|
||||||
|
#
|
||||||
|
# This patch file is dual-licensed. It is available under the license the
|
||||||
|
# patched project is licensed under, as long as it is an OpenSource license
|
||||||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
||||||
|
# of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||||||
|
# version.
|
||||||
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
||||||
|
|
||||||
|
From e8ea423a775a82ee946ba465f766dca0a5f1a90d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <chris@opensde.org>
|
||||||
|
Date: Thu, 8 Aug 2013 10:49:56 +0200
|
||||||
|
Subject: [PATCH] Makefile.am: add more libtoolization
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile.am | 8 +++++---
|
||||||
|
1 files changed, 5 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index 5b58d46..757feb6 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -21,6 +21,8 @@
|
||||||
|
AUTOMAKE_OPTIONS = foreign
|
||||||
|
SUBDIRS = . testsuite
|
||||||
|
|
||||||
|
+lib_LTLIBRARIES = libargp.la
|
||||||
|
+
|
||||||
|
LIBOBJS = @LIBOBJS@
|
||||||
|
|
||||||
|
noinst_LIBRARIES = libargp.a
|
||||||
|
@@ -30,11 +32,11 @@ noinst_HEADERS = argp.h argp-fmtstream.h argp-namefrob.h # argp-comp.h
|
||||||
|
EXTRA_DIST = mempcpy.c strchrnul.c strndup.c Versions
|
||||||
|
|
||||||
|
# Leaves out argp-fs-xinl.c and argp-xinl.c
|
||||||
|
-libargp_a_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \
|
||||||
|
+libargp_la_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \
|
||||||
|
argp-help.c argp-parse.c argp-pv.c \
|
||||||
|
argp-pvh.c
|
||||||
|
|
||||||
|
-libargp_a_LIBADD = $(LIBOBJS)
|
||||||
|
+libargp_la_LIBADD = $(LIBOBJS)
|
||||||
|
|
||||||
|
-argp_test_LDADD = libargp.a
|
||||||
|
+argp_test_LDADD = libargp.la
|
||||||
|
|
||||||
|
--
|
||||||
|
1.7.2.3
|
||||||
|
|
||||||
|
|
||||||
|
From 38b1213290277deca769723d595ef7c700db992c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <chris@opensde.org>
|
||||||
|
Date: Thu, 8 Aug 2013 11:51:43 +0200
|
||||||
|
Subject: [PATCH] more libtoolization (SQUASH)
|
||||||
|
|
||||||
|
---
|
||||||
|
configure.ac | 2 ++
|
||||||
|
testsuite/Makefile.am | 2 +-
|
||||||
|
2 files changed, 3 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 4658839..d819cff 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -12,6 +12,8 @@ AM_CONFIG_HEADER(config.h)
|
||||||
|
# systems; no problems have been reported with it so far.
|
||||||
|
AC_GNU_SOURCE
|
||||||
|
|
||||||
|
+LT_INIT
|
||||||
|
+
|
||||||
|
# Checks for programs.
|
||||||
|
AC_PROG_CC
|
||||||
|
AC_PROG_MAKE_SET
|
||||||
|
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
|
||||||
|
index 9993541..0e34120 100644
|
||||||
|
--- a/testsuite/Makefile.am
|
||||||
|
+++ b/testsuite/Makefile.am
|
||||||
|
@@ -5,7 +5,7 @@ TS_ALL = $(TS_PROGS) $(TS_SH)
|
||||||
|
|
||||||
|
noinst_PROGRAMS = $(TS_PROGS) ex1 ex3 ex4
|
||||||
|
|
||||||
|
-LDADD = ../libargp.a
|
||||||
|
+LDADD = ../libargp.la
|
||||||
|
|
||||||
|
EXTRA_DIST = $(TS_SH) run-tests
|
||||||
|
CLEANFILES = test.out
|
||||||
|
--
|
||||||
|
1.7.2.3
|
||||||
|
|
||||||
|
|
||||||
|
From e7955d68fbc73049f682e67ac0963ea28266b62d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <chris@opensde.org>
|
||||||
|
Date: Thu, 8 Aug 2013 12:15:30 +0200
|
||||||
|
Subject: [PATCH] SQUASH
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile.am | 1 -
|
||||||
|
1 files changed, 0 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index 757feb6..466e192 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -25,7 +25,6 @@ lib_LTLIBRARIES = libargp.la
|
||||||
|
|
||||||
|
LIBOBJS = @LIBOBJS@
|
||||||
|
|
||||||
|
-noinst_LIBRARIES = libargp.a
|
||||||
|
noinst_PROGRAMS = argp-test
|
||||||
|
noinst_HEADERS = argp.h argp-fmtstream.h argp-namefrob.h # argp-comp.h
|
||||||
|
|
||||||
|
--
|
||||||
|
1.7.2.3
|
||||||
|
|
||||||
|
|
||||||
|
From 0b0b7f32a61769c8c6c7c4656bf92a6457ca2055 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Christian Wiese <chris@opensde.org>
|
||||||
|
Date: Thu, 8 Aug 2013 12:20:16 +0200
|
||||||
|
Subject: [PATCH] SQUASH
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile.am | 4 +++-
|
||||||
|
1 files changed, 3 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index 466e192..fe8122c 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -23,10 +23,12 @@ SUBDIRS = . testsuite
|
||||||
|
|
||||||
|
lib_LTLIBRARIES = libargp.la
|
||||||
|
|
||||||
|
+include_HEADERS = argp.h
|
||||||
|
+
|
||||||
|
LIBOBJS = @LIBOBJS@
|
||||||
|
|
||||||
|
noinst_PROGRAMS = argp-test
|
||||||
|
-noinst_HEADERS = argp.h argp-fmtstream.h argp-namefrob.h # argp-comp.h
|
||||||
|
+noinst_HEADERS = argp-fmtstream.h argp-namefrob.h # argp-comp.h
|
||||||
|
|
||||||
|
EXTRA_DIST = mempcpy.c strchrnul.c strndup.c Versions
|
||||||
|
|
||||||
|
--
|
||||||
|
1.7.2.3
|
||||||
|
|
@ -0,0 +1,15 @@ |
|||||||
|
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
||||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||||
|
# |
||||||
|
# Filename: package/.../argp-standalone/argp-standalone.conf |
||||||
|
# Copyright (C) 2013 The OpenSDE Project |
||||||
|
# |
||||||
|
# More information can be found in the files COPYING and README. |
||||||
|
# |
||||||
|
# This program is free software; you can redistribute it and/or modify |
||||||
|
# it under the terms of the GNU General Public License as published by |
||||||
|
# the Free Software Foundation; version 2 of the License. A copy of the |
||||||
|
# GNU General Public License can be found in the file COPYING. |
||||||
|
# --- SDE-COPYRIGHT-NOTE-END --- |
||||||
|
|
||||||
|
hook_add preconf 9 'autoreconf -vfi' |
@ -0,0 +1,32 @@ |
|||||||
|
[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- |
||||||
|
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||||
|
[COPY] |
||||||
|
[COPY] Filename: package/.../argp-standalone/argp-standalone.desc |
||||||
|
[COPY] Copyright (C) 2013 The OpenSDE Project |
||||||
|
[COPY] |
||||||
|
[COPY] More information can be found in the files COPYING and README. |
||||||
|
[COPY] |
||||||
|
[COPY] This program is free software; you can redistribute it and/or modify |
||||||
|
[COPY] it under the terms of the GNU General Public License as published by |
||||||
|
[COPY] the Free Software Foundation; version 2 of the License. A copy of the |
||||||
|
[COPY] GNU General Public License can be found in the file COPYING. |
||||||
|
[COPY] --- SDE-COPYRIGHT-NOTE-END --- |
||||||
|
|
||||||
|
[I] An interface for parsing unix-style argument vectors |
||||||
|
|
||||||
|
[T] Argp provides features unavailable in the more commonly used getopt |
||||||
|
[T] interface. |
||||||
|
|
||||||
|
[U] http://www.lysator.liu.se/~nisse/ |
||||||
|
|
||||||
|
[A] Niels Mÿ½ller <nisse@lysator.liu.se> |
||||||
|
[M] The OpenSDE Community <list@opensde.org> |
||||||
|
|
||||||
|
[C] extra/library |
||||||
|
|
||||||
|
[L] BSD |
||||||
|
[S] Stable |
||||||
|
[V] 1.3 |
||||||
|
[P] X -?---5---9 800.000 |
||||||
|
|
||||||
|
[D] 367089729 argp-standalone-1.3.tar.gz http://www.lysator.liu.se/~nisse/misc/ |
Loading…
Reference in new issue