diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-05 11:10:15 -0800 |
---|---|---|
committer | Li Jinjing <jinjingx.li@intel.com> | 2014-10-26 22:46:12 +0800 |
commit | f8d9c5a7c746e6f005ab5da6c58673480256469d (patch) | |
tree | 99e95395f10337203a64b7cbe2716cc3810bc9ba | |
parent | 931b01b091932a1f796c23379ea32abb68bd5895 (diff) | |
download | m4-f8d9c5a7c746e6f005ab5da6c58673480256469d.tar.gz m4-f8d9c5a7c746e6f005ab5da6c58673480256469d.tar.bz2 m4-f8d9c5a7c746e6f005ab5da6c58673480256469d.zip |
add packaging
-rw-r--r-- | packaging/m4-stdio.in.patch | 14 | ||||
-rw-r--r-- | packaging/m4.spec | 39 |
2 files changed, 53 insertions, 0 deletions
diff --git a/packaging/m4-stdio.in.patch b/packaging/m4-stdio.in.patch new file mode 100644 index 0000000..4500c13 --- /dev/null +++ b/packaging/m4-stdio.in.patch @@ -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 index 0000000..7009f02 --- /dev/null +++ b/packaging/m4.spec @@ -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}/*/* + |