1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-03 11:12:13 +00:00

- Recent changes to the ORBit port caused a build error, which highlighted a

deficiency in orbit-python's Makefile structure:  it's not sufficiently
  inclusive w.r.t actually using *_CFLAGS generated by various test programs
  called from its own configure script.  Added a patch to fix this.
- (It's also not very good about using generated *_LIBS, which may cause
  future problems.)
- No PORTREVISION bump; this is a build-time problem.

PR:		36278
Submitted by:	Christopher Farley <chris@northernbrewer.com>
This commit is contained in:
Johann Visagie 2002-03-25 10:18:19 +00:00
parent ae0f373fe8
commit a4d472cf5f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56612
4 changed files with 22 additions and 4 deletions

View File

@ -23,6 +23,4 @@ USE_GLIB= yes
GNU_CONFIGURE= yes
USE_PYTHON= yes
CFLAGS+= -I${LOCALBASE}/include
.include <bsd.port.mk>

View File

@ -0,0 +1,11 @@
--- src/Makefile.in.orig Wed Oct 17 07:44:15 2001
+++ src/Makefile.in Mon Mar 25 12:06:12 2002
@@ -103,7 +103,7 @@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
-INCLUDES = $(PYTHON_INCLUDES) $(PYTHON_CFLAGS) $(ORBIT_CFLAGS)
+INCLUDES = $(PYTHON_INCLUDES) $(PYTHON_CFLAGS) $(ORBIT_CFLAGS) $(LIBIDL_CFLAGS)
LIBS = $(ORBIT_LIBS)
pyexec_PROGRAMS = CORBAmodule$(SO) PortableServermodule$(SO)

View File

@ -23,6 +23,4 @@ USE_GLIB= yes
GNU_CONFIGURE= yes
USE_PYTHON= yes
CFLAGS+= -I${LOCALBASE}/include
.include <bsd.port.mk>

View File

@ -0,0 +1,11 @@
--- src/Makefile.in.orig Wed Oct 17 07:44:15 2001
+++ src/Makefile.in Mon Mar 25 12:06:12 2002
@@ -103,7 +103,7 @@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
-INCLUDES = $(PYTHON_INCLUDES) $(PYTHON_CFLAGS) $(ORBIT_CFLAGS)
+INCLUDES = $(PYTHON_INCLUDES) $(PYTHON_CFLAGS) $(ORBIT_CFLAGS) $(LIBIDL_CFLAGS)
LIBS = $(ORBIT_LIBS)
pyexec_PROGRAMS = CORBAmodule$(SO) PortableServermodule$(SO)