(file) Return to configure CVS log (file) (dir) Up to [Pegasus] / pegasus_unsupported / config

  1 mike  1.2 #!/bin/sh
  2           
  3           #//%2006///////////////////////////////////////////////////////////////////////
  4           #//
  5           #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  6           #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  7           #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  8           #// IBM Corp.; EMC Corporation, The Open Group.
  9           #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 10           #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 11           #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 12           #// EMC Corporation; VERITAS Software Corporation; The Open Group.
 13           #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 14           #// EMC Corporation; Symantec Corporation; The Open Group.
 15           #//
 16           #// Permission is hereby granted, free of charge, to any person obtaining a copy
 17           #// of this software and associated documentation files (the "Software"), to
 18           #// deal in the Software without restriction, including without limitation the
 19           #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 20           #// sell copies of the Software, and to permit persons to whom the Software is
 21           #// furnished to do so, subject to the following conditions:
 22 mike  1.2 #// 
 23           #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 24           #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 25           #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 26           #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 27           #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 28           #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 29           #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 30           #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 31           #//
 32           #//=============================================================================
 33 mike  1.1 
 34           ##==============================================================================
 35           ##
 36 mike  1.2 ## Check for existence of pegasus config.mak. If this does not exist, it means
 37           ## that the distribution is incomplete or that the configure file has been run
 38           ## from the wrong directory.
 39 mike  1.1 ##
 40           ##==============================================================================
 41           
 42 mike  1.2 config=mak/config.mak
 43           
 44           if [ ! -f "$config" ]; then
 45 mike  1.4     echo "$0: Error: ./configure must be run from root of Pegasus distribution."
 46 mike  1.2     echo
 47 mike  1.1     exit 1
 48           fi
 49           
 50           ##==============================================================================
 51           ##
 52 mike  1.2 ## Collection command line options.
 53 mike  1.1 ##
 54           ##==============================================================================
 55           
 56 mike  1.2 help=
 57 mike  1.1 
 58           for opt
 59           do
 60           
 61             optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
 62           
 63             case $opt in
 64           
 65 mike  1.2     -h | --help)
 66 mike  1.1       help=1
 67                 ;;
 68           
 69 mike  1.11     --platform=*)
 70                  platform=$optarg
 71 mike  1.1        ;;
 72            
 73                --prefix=*)
 74 mike  1.2        prefix=$optarg
 75 mike  1.1        ;;
 76            
 77                --bindir=*)
 78                  bindir=$optarg
 79                  ;;
 80            
 81                --sbindir=*)
 82                  sbindir=$optarg
 83                  ;;
 84            
 85 mike  1.2      -libdir=*)
 86 mike  1.1        libdir=$optarg
 87                  ;;
 88            
 89                --includedir=*)
 90 mike  1.2        incdir=$optarg
 91 mike  1.1        ;;
 92            
 93                --datadir=*)
 94                  datadir=$optarg
 95                  ;;
 96            
 97                --enable-debug)
 98                  enable_debug=1
 99                  ;;
