Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in OS X build #2918

Closed
vicuna opened this issue Jul 7, 2004 · 2 comments
Closed

Bug in OS X build #2918

vicuna opened this issue Jul 7, 2004 · 2 comments
Labels

Comments

@vicuna
Copy link

vicuna commented Jul 7, 2004

Original bug ID: 2918
Reporter: administrator
Status: closed
Resolution: fixed
Priority: normal
Severity: minor
Category: ~DO NOT USE (was: OCaml general)

Bug description

The OCaml configure script has a hardwired check for darwin6, which
corresponds to OS X 10.2 Jaguar. This check fails for OS X 10.3
Panther, which is based on Darwin 7. I'm pretty sure the script should
be checking for any version darwinN, with N >= 6. I'm attaching a
patch that makes this change.

If you have any questions, feel free to contact me.
Thanks,
-n8

--

-- Nathaniel Gray -- Caltech Computer Science ------>
-- Mojave Project -- http://mojave.cs.caltech.edu -->


--- configure.orig Wed Jul 7 15:02:37 2004
+++ configure.new Wed Jul 7 15:10:18 2004
@@ -609,7 +609,9 @@
nativecclinkopts="-n32 -Wl,-woff,84";;
,,nextstep,*) nativecccompopts="$gcc_warnings -U__GNUC__ -posix"
nativecclinkopts="-posix";;

  • ,,rhapsody,darwin6)
  • ,,rhapsody,*darwin[1-5])
  •                   nativecccompopts="$gcc_warnings -DSHRINKED_GNUC";;
    
  • ,,rhapsody,darwin)
    nativecccompopts="$gcc_warnings -DDARWIN_VERSION_6 $dl_defs";;
    ,,rhapsody,) nativecccompopts="$gcc_warnings -DSHRINKED_GNUC";;
    ,gcc,cygwin,
    ) nativecccompopts="$gcc_warnings -U_WIN32";;


@vicuna
Copy link
Author

vicuna commented Jul 9, 2004

Comment author: administrator

Hi,

The OCaml configure script has a hardwired check for darwin6, which
corresponds to OS X 10.2 Jaguar. This check fails for OS X 10.3
Panther, which is based on Darwin 7. I'm pretty sure the script should
be checking for any version darwinN, with N >= 6. I'm attaching a
patch that makes this change.

Thanks for your bug report. This is now fixed in the CVS version.

-- Damien

@vicuna
Copy link
Author

vicuna commented Jul 9, 2004

Comment author: administrator

fixed --DD 2004-07-09

@vicuna vicuna closed this as completed Jul 9, 2004
@vicuna vicuna added the bug label Mar 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant