Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

m4 draft 3.1.73 #1898

Draft
wants to merge 2 commits into
base: emscripten-3.1.73
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions recipes/recipes_emscripten/m4/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Get an updated config.sub and config.guess
cp $BUILD_PREFIX/share/libtool/build-aux/config.* build-aux/

# ensure _OBSTACK_NO_ERROR_HANDLER is defined

# export CFLAGS="${CFLAGS} -D_OBSTACK_NO_ERROR_HANDLER"


./configure --prefix=${PREFIX} --host=${HOST} ac_cv_have_decl_alarm=no gl_cv_func_sleep_works=yes
make -j${CPU_COUNT}
make install
29 changes: 29 additions & 0 deletions recipes/recipes_emscripten/m4/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
context:
version: "1.4.18"
name: "m4"
package:
name: ${{name}}
version: ${{ version }}

source:
git: https://github.com/DerThorsten/gnu-m4
branch: master
# url: http://ftp.gnu.org/gnu/m4/m4-${{ version }}.tar.gz
# sha256: ab2633921a5cd38e48797bf5521ad259bdc4b979078034a3b790d7fec5493fab
build:
number: 0

requirements:
build:
- "${{ compiler('c') }}"
- make
- libtool
- autoconf
- automake

about:
homepage: http://www.gnu.org/software/m4/
license: LGPL-3.0
license_file: COPYING
summary: 'Implementation of the traditional Unix macro processor.'

Loading