use gc.h and co from /usr/local/include

This commit is contained in:
todd 2002-09-12 15:07:23 +00:00
parent 03a3b0e4e7
commit 2076b86927
5 changed files with 51 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.3 2002/08/28 22:23:29 todd Exp $
# $OpenBSD: Makefile,v 1.4 2002/09/12 15:07:23 todd Exp $
COMMENT= "OpenCM change management system"
COMMENT-docs= "OpenCM Documentation"
@ -33,7 +33,8 @@ USE_GMAKE= Yes
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}
CONFIGURE_STYLE= autoconf
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
CPPFLAGS="-I/usr/local/include"
FLAVORS=docs
FLAVOR?=

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-base_libgdiff_diff3_c,v 1.1 2002/09/12 15:07:23 todd Exp $
--- base/libgdiff/diff3.c.orig Mon Aug 5 16:03:07 2002
+++ base/libgdiff/diff3.c Thu Sep 12 10:03:10 2002
@@ -16,7 +16,7 @@
/* Written by Randy Smith */
/* Librarification by Tim Pierce */
-#include "../gc6.0/include/gc.h"
+#include <gc.h>
#include "system.h"
#include <stdio.h>
#include <setjmp.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-base_libgdiff_diff_h,v 1.1 2002/09/12 15:07:23 todd Exp $
--- base/libgdiff/diff.h.orig Mon Aug 5 16:03:05 2002
+++ base/libgdiff/diff.h Thu Sep 12 10:03:09 2002
@@ -15,7 +15,7 @@ GNU General Public License for more deta
*/
-#include "../gc6.0/include/gc.h"
+#include <gc.h>
#include "system.h"
#include <stdio.h>
#include <setjmp.h>

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-base_src_opencm_h,v 1.3 2002/09/12 15:07:23 todd Exp $
--- base/src/opencm.h.orig Mon Aug 5 16:03:07 2002
+++ base/src/opencm.h Thu Sep 12 10:03:10 2002
@@ -73,7 +73,7 @@
#endif
/* #define GC_DEBUG */
-#include "../gc6.0/include/gc.h"
+#include <gc.h>
/* #define USE_BASE16 */

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-base_src_server_DoRequest_c,v 1.3 2002/09/12 15:07:23 todd Exp $
--- base/src/server/DoRequest.c.orig Mon Jul 22 02:02:50 2002
+++ base/src/server/DoRequest.c Thu Sep 12 10:03:11 2002
@@ -40,7 +40,7 @@
#include <opencm.h>
#include "opencmserver.h"
-#include "../../gc6.0/include/gc_backptr.h"
+#include <gc_backptr.h>
char *storeReposURI = NULL;
extern Repository *localRepos;