add packaging
authorAnas Nashif <anas.nashif@intel.com>
Mon, 5 Nov 2012 19:10:15 +0000 (11:10 -0800)
committerLi Jinjing <jinjingx.li@intel.com>
Sun, 26 Oct 2014 14:46:12 +0000 (22:46 +0800)
packaging/m4-stdio.in.patch [new file with mode: 0644]
packaging/m4.spec [new file with mode: 0644]

diff --git a/packaging/m4-stdio.in.patch b/packaging/m4-stdio.in.patch
new file mode 100644 (file)
index 0000000..4500c13
--- /dev/null
@@ -0,0 +1,14 @@
+Index: m4-1.4.16/lib/stdio.in.h
+===================================================================
+--- m4-1.4.16.orig/lib/stdio.in.h
++++ m4-1.4.16/lib/stdio.in.h
+@@ -162,7 +162,9 @@ _GL_WARN_ON_USE (fflush, "fflush is not
+    so any use of gets warrants an unconditional warning.  Assume it is
+    always declared, since it is required by C89.  */
+ #undef gets
++#if HAVE_RAW_DECL_GETS
+ _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
++#endif
+ #if @GNULIB_FOPEN@
+ # if @REPLACE_FOPEN@
diff --git a/packaging/m4.spec b/packaging/m4.spec
new file mode 100644 (file)
index 0000000..7009f02
--- /dev/null
@@ -0,0 +1,39 @@
+Name:           m4
+Version:        1.4.16
+Release:        0
+License:        GPL-3.0+
+Summary:        GNU m4
+Url:            http://www.gnu.org/software/m4/
+Group:          Development/Languages/Other
+Source:         http://ftp.gnu.org/pub/gnu/m4/%{name}-%{version}.tar.bz2
+Patch1:         m4-stdio.in.patch
+Provides:       base:/usr/bin/m4
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+
+%description
+GNU m4 is an implementation of the traditional Unix macro processor.
+
+%prep
+%setup -q
+%patch1 -p1
+
+%build
+%configure \
+           --without-included-regex \
+           gl_cv_func_isnanl_works=yes \
+           gl_cv_func_printf_directive_n=yes
+make %{?_smp_mflags}
+
+%check
+make %{?_smp_mflags} check || true
+
+%install
+%make_install
+
+%files
+%defattr(-,root,root)
+%doc README COPYING
+%{_bindir}/*
+%doc %{_infodir}/*.gz
+%{_mandir}/*/*
+