100            
101 mike  1.17     --enable-mrr-generation)
102                  enable_mrr_generation=1
103                  ;;
104            
105                --enable-mrr)
106                  enable_mrr=1
107                  ;;
108            
109 mike  1.2      --disable-oop)
110                  disable_oop=1
111                  ;;
112            
113 mike  1.15     --disable-trace)
114                  disable_trace=1
115                  ;;
116            
117 mike  1.8      --disable-ipv6)
118                  disable_ipv6=1
119                  ;;
120            
121 mike  1.7      --disable-trace)
122                  disable_trace=1
123                  ;;
124            
125                --disable-tests)
126                  disable_tests=1
127                  ;;
128            
129 mike  1.5      --enable-pam)
130                  enable_pam=1
131 mike  1.2        ;;
132            
133 karl  1.13     --enable-pam-standalone)
134                  enable_pam_standalone=1
135                  ;;
136            
137 mike  1.2      --with-pam=*)
138                  with_pam=$optarg
139                  ;;
140            
141                --with-pam-mod=*)
142                  with_pam_mod=$optarg
143 mike  1.1        ;;
144            
145 mike  1.2      --enable-ssl)
146                  enable_ssl=1
147 mike  1.1        ;;
148            
149 mike  1.5      --enable-slp)
150                  enable_slp=1
151                  ;;
152            
153                --enable-openslp)
154                  enable_openslp=1
155                  ;;
156            
157                --with-openslp=*)
158                  with_openslp=$optarg
159                  ;;
160            
161                --disable-cmpi)
162                  disable_cmpi=1
163                  ;;
164            
165 mike  1.2      --with-ssl=*)
166                  with_ssl=$optarg
167 mike  1.1        ;;
168            
169 mike  1.2      --enable-binary-repository)
170                  enable_binary_repository=1
171 mike  1.1        ;;
172            
173 mike  1.2      --enable-compressed-repository)
174                  enable_compressed_repository=1
175 mike  1.1        ;;
176            
177 karl  1.13     --with-solaris-defaults)
178                  with_solaris_defaults=1
179                  ;;
180            
181 mike  1.17     --solaris)
182                  with_solaris_defaults=1
183                  ;;
184            
185 mike  1.15     --with-vxworks-xscale-defaults)
186                  with_vxworks_xscale_defaults=1
187                  ;;
188            
189 mike  1.17     --vxworks-xscale)
190 mike  1.15       with_vxworks_xscale_defaults=1
191                  ;;
192            
193 karl  1.14     --with-test-user=*)
194                  with_test_user=$optarg
195                  ;;
196            
197 mike  1.1      *)
198                  echo "$0: unknown option:  $opt"
199                  exit 1
200                  ;;
201            
202              esac
203            done
204            
205            ##==============================================================================
206            ##
207 mike  1.2  ## Print help message if --help given on command line.
208 mike  1.1  ##
209            ##==============================================================================
210            
211            if [ "$help" = "1" ]; then
212 mike  1.2  cat<<END
213            
214            Usage: ./configure [OPTION]...
215            
216 mike  1.11 Configures OpenPegasus build options.
217 mike  1.2  
218            Configure examples.
219                $ ./configure
220 mike  1.11     $ make
221 mike  1.2  
222            Options:
223                --help
224                    Print this help message.
225 mike  1.11     --platform=PLATFORM
226                    Build package for this PLATFORM, which must be one of the following:
227                        LINUX_IX86_GNU
228                        LINUX_X86_64_GNU
229                        SOLARIS_SPARC_64_CC
230                        SOLARIS_X86_64_CC
231 mike  1.15             VXWORKS_XSCALE_GNU
232 mike  1.2      --prefix=DIR
233                    Install under DIR
234                --bindir=DIR
235                    Install programs here.
236                --sbindir=DIR
237                    Install super-user programs here.
238                --libdir=DIR
239                    Install libraries here.
240                --incluedir=DIR
241                    Install include files here.
242                --datadir=DIR
243                    Install data files here.
244                --enable-debug
245                    Build for debug.
246 mike  1.17     --enable-mrr-generation
247                    Enable memory-resident repository generation (in cimmofl).
248                --enable-mrr
249                    Enable the memory-resident repository.
250 mike  1.2      --disable-oop
251                    Disable out-of-process providers.
252 mike  1.15     --disable-trace
253                    Disable tracing facility.
254 mike  1.8      --disable-ipv6
255                    Disable IPV6 support.
256 mike  1.7      --disable-trace
257                    Disable tracing facility
258                --disable-tests
259                    Disable build of most of the tests.
260 mike  1.5      --enable-pam
261 karl  1.13         Enable PAM authentication.
262                --enable-pam-standalone
263                    Use PAM standalone cimservera program (implies --enable-pam).
264 mike  1.2      --with-pam=DIR
265                    Specify an alternative PAM directory location (defaults to /etc/pam.d).
266 karl  1.14     --with-test-user=USER
267                    The USER for user-related tests (must refer to actual OS user).
268 mike  1.2      --enable-ssl
269                    Enable SSL feature
270 mike  1.6      --with-ssl=DIR
271                    Find SSL under DIR (e.g., --with-ssl=/usr).
272 mike  1.5      --enable-slp
273                    Enable SLP feature
274                --enable-openslp
275 karl  1.13         Enable OpenSLP feature (implies --enable-slp).
276 mike  1.5      --with-openslp=DIR
277                    Find OpenSLP installation under DIR (e.g., --with-openslp=/usr).
278                --disable-cmpi
279                    Disable CMPI provider support
280 mike  1.2      --enable-binary-repository
281                    Enable the binary repository feature, resulting in a smaller CIM 
282                    repository disk footprint.
283 karl  1.13     --with-solaris-defaults
284                    Enables reasonable defaults for the Solaris Nevada platform. These
285                    includes:
286                        --enable-ssl
287                        --enable-openslp
288                        --enable-pam-standalone
289 mike  1.15     --with-vxworks-xscale-defaults
290                    Enables reasonable defaults for the VXWorks/XScale platform.
291                    includes:
292                        --platform=VXWORKS_XSCALE_GNU
293                        --disable-oop
294                        --disable-trace
295                        --enable-ssl
296 mike  1.2  END
297            exit
298 mike  1.1  fi
299            
300            ##==============================================================================
301            ##
302 karl  1.13 ## Resolve platform specific default options.
303            ##
304            ##==============================================================================
305            
306            if [ "$with_solaris_defaults" = 1 ]; then
307                enable_ssl=1
308                enable_openslp=1
309                enable_pam_standalone=1
310            fi
311            
312 mike  1.15 if [ "$with_vxworks_xscale_defaults" = 1 ]; then
313                platform=VXWORKS_XSCALE_GNU
314                disable_oop=1
315                disable_trace=1
316                enable_ssl=1
317 mike  1.17     enable_slp=1
318                disable_cmpi=1
319                enable_mrr=1
320 mike  1.15 fi
321            
322 karl  1.13 ##==============================================================================
323            ##
324 mike  1.11 ## Check the --platform option.
325            ##
326            ##==============================================================================
327            
328            if [ ! -z "$platform" ]; then
329            
330                case "$platform" in
331                    LINUX_IX86_GNU)
332                        ;;
333                    LINUX_X86_64_GNU)
334                        ;;
335                    SOLARIS_SPARC_64_CC)
336                        ;;
337                    SOLARIS_X86_64_CC)
338                        ;;
339 mike  1.15         VXWORKS_XSCALE_GNU)
340                        ;;
341 mike  1.11         *)
342                        echo "$0: Unknown platform: --platform=$platform"
343                        echo ""
344                        exit 1
345                        ;;
346                esac
347            fi
348            
349            ##==============================================================================
350            ##
351 mike  1.5  ## Guess the platform.
352 mike  1.1  ##
353            ##==============================================================================
354            
355 mike  1.11 if [ -z "$platform" ]; then
356 mike  1.2  
357              machine=`(uname -m) 2>/dev/null` || machine=unknown
358              system=`(uname -s) 2>/dev/null`  || system=unknown
359              release=`(uname -r) 2>/dev/null` || release=unknown
360              version=`(uname -v) 2>/dev/null` || version=unknown
361              token="$machine:$system:$release:$version"
362            
363              case "$token" in
364            
365                i686:Linux:*:*)
366 mike  1.11       platform=LINUX_IX86_GNU
367                  libbase=lib
368 mike  1.2        ;;
369            
370                x86_64:Linux:*:*)
371 mike  1.11       platform=LINUX_X86_64_GNU
372                  libbase=lib64
373 mike  1.2        ;;
374 mike  1.1  
375 mike  1.11     sun*:SunOS:*:*)
376                  platform=SOLARIS_SPARC_64_CC
377                  libbase=lib/64
378 mike  1.2        ;;
379 mike  1.1  
380 mike  1.11     i86pc:SunOS:*:*)
381                  platform=SOLARIS_X86_64_CC
382                  libbase=lib/64
383 mike  1.5        ;;
384            
385 mike  1.2      *)
386 mike  1.11         echo "$0: Failed to guess platform"
387 mike  1.2          echo "  machine=$machine"
388                    echo "  system=$system"
389                    echo "  release=$release"
390                    echo "  version=$version"
391                    exit 1
392                    ;;
393            
394              esac
395 mike  1.1  fi
396            
397            ##==============================================================================
398            ##
399 mike  1.2  ## Resolve default directory names.
400 mike  1.1  ##
401            ##==============================================================================
402            
403 mike  1.2  # --prefix:
404            
405            if [ -z "$prefix" ]; then
406              prefix=/usr/local
407            fi
408            
409            # --bindir:
410            
411 mike  1.1  if [ -z "$bindir" ]; then
412              bindir=$prefix/bin
413            fi
414            
415 mike  1.2  # --sbindir:
416            
417 mike  1.1  if [ -z "$sbindir" ]; then
418              sbindir=$prefix/sbin
419            fi
420            
421 mike  1.2  # --libdir:
422            
423 mike  1.1  if [ -z "$libdir" ]; then
424 mike  1.2    libdir=$prefix/$libbase
425 mike  1.1  fi
426            
427 mike  1.2  # --includedir:
428            
429 mike  1.1  if [ -z "$includedir" ]; then
430              includedir=$prefix/include
431            fi
432            
433 mike  1.2  # --datadir:
434            
435 mike  1.1  if [ -z "$datadir" ]; then
436              datadir=$prefix/share
437            fi
438            
439 mike  1.2  if [ -z "$with_pam" ]; then
440              with_pam=/etc/pam.d
441            fi
442            
443 karl  1.14 if [ -z "$with_test_user" ]; then
444              with_test_user=guest
445            fi
446            
447 mike  1.1  ##==============================================================================
448            ##
449 karl  1.10 ## Verify --with-ssl directory.
450 mike  1.1  ##
451            ##==============================================================================
452            
453 karl  1.10 if [ ! -z "$with_ssl" ]; then
454 mike  1.1  
455 mike  1.2    if [ ! -d "$with_ssl" ]; then
456                echo "$0: Error: No such directory: --with-ssl=$with_ssl"
457                exit 1;
458              fi
459            
460 karl  1.10   if [ ! -f "$with_ssl/include/openssl/ssl.h" ]; then
461                echo "$0: missing dependency: \$with_ssl/include/openssl/ssl.h"
462                missing=1
463              fi
464            
465              if [ ! -f "$with_ssl/bin/openssl" ]; then
466                echo "$0: missing dependency: \$with_ssl/bin/openssl"
467                missing=1
468              fi
469 mike  1.2  
470 karl  1.10   if [ ! -f "$with_ssl/$libbase/libssl.so" ]; then
471                echo "$0: missing dependency: \$with_ssl/$libbase/libss.so"
472                missing=1
473              fi
474 mike  1.2  
475 karl  1.10   if [ "$missing" = "1" ]; then
476                echo "$0: where --with-ssl=$with_ssl"
477                exit 1;
478 mike  1.2    fi
479            
480 karl  1.10 fi
481            
482            ##==============================================================================
483            ##
484            ## Verify --with-slp directory.
485            ##
486            ##==============================================================================
487            
488            if [ ! -z "$with_openslp" ]; then
489 mike  1.2  
490 karl  1.10   if [ ! -d "$with_openslp" ]; then
491                echo "$0: Error: No such directory: --with-openslp=$with_openslp"
492                exit 1;
493 mike  1.2    fi
494            
495 karl  1.10   if [ ! -f "$with_openslp/include/slp.h" ]; then
496                echo "$0: missing dependency: \$with_openslp/include/slp.h"
497                missing=1
498              fi
499 mike  1.2  
500 karl  1.10   if [ ! -f "$with_openslp/$libbase/libslp.so" ]; then
501                echo "$0: missing dependency: \$with_openslp/$libbase/libslp.so"
502                missing=1
503 mike  1.2    fi
504            
505 karl  1.10   if [ "$missing" = "1" ]; then
506                echo "$0: where --with-openslp=$with_openslp"
507 mike  1.2      exit 1;
508              fi
509            
510            fi
511            
512            ##==============================================================================
513            ##
514            ## These options (if non-empty) must denote absolute directory names.
515            ##
516            ##==============================================================================
517            
518            for i in \
519              prefix \
520              bindir \
521              sbindir \
522              libdir \
523              includedir \
524              datadir \
525              with_ssl \
526              with_pam
527            do
528 mike  1.2  
529              eval v=$`echo $i`
530            
531              case $v in
532                /* | "")
533                  ;;
534            
535                *)
536                  echo "$0: Error: Must be an absolute directory name: --$i=$v"
537                  exit 1;
538                  ;;
539              esac
540            
541            done
542            
543            ##==============================================================================
544            ##
545 karl  1.14 ## Check whether the test user will be able to access pegasus home.
546            ##
547            ##==============================================================================
548            
549            uid=`id -u`
550            cwd=`/bin/pwd`
551            
552            if [ "$uid" = "0" -a "$disable_tests" != "1" ]; then
553            
554              if [ "$enable_pam" = "1" -o "$enable_pam_standalone" = "1" ]; then
555            
556                su $with_test_user -c "/bin/true"
557            
558                if [ "$?" != "0" ]; then
559                  echo "$0: The test user account ($with_test_user) does not exist on this system. Please create a test user with this name or designate an existing one with the --with-test-user option."
560                  exit 1
561                fi
562            
563                su $with_test_user -c "cd $cwd 2> /dev/null"
564            
565                if [ "$?" != "0" ]; then
566 karl  1.14       echo "$0: The test user account ($with_test_user) has insufficient privileges to access the pegasus root directory ($cwd), which will cause the user-context tests to fail. Please configure from a different directory."
567                  exit 1
568                fi
569              fi
570            
571            fi
572            
573            ##==============================================================================
574            ##
575 mike  1.2  ## Create options.mak
576            ##
577            ##==============================================================================
578            
579 mike  1.17 if [ ! -z "$enable_pam" ]
580            then
581            
582              if [ ! -f "/usr/include/security/pam_appl.h" -a \
583                   ! -f "/usr/local/include/security/pam_appl.h" ]
584              then
585                  echo "$0: <security/pam_appl.h> is missing (required by --enable_pam)"
586                  exit 1
587              fi
588            
589            fi
590            
591            ##==============================================================================
592            ##
593            ## Create options.mak
594            ##
595            ##==============================================================================
596            
597 mike  1.2  options=options.mak
598            rm -f $options
599            echo "# This file was generated by configure." >> $options
600 mike  1.16 echo "# ./configure $*" >> $options
601 mike  1.2  
602            cwd=`/bin/pwd`
603            root=$cwd
604            echo "export ROOT=$root" >> $options
605 mike  1.15 #echo "export PATH=$PATH:$cwd/$platform/bin" >> $options
606            #echo "export LD_LIBRARY_PATH=$cwd/$platform/lib:$libdir" >> $options
607 mike  1.2  echo "export PEGASUS_PLATFORM=$platform" >> $options
608            echo "export PEGASUS_ROOT=$root" >> $options
609            echo "export PEGASUS_HOME=$cwd/$platform" >> $options
610            
611            if [ "$disable_oop" = "1" ]
612            then
613              echo "export PEGASUS_DEFAULT_ENABLE_OOP=false" >> $options
614              echo "export PEGASUS_DISABLE_PROV_USERCTXT=1" >> $options
615 mike  1.5    echo "export PEGASUS_DISABLE_PRIVILEGED_TESTS=true" >> $options
616 mike  1.2  fi
617            
618 mike  1.15 if [ "$disable_trace" = "1" ]
619            then
620              echo "export PEGASUS_REMOVE_TRACE=1" >> $options
621            fi
622            
623 mike  1.8  if [ "$disable_ipv6" = "1" ]
624            then
625              echo "export PEGASUS_ENABLE_IPV6=false" >> $options
626            else
627              echo "export PEGASUS_ENABLE_IPV6=true" >> $options
628            fi
629            
630 mike  1.7  if [ "$disable_trace" = "1" ]
631            then
632              echo "export PEGASUS_REMOVE_TRACE=1" >> $options
633            fi
634            
635            if [ "$disable_tests" = "1" ]
636            then
637              echo "export PEGASUS_SKIP_MOST_TEST_DIRS=true" >> $options
638            fi
639            
640 mike  1.2  if [ "$enable_debug" = 1 ]
641            then
642              echo "export PEGASUS_DEBUG=1" >> $options
643            fi
644            
645 mike  1.17 if [ "$enable_mrr_generation" = 1 ]
646            then
647              echo "export PEGASUS_ENABLE_MRR_GENERATION=1" >> $options
648            fi
649            
650            if [ "$enable_mrr" = 1 ]
651            then
652              echo "export PEGASUS_ENABLE_MRR=1" >> $options
653            fi
654            
655 mike  1.5  if [ "$enable_pam" = "1" ]; then
656 mike  1.2    echo "export PEGASUS_PAM_AUTHENTICATION=true" >> $options
657 karl  1.13 fi
658            
659            if [ "$enable_pam_standalone" = "1" ]; then
660              echo "export PEGASUS_PAM_AUTHENTICATION=true" >> $options
661 mike  1.2    echo "export PEGASUS_USE_PAM_STANDALONE_PROC=true" >> $options
662 mike  1.1  fi
663            
664            if [ "$enable_binary_repository" = "1" ]; then
665 mike  1.2    echo "export PEGASUS_REPOSITORY_MODE=BIN" >> $options
666 mike  1.1  fi
667            
668 mike  1.2  if [ "$enable_compressed_repository" = "1" ]; then
669              echo "export PEGASUS_ENABLE_COMPRESSED_REPOSITORY=1" >> $options
670 mike  1.1  fi
671            
672 mike  1.2  if [ "$enable_ssl" = "1" ]; then
673              echo "export PEGASUS_HAS_SSL=true" >> $options
674 mike  1.5  fi
675            
676 karl  1.10 if [ ! -z "$with_ssl" ]; then
677              echo "export OPENSSL_HOME=$with_ssl" >> $options
678            fi
679            
680 mike  1.5  if [ "$enable_slp" = "1" ]; then
681                echo "export PEGASUS_ENABLE_SLP=true" >> $options
682            fi
683            
684            if [ "$enable_openslp" = "1" ]; then
685                echo "export PEGASUS_ENABLE_SLP=true" >> $options
686                echo "export PEGASUS_USE_OPENSLP=true" >> $options
687            fi
688            
689            if [ ! -z "$with_openslp" ]; then
690              echo "export PEGASUS_OPENSLP_HOME=$with_openslp" >> $options
691            fi
692            
693            if [ "$disable_cmpi" != "1" ]; then
694              echo "export PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER=true" >> $options
695            fi
696            
697 mike  1.2  echo "created $options"
698            
699            ##==============================================================================
700            ##
701            ## Create GNUmakefile
702            ##
703            ##==============================================================================
704            
705            cat > GNUmakefile << END
706            include options.mak
707            
708 mike  1.15 export PATH := \$(PATH):\$(PEGASUS_HOME)/bin
709            export LD_LIBRARY_PATH := \$(LD_LIBRARY_PATH):\$(PEGASUS_HOME)/bin
710            
711 mike  1.2  include Makefile
712            
713            distclean:
714            	rm -rf \$(PEGASUS_PLATFORM)
715            	rm -f GNUmakefile
716            	rm -f options.mak
717            END
718            
719            echo "created GNUmakefile"
720            
721            ##==============================================================================
722            ##
723            ## Print final message:
724            ##
725            ##==============================================================================
726            
727 mike  1.11 echo "configured for $platform"
728 mike  1.1  echo

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2