RPM Community Forums

Mailing List Message of <rpm-cvs>

[CVS] RPM: rpm/ configure.ac

From: Ralf S. Engelschall <rse@rpm5.org>
Date: Tue 24 Jul 2007 - 20:48:48 CEST
Message-Id: <20070724184848.5F7523484F4@rpm5.org>
  RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  ____________________________________________________________________________

  Server: rpm5.org                         Name:   Ralf S. Engelschall
  Root:   /v/rpm/cvs                       Email:  rse@rpm5.org
  Module: rpm                              Date:   24-Jul-2007 20:48:48
  Branch: HEAD                             Handle: 2007072419484800

  Modified files:
    rpm                     configure.ac

  Log:
    Switch the --enable-build-lib64 option from...
    
        "explicit enabling  means explicit     use of lib64,
         explicit disabling means explicit non-use of lib64,
         leaving out means automatic determination"
    
    to
    
        "explicit enabling means enable the automatic determination,
         explicit disabling means explicit non-use of lib64,
         leaving out means the same as explicitly enabling"
    
    on Jeff's request.

  Summary:
    Revision    Changes     Path
    2.219       +2  -2      rpm/configure.ac
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: rpm/configure.ac
  ============================================================================
  $ cvs diff -u -r2.218 -r2.219 configure.ac
  --- rpm/configure.ac	24 Jul 2007 11:14:09 -0000	2.218
  +++ rpm/configure.ac	24 Jul 2007 18:48:48 -0000	2.219
  @@ -260,8 +260,8 @@
   esac
   AC_ARG_ENABLE(
       [build-lib64],
  -    AC_HELP_STRING([--enable-build-lib64], [enable use of /usr/lib64 (default is system dependent)]),
  -    [ if test ".$enableval" = .yes; then MARK64=64; elif test ".$enableval" = .no; then MARK64=""; fi ], [:])
  +    AC_HELP_STRING([--disable-build-lib64], [disable automatic use of /usr/lib64 (system dependent)]),
  +    [ if test ".$enableval" = .no; then MARK64=""; fi ])
   AC_SUBST(MARK64)
   
   dnl # FIXME: partly Linux-specific only!?
  @@ .
Received on Tue Jul 24 20:48:48 2007
Driven by Jeff Johnson and the RPM project team.
Hosted by OpenPKG and Ralf S. Engelschall.
Powered by FreeBSD and OpenPKG.