Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/m4
@ 2007-01-10 18:39 aldot at uclibc.org
  0 siblings, 0 replies; 3+ messages in thread
From: aldot at uclibc.org @ 2007-01-10 18:39 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-01-10 10:39:08 -0800 (Wed, 10 Jan 2007)
New Revision: 17227

Log:
- bump version


Added:
   trunk/buildroot/package/m4/m4-1.4.8-001-MB_CUR_MAX.patch

Modified:
   trunk/buildroot/package/m4/m4.mk


Changeset:
Added: trunk/buildroot/package/m4/m4-1.4.8-001-MB_CUR_MAX.patch
===================================================================
--- trunk/buildroot/package/m4/m4-1.4.8-001-MB_CUR_MAX.patch	                        (rev 0)
+++ trunk/buildroot/package/m4/m4-1.4.8-001-MB_CUR_MAX.patch	2007-01-10 18:39:08 UTC (rev 17227)
@@ -0,0 +1,13 @@
+--- m4-1.4.8.orig/lib/regcomp.c	2006-09-24 06:28:37.000000000 +0200
++++ m4-1.4.8/lib/regcomp.c	2007-01-06 20:53:10.000000000 +0100
+@@ -871,6 +871,10 @@ init_dfa (re_dfa_t *dfa, size_t pat_len)
+   dfa->state_table = calloc (sizeof (struct re_state_table_entry), table_size);
+   dfa->state_hash_mask = table_size - 1;
+ 
++#ifndef MB_CUR_MAX
++#define MB_CUR_MAX (0)
++#endif
++
+   dfa->mb_cur_max = MB_CUR_MAX;
+ #ifdef _LIBC
+   if (dfa->mb_cur_max == 6

Modified: trunk/buildroot/package/m4/m4.mk
===================================================================
--- trunk/buildroot/package/m4/m4.mk	2007-01-10 17:46:19 UTC (rev 17226)
+++ trunk/buildroot/package/m4/m4.mk	2007-01-10 18:39:08 UTC (rev 17227)
@@ -3,7 +3,7 @@
 # m4
 #
 #############################################################
-M4_VER:=1.4.4
+M4_VER:=1.4.8
 M4_SOURCE:=m4-$(M4_VER).tar.bz2
 M4_CAT:=$(BZCAT)
 M4_SITE:=http://ftp.gnu.org/pub/gnu/m4

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/m4
@ 2007-07-07 10:11 aldot at uclibc.org
  0 siblings, 0 replies; 3+ messages in thread
From: aldot at uclibc.org @ 2007-07-07 10:11 UTC (permalink / raw)
  To: buildroot

Author: aldot
Date: 2007-07-07 03:11:17 -0700 (Sat, 07 Jul 2007)
New Revision: 19016

Log:
- account for setups without wchar support.


Modified:
   trunk/buildroot/package/m4/m4.mk


Changeset:
Modified: trunk/buildroot/package/m4/m4.mk
===================================================================
--- trunk/buildroot/package/m4/m4.mk	2007-07-07 09:31:09 UTC (rev 19015)
+++ trunk/buildroot/package/m4/m4.mk	2007-07-07 10:11:17 UTC (rev 19016)
@@ -15,6 +15,10 @@
 ifeq ($(UCLIBC_HAS_REGEX),y)
 gl_cv_func_re_compile_pattern_working=gl_cv_func_re_compile_pattern_working=yes
 endif
+ifneq ($(UCLIBC_HAS_WCHAR),y)
+gt_cv_c_wchar_t=gt_cv_c_wchar_t=no
+gl_cv_absolute_wchar_h=gl_cv_absolute_wchar_h=__fpending.h
+endif
 
 $(DL_DIR)/$(M4_SOURCE):
 	 $(WGET) -P $(DL_DIR) $(M4_SITE)/$(M4_SOURCE)
@@ -33,6 +37,8 @@
 		$(TARGET_CONFIGURE_ARGS) \
 		gl_cv_func_gettimeofday_clobber=no \
 		$(gl_cv_func_re_compile_pattern_working) \
+		$(gt_cv_c_wchar_t) \
+		$(gl_cv_absolute_wchar_h) \
 		./configure \
 		--target=$(GNU_TARGET_NAME) \
 		--host=$(GNU_TARGET_NAME) \

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] svn commit: trunk/buildroot/package/m4
@ 2009-01-04  5:59 nkukard at uclibc.org
  0 siblings, 0 replies; 3+ messages in thread
From: nkukard at uclibc.org @ 2009-01-04  5:59 UTC (permalink / raw)
  To: buildroot

Author: nkukard
Date: 2009-01-04 05:59:54 +0000 (Sun, 04 Jan 2009)
New Revision: 24681

Log:
Use target ar & ranlib when generating static archives, libm4.a was being built with the host ar and ranlib


Modified:
   trunk/buildroot/package/m4/m4.mk


Changeset:
Modified: trunk/buildroot/package/m4/m4.mk
===================================================================
--- trunk/buildroot/package/m4/m4.mk	2009-01-04 02:58:58 UTC (rev 24680)
+++ trunk/buildroot/package/m4/m4.mk	2009-01-04 05:59:54 UTC (rev 24681)
@@ -50,7 +50,7 @@
 	touch $@
 
 $(M4_DIR)/src/$(M4_BINARY): $(M4_DIR)/.configured
-	$(MAKE) CC=$(TARGET_CC) -C $(M4_DIR)
+	$(MAKE) CC=$(TARGET_CC) RANLIB=$(TARGET_RANLIB) AR=$(TARGET_AR) -C $(M4_DIR)
 
 $(TARGET_DIR)/$(M4_TARGET_BINARY): $(M4_DIR)/src/$(M4_BINARY)
 	$(MAKE) \

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-01-04  5:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-10 18:39 [Buildroot] svn commit: trunk/buildroot/package/m4 aldot at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2007-07-07 10:11 aldot at uclibc.org
2009-01-04  5:59 nkukard at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox