bugOpenEXR - Bugs: bug #13426, configure.ac has broken...

 
 

bug #13426: configure.ac has broken AC_ARG_ENABLE usage

Submitted by:  Mike Frysinger <vapier>
Submitted on:  Thu 16 Jun 2005 10:26:49 PM UTC  
 
Category: NoneSeverity: 3 - Normal
Item Group: NoneStatus: Fixed
Privacy: PublicAssigned to: Drew Hess <dhess>
Open/Closed: Closed

Add a New Comment(Rich Markup)
   

You are not logged in

Please log in, so followups can be emailed to you.

 

Tue 06 Jun 2006 02:37:33 AM UTC, comment #1:

Fixed in CVS.

Drew Hess <dhess>In charge of this item.
Thu 16 Jun 2005 10:26:49 PM UTC, original submission:

the two usages of AC_ARG_ENABLE() use the third parameter incorrectly

the code:
AC_ARG_ENABLE(osx-istream-hack, <help text>, AC_DEFINE(BROKEN_ISTREAM_HACK),)

should read:
AC_ARG_ENABLE(osx-istream-hack, <help text>,
osx_istream_hack="$enableval", osx_istream_hack="no")
if test "x$osx_istream_hack" = "xyes" ; then
AC_DEFINE(BROKEN_ISTREAM_HACK),)
fi

and the code:
build_imfexamples="no"
AC_ARG_ENABLE(imfexamples, <help text>, build_imfexamples="yes",)

should read:
AC_ARG_ENABLE(imfexamples, <help text>,
build_imfexamples="$enableval", build_imfexamples="no")

Mike Frysinger <vapier>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach File(s):
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

Do you think this task is very important?
If so, you can click here to add your encouragement to it.
This task has 0 encouragements so far.

Only logged-in users can vote.

 

Please enter the title of George Orwell's famous dystopian book (it's a date):

 

 

Follow 3 latest changes.

Date Changed By Updated Field Previous Value => Replaced By
Tue 06 Jun 2006 02:37:33 AM UTCdhessStatusNone=>Fixed
  Assigned toNone=>dhess
  Open/ClosedOpen=>Closed

Back to the top


Powered by Savane 3.1-cleanup1