mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 22:00:09 +02:00
36 lines
996 B
Plaintext
36 lines
996 B
Plaintext
From 40175da3a270397dcf9f684c360f9161c637039f Mon Sep 17 00:00:00 2001
|
|
From: Jerome Duval <jerome.duval@gmail.com>
|
|
Date: Mon, 14 Apr 2014 17:00:54 +0000
|
|
Subject: initial haiku patch
|
|
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 871082f..a3913b7 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -48,7 +48,7 @@ LT_INIT
|
|
AC_PROG_AWK
|
|
AC_PROG_INSTALL
|
|
|
|
-AC_PATH_PROG(BISON, bison,bison)
|
|
+AC_CHECK_PROG(BISON, bison,bison)
|
|
AC_PATH_PROG(HELP2MAN, help2man, help2man)
|
|
|
|
# Check for a m4 that supports -P
|
|
diff --git a/tests/test-pthread/Makefile.am b/tests/test-pthread/Makefile.am
|
|
index fe5d545..e8023e8 100644
|
|
--- a/tests/test-pthread/Makefile.am
|
|
+++ b/tests/test-pthread/Makefile.am
|
|
@@ -27,7 +27,7 @@ CLEANFILES = scanner.c scanner.h parser.c parser.h $(testname)$(EXEEXT) OUTPUT $
|
|
OBJS = scanner.o # parser.o
|
|
|
|
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)
|
|
-LIBS = -lpthread
|
|
+#LIBS = -lpthread
|
|
#LFLAGS = --header="scanner.h"
|
|
#YFLAGS = --defines --output=parser.c
|
|
|
|
--
|
|
1.8.3.4
|
|
|