public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* [Patch] Ignore iwidgets when building with Source-Navigator
@ 2002-08-06  1:01 Mo DeJong
  2002-08-06 11:51 ` Keith Seitz
  0 siblings, 1 reply; 2+ messages in thread
From: Mo DeJong @ 2002-08-06  1:01 UTC (permalink / raw)
  To: Insight

Here is a patch that skips the iwidgets subdir when building
with Source-Navigator. It should not change anything related
to the Insight build.

cheers
Mo

2002-08-06  Mo Dejong  <supermo@bayarea.net>

	* configure.in: Don't configure and install
	the iwidgets package when building with a
	Source-Navigator directory layout.

Index: configure.in
===================================================================
RCS file: /cvs/src/src/itcl/configure.in,v
retrieving revision 1.1.1.2
diff -u -r1.1.1.2 configure.in
--- configure.in	9 Sep 2001 19:49:03 -0000	1.1.1.2
+++ configure.in	6 Aug 2002 07:57:13 -0000
@@ -24,7 +24,13 @@
 AC_PREFIX_DEFAULT(/usr/local)
 AC_PREFIX_PROGRAM(itclsh)
 
-AC_CONFIG_SUBDIRS(itcl itk iwidgets3.0.0)
+# Source-Navigator does not use the iwidgets package
+if test -d ${srcdir}/../snavigator && test ! -d ${srcdir}/../gdb/gdbtk ; then
+    AC_CONFIG_SUBDIRS(itcl itk)
+else
+    AC_CONFIG_SUBDIRS(itcl itk iwidgets3.0.0)
+fi
 
 AC_OUTPUT(Makefile,
 	chmod +x ${srcdir}/config/install-sh ${srcdir}/config/mkinstalldirs)
+

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

* Re: [Patch] Ignore iwidgets when building with Source-Navigator
  2002-08-06  1:01 [Patch] Ignore iwidgets when building with Source-Navigator Mo DeJong
@ 2002-08-06 11:51 ` Keith Seitz
  0 siblings, 0 replies; 2+ messages in thread
From: Keith Seitz @ 2002-08-06 11:51 UTC (permalink / raw)
  To: Mo DeJong; +Cc: Insight

/Patch/RFA/ :-)

On Tue, 6 Aug 2002, Mo DeJong wrote:

> Here is a patch that skips the iwidgets subdir when building
> with Source-Navigator. It should not change anything related
> to the Insight build.

I was about to say that this sort of thing belongs in src/configure... 
Then a light went on about iwidgets -- it's not a toplevel thing that can 
be configured.

Since this patch is so contained (and would only impact people with snav 
checked out), I have committed it.

Keith

> 2002-08-06  Mo Dejong  <supermo@bayarea.net>
> 
> 	* configure.in: Don't configure and install
> 	the iwidgets package when building with a
> 	Source-Navigator directory layout.
> 
> Index: configure.in
> ===================================================================
> RCS file: /cvs/src/src/itcl/configure.in,v
> retrieving revision 1.1.1.2
> diff -u -r1.1.1.2 configure.in
> --- configure.in	9 Sep 2001 19:49:03 -0000	1.1.1.2
> +++ configure.in	6 Aug 2002 07:57:13 -0000
> @@ -24,7 +24,13 @@
>  AC_PREFIX_DEFAULT(/usr/local)
>  AC_PREFIX_PROGRAM(itclsh)
>  
> -AC_CONFIG_SUBDIRS(itcl itk iwidgets3.0.0)
> +# Source-Navigator does not use the iwidgets package
> +if test -d ${srcdir}/../snavigator && test ! -d ${srcdir}/../gdb/gdbtk ; then
> +    AC_CONFIG_SUBDIRS(itcl itk)
> +else
> +    AC_CONFIG_SUBDIRS(itcl itk iwidgets3.0.0)
> +fi
>  
>  AC_OUTPUT(Makefile,
>  	chmod +x ${srcdir}/config/install-sh ${srcdir}/config/mkinstalldirs)
> +
> 


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

end of thread, other threads:[~2002-08-06 18:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-08-06  1:01 [Patch] Ignore iwidgets when building with Source-Navigator Mo DeJong
2002-08-06 11:51 ` Keith Seitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).