summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2015-02-17 15:20:19 -0500
committerRyan Lortie <desrt@desrt.ca>2015-02-17 15:21:47 -0500
commit7152aae4ee2af0dc3520168891a0e72e84fba727 (patch)
tree05400462b0e519c5ad383e4ad7df126120abb7ed
downloadm4-common-7152aae4ee2af0dc3520168891a0e72e84fba727.tar.gz
Initial commit
-rw-r--r--.gitignore7
-rw-r--r--.gitmodules3
-rw-r--r--Makefile.am21
m---------autoconf-archive0
-rw-r--r--configure.ac7
-rw-r--r--m4-common.doap30
6 files changed, 68 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5db949a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+/build-aux
+/aclocal.m4
+/autom4te.cache/
+/configure
+/config.*
+/Makefile
+/Makefile.in
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..66ec3f6
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "autoconf-archive"]
+ path = autoconf-archive
+ url = git://git.sv.gnu.org/autoconf-archive.git
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..69c8869
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,21 @@
+aclocaldir = $(prefix)/share/aclocal
+
+# sorted, please
+dist_aclocal_DATA = \
+ autoconf-archive/m4/ax_append_compile_flags.m4 \
+ autoconf-archive/m4/ax_append_flag.m4 \
+ autoconf-archive/m4/ax_check_compile_flag.m4 \
+ autoconf-archive/m4/ax_is_release.m4 \
+ autoconf-archive/m4/ax_compiler_flags.m4 \
+ autoconf-archive/m4/ax_compiler_flags_cflags.m4 \
+ autoconf-archive/m4/ax_compiler_flags_cxxflags.m4 \
+ autoconf-archive/m4/ax_compiler_flags_ldflags.m4 \
+ autoconf-archive/m4/ax_compiler_flags_gir.m4 \
+ autoconf-archive/m4/ax_require_defined.m4 \
+ $(NULL)
+
+all-local: $(dist_aclocal_DATA)
+ cat $^ | grep -v '^#' | sed -e 's/\<dnl\>.*//' | grep -o '\<AX_[A-Z0-9_]*\>' | sort | uniq > used
+ cat $^ | grep ^AC_DEFUN | grep -o '\<AX_[A-Z0-9_]*\>' | sort | uniq > defined
+ diff -u used defined
+ rm -f used defined
diff --git a/autoconf-archive b/autoconf-archive
new file mode 160000
+Subproject 5da0e941e92e70391ce824bda4873ea0d1a7991
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..7b9ff3a
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,7 @@
+AC_INIT([m4-common], [0])
+AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE([1.14 foreign -Wno-portability no-dist-gzip dist-xz])
+
+AC_OUTPUT([
+ Makefile
+])
diff --git a/m4-common.doap b/m4-common.doap
new file mode 100644
index 0000000..43a9bb2
--- /dev/null
+++ b/m4-common.doap
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+ xmlns:foaf="http://xmlns.com/foaf/0.1/"
+ xmlns:gnome="http://api.gnome.org/doap-extensions#"
+ xmlns="http://usefulinc.com/ns/doap#">
+
+ <name>M4 Common</name>
+ <shortname>m4-common</shortname>
+
+ <shortdesc xml:lang="en">Common M4 macro collection</shortdesc>
+
+ <description xml:lang="en">A hand-picked collection of aclocal M4 macros from autoconf-archive that are in common use by GNOME modules.</description>
+
+ <maintainer>
+ <foaf:Person>
+ <foaf:name>Ryan Lortie</foaf:name>
+ <foaf:mbox rdf:resource="mailto:desrt@desrt.ca"/>
+ <gnome:userid>desrt</gnome:userid>
+ </foaf:Person>
+ </maintainer>
+
+ <repository>
+ <GitRepository>
+ <browse rdf:resource="http://git.gnome.org/browse/m4-common/"/>
+ <location rdf:resource="git://git.gnome.org/m4-common"/>
+ </GitRepository>
+ </repository>
+
+</Project>