[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openssl-cvs
Subject:    cvs commit: openssl Configure
From:       geoff () openssl ! org
Date:       2000-04-06 11:56:47
[Download RAW message or body]

geoff       06-Apr-2000 13:56:46

  Modified:    .        Configure
  Log:
  I forgot about $openssl_other_defines ... should probably do this
  for consistency. Not sure though whether HAVE_DLFCN_H should be
  included too? If we go the autoconf route then this probably wouldn't
  be included.
  
  Revision  Changes    Path
  1.193     +9 -3      openssl/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /e/openssl/cvs/openssl/Configure,v
  retrieving revision 1.192
  retrieving revision 1.193
  diff -u -r1.192 -r1.193
  --- Configure	2000/04/06 07:09:43	1.192
  +++ Configure	2000/04/06 11:56:45	1.193
  @@ -554,21 +554,27 @@
   # has support compiled in for them. Currently each method is enabled
   # by a define "DSO_<name>" ... we translate the "dso_scheme" config
   # string entry into using the following logic;
  +my $dso_cflags;
   if (!$no_dso && $dso_scheme ne "")
   	{
   	$dso_scheme =~ tr/[a-z]/[A-Z]/;
   	if ($dso_scheme eq "DLFCN")
   		{
  -		$cflags = "-DDSO_DLFCN -DHAVE_DLFCN_H $cflags";
  +		$dso_cflags = "-DDSO_DLFCN -DHAVE_DLFCN_H";
  +		$openssl_other_defines .= "#define DSO_DLFCN\n";
  +		$openssl_other_defines .= "#define HAVE_DLFCN_H\n";
   		}
   	elsif ($dso_scheme eq "DLFCN_NO_H")
   		{
  -		$cflags = "-DDSO_DLFCN $cflags";
  +		$dso_cflags = "-DDSO_DLFCN";
  +		$openssl_other_defines .= "#define DSO_DLFCN\n";
   		}
   	else
   		{
  -		$cflags = "-DDSO_$dso_scheme $cflags";
  +		$dso_cflags = "-DDSO_$dso_scheme";
  +		$openssl_other_defines .= "#define DSO_$dso_scheme\n";
   		}
  +	$cflags = "$dso_cflags $cflags";
   	}
   
   my $thread_cflags;
  
  
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
CVS Repository Commit List                     openssl-cvs@openssl.org
Automated List Manager                           majordomo@openssl.org

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic