git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [RFC/PATCH 0/2] OpenSolaris 2008.11 portability fixes
@ 2009-05-23 19:24 Junio C Hamano
  2009-05-23 19:24 ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Junio C Hamano
  0 siblings, 1 reply; 15+ messages in thread
From: Junio C Hamano @ 2009-05-23 19:24 UTC (permalink / raw)
  To: git

Two small patches that seem to make things better for me on OpenSolaris
2008.11; I am primarily interested in learning if this regresses for other
vintages of Solaris.

Junio C Hamano (2):
  Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  OpenSolaris 200811 (SunOS 5.11) does not want OLD_ICONV

 Makefile          |    4 +++-
 git-compat-util.h |    2 ++
 2 files changed, 5 insertions(+), 1 deletions(-)

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-23 19:24 [RFC/PATCH 0/2] OpenSolaris 2008.11 portability fixes Junio C Hamano
@ 2009-05-23 19:24 ` Junio C Hamano
  2009-05-23 19:24   ` [RFC/PATCH 2/2] OpenSolaris 200811 (SunOS 5.11) does not want OLD_ICONV Junio C Hamano
                     ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: Junio C Hamano @ 2009-05-23 19:24 UTC (permalink / raw)
  To: git

In git-compat-util.h, we do

    #define _XOPEN_SOURCE 600
    #define _XOPEN_SOURCE_EXTENDED 1

unless we are on BSD or SCO.

On OpenSolaris (200811), /usr/include/sys/feature_tests.h has this nice
table:

    Feature Test Macro				     Specification
    ------------------------------------------------  -------------
    _XOPEN_SOURCE                                         XPG3
    _XOPEN_SOURCE && _XOPEN_VERSION = 4                   XPG4
    _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED = 1           XPG4v2
    _XOPEN_SOURCE = 500                                   XPG5
    _XOPEN_SOURCE = 600  (or POSIX_C_SOURCE=200112L)      XPG6

Later in the same header, compilation with -c99 is made to fail if _XPG6 is
not set, like this:

    #if defined(_STDC_C99) && (defined(__XOPEN_OR_POSIX) && !defined(_XPG6))
    #error "Compiler or options invalid for pre-UNIX 03 X/Open applications \
            and pre-2001 POSIX applications"
    #elif ...

The problem is that they check things in an order that is inconvenient for
us.  When they see _XOPEN_SOURCE_EXTENDED, they declare that we are XPG4v2,
regardless of the value of _XOPEN_SOURCE.

To work around this problem, do not define _XOPEN_SOURCE_EXTENDED on
Sun's.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
 git-compat-util.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/git-compat-util.h b/git-compat-util.h
index c7cf2d5..4236647 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -41,8 +41,10 @@
 
 #if !defined(__APPLE__) && !defined(__FreeBSD__)  && !defined(__USLC__) && !defined(_M_UNIX)
 #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
+#ifndef __sun__
 #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
 #endif
+#endif
 #define _ALL_SOURCE 1
 #define _GNU_SOURCE 1
 #define _BSD_SOURCE 1
-- 
1.6.3.1.145.gb74d77

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [RFC/PATCH 2/2] OpenSolaris 200811 (SunOS 5.11) does not want OLD_ICONV
  2009-05-23 19:24 ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Junio C Hamano
@ 2009-05-23 19:24   ` Junio C Hamano
  2009-05-28 16:46   ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Brandon Casey
  2009-06-11 15:06   ` Tomas Carnecky
  2 siblings, 0 replies; 15+ messages in thread
From: Junio C Hamano @ 2009-05-23 19:24 UTC (permalink / raw)
  To: git

Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
 Makefile |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 26d180c..a23846b 100644
--- a/Makefile
+++ b/Makefile
@@ -698,7 +698,9 @@ ifeq ($(uname_S),SunOS)
 	NO_MEMMEM = YesPlease
 	NO_HSTRERROR = YesPlease
 	NO_MKDTEMP = YesPlease
-	OLD_ICONV = UnfortunatelyYes
+	ifneq ($(uname_R),5.11)
+		OLD_ICONV = UnfortunatelyYes
+	endif
 	ifeq ($(uname_R),5.8)
 		NO_UNSETENV = YesPlease
 		NO_SETENV = YesPlease
-- 
1.6.3.1.145.gb74d77

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-23 19:24 ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Junio C Hamano
  2009-05-23 19:24   ` [RFC/PATCH 2/2] OpenSolaris 200811 (SunOS 5.11) does not want OLD_ICONV Junio C Hamano
@ 2009-05-28 16:46   ` Brandon Casey
  2009-05-28 19:19     ` Jeff King
  2009-05-28 20:37     ` Junio C Hamano
  2009-06-11 15:06   ` Tomas Carnecky
  2 siblings, 2 replies; 15+ messages in thread
From: Brandon Casey @ 2009-05-28 16:46 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Jeff King

Junio C Hamano wrote:
> In git-compat-util.h, we do
> 
>     #define _XOPEN_SOURCE 600
>     #define _XOPEN_SOURCE_EXTENDED 1
> 
> unless we are on BSD or SCO.
> 
> On OpenSolaris (200811), /usr/include/sys/feature_tests.h has this nice
> table:
> 
>     Feature Test Macro				     Specification
>     ------------------------------------------------  -------------
>     _XOPEN_SOURCE                                         XPG3
>     _XOPEN_SOURCE && _XOPEN_VERSION = 4                   XPG4
>     _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED = 1           XPG4v2
>     _XOPEN_SOURCE = 500                                   XPG5
>     _XOPEN_SOURCE = 600  (or POSIX_C_SOURCE=200112L)      XPG6
> 
> Later in the same header, compilation with -c99 is made to fail if _XPG6 is
> not set, like this:
> 
>     #if defined(_STDC_C99) && (defined(__XOPEN_OR_POSIX) && !defined(_XPG6))
>     #error "Compiler or options invalid for pre-UNIX 03 X/Open applications \
>             and pre-2001 POSIX applications"
>     #elif ...
> 
> The problem is that they check things in an order that is inconvenient for
> us.  When they see _XOPEN_SOURCE_EXTENDED, they declare that we are XPG4v2,
> regardless of the value of _XOPEN_SOURCE.
> 
> To work around this problem, do not define _XOPEN_SOURCE_EXTENDED on
> Sun's.
> 
> Signed-off-by: Junio C Hamano <gitster@pobox.com>
> ---
>  git-compat-util.h |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/git-compat-util.h b/git-compat-util.h
> index c7cf2d5..4236647 100644
> --- a/git-compat-util.h
> +++ b/git-compat-util.h
> @@ -41,8 +41,10 @@
>  
>  #if !defined(__APPLE__) && !defined(__FreeBSD__)  && !defined(__USLC__) && !defined(_M_UNIX)
>  #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */
> +#ifndef __sun__

__sun__ is not defined by the SUNWspro compiler.  We can fix that by adding
a -D__sun__ in the SunOS section of the Makefile though.

A more important issue, is that now that this causes _XPG6 to be defined,
sun's header files _require_ a c99 compiler to be used.

Here's the comment that goes along with the partial snippet that you showed
above from /usr/include/sys/feature_tests.h:

  /*
   * It is invalid to compile an XPG3, XPG4, XPG4v2, or XPG5 application
   * using c99.  The same is true for POSIX.1-1990, POSIX.2-1992, POSIX.1b,
   * and POSIX.1c applications. Likewise, it is invalid to compile an XPG6
   * or a POSIX.1-2001 application with anything other than a c99 or later
   * compiler.  Therefore, we force an error in both cases.
   */

And the rest of the macro implements the check for source/compiler
suitability.

So we either require compiling with a c99 compiler (by ensuring that
_XPG6 is set) or exclude compiling with a c99 compiler on sun (by
ensuring that _XPG6 is not set).  Actually, this would only affect Solaris
versions which support XPG6.  Solaris 11 and 10 do.  I don't know about
Solaris 9 and 8.  Solaris 7 doesn't.

Which do we want to do?

>  #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
>  #endif
> +#endif
>  #define _ALL_SOURCE 1
>  #define _GNU_SOURCE 1
>  #define _BSD_SOURCE 1

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-28 16:46   ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Brandon Casey
@ 2009-05-28 19:19     ` Jeff King
  2009-05-28 19:40       ` Brandon Casey
  2009-05-28 20:37     ` Junio C Hamano
  1 sibling, 1 reply; 15+ messages in thread
From: Jeff King @ 2009-05-28 19:19 UTC (permalink / raw)
  To: Brandon Casey; +Cc: Junio C Hamano, git

On Thu, May 28, 2009 at 11:46:50AM -0500, Brandon Casey wrote:

> So we either require compiling with a c99 compiler (by ensuring that
> _XPG6 is set) or exclude compiling with a c99 compiler on sun (by
> ensuring that _XPG6 is not set).  Actually, this would only affect Solaris
> versions which support XPG6.  Solaris 11 and 10 do.  I don't know about
> Solaris 9 and 8.  Solaris 7 doesn't.
> 
> Which do we want to do?

FWIW, I didn't even try using sun's cc. I have been doing all of my
builds using gcc 3.1.1 (from around 2002, which is what happens to be
available on the old-ish Solaris install at my university).

-Peff

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-28 19:19     ` Jeff King
@ 2009-05-28 19:40       ` Brandon Casey
  2009-05-28 19:50         ` Jeff King
  0 siblings, 1 reply; 15+ messages in thread
From: Brandon Casey @ 2009-05-28 19:40 UTC (permalink / raw)
  To: Jeff King; +Cc: Junio C Hamano, git

Jeff King wrote:
> On Thu, May 28, 2009 at 11:46:50AM -0500, Brandon Casey wrote:
> 
>> So we either require compiling with a c99 compiler (by ensuring that
>> _XPG6 is set) or exclude compiling with a c99 compiler on sun (by
>> ensuring that _XPG6 is not set).  Actually, this would only affect Solaris
>> versions which support XPG6.  Solaris 11 and 10 do.  I don't know about
>> Solaris 9 and 8.  Solaris 7 doesn't.
>>
>> Which do we want to do?
> 
> FWIW, I didn't even try using sun's cc. I have been doing all of my
> builds using gcc 3.1.1 (from around 2002, which is what happens to be
> available on the old-ish Solaris install at my university).

It's not the compiler that prevents compilation.  It's the header files.

You mentioned that on Solaris 8 there was only a single declaration for
iconv.  There was not a macro check for _XPG6.  I suspect that Solaris 8
does not support XPG6, so your compilation is just falling back to XPG4.
The same thing happens on Solaris 7.  On Solaris 10, if the macros are
set such that _XPG6 becomes set, then compilation will fail if the
compiler is not a c99 one.

-brandon

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-28 19:40       ` Brandon Casey
@ 2009-05-28 19:50         ` Jeff King
  0 siblings, 0 replies; 15+ messages in thread
From: Jeff King @ 2009-05-28 19:50 UTC (permalink / raw)
  To: Brandon Casey; +Cc: Junio C Hamano, git

On Thu, May 28, 2009 at 02:40:14PM -0500, Brandon Casey wrote:

> It's not the compiler that prevents compilation.  It's the header files.
> 
> You mentioned that on Solaris 8 there was only a single declaration for
> iconv.  There was not a macro check for _XPG6.  I suspect that Solaris 8
> does not support XPG6, so your compilation is just falling back to XPG4.

OK, that makes sense.

> The same thing happens on Solaris 7.  On Solaris 10, if the macros are
> set such that _XPG6 becomes set, then compilation will fail if the
> compiler is not a c99 one.

Right. What I was trying to say is "gcc 3.1.1 is probably c99 enough,
and I am using it already". That is, if you were asking how painful it
would be to require a c99 compiler for Solaris git, I am saying I don't
personally care.

But I don't know what is "normal".

-Peff

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-28 16:46   ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Brandon Casey
  2009-05-28 19:19     ` Jeff King
@ 2009-05-28 20:37     ` Junio C Hamano
  1 sibling, 0 replies; 15+ messages in thread
From: Junio C Hamano @ 2009-05-28 20:37 UTC (permalink / raw)
  To: Brandon Casey; +Cc: git, Jeff King

Brandon Casey <casey@nrlssc.navy.mil> writes:

> So we either require compiling with a c99 compiler (by ensuring that
> _XPG6 is set) or exclude compiling with a c99 compiler on sun (by
> ensuring that _XPG6 is not set).  Actually, this would only affect Solaris
> versions which support XPG6.  Solaris 11 and 10 do.  I don't know about
> Solaris 9 and 8.  Solaris 7 doesn't.
>
> Which do we want to do?

If possible, both ;-), because people would have or want to use different
compilers.

I use "gcc -std=c99" on all platforms I compile git on (for details see
"Make" in the 'todo' branch; I have a checkout of the todo branch at Meta/
and say "Meta/Make --pedantic" from the toplevel), and that is how I
noticed this breakage on OpenSolaris 08.11 (it identifies itself as 5.11,
so presumably it falls into "Solaris 11" category you cited above?)

>> diff --git a/git-compat-util.h b/git-compat-util.h
>> index c7cf2d5..4236647 100644
>> --- a/git-compat-util.h
>> +++ b/git-compat-util.h
>> @@ -41,8 +41,10 @@
>>  
>>  #if !defined(__APPLE__) && !defined(__FreeBSD__)  && !defined(__USLC__) && !defined(_M_UNIX)
>>  #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD needs 600 for S_ISLNK() */

Judging from their header files, I guess Sun's attitude is incompatible
with the above comment for _XOPEN_SOURCE.  We say "... need 500" and set
it to 600 because we merely mean "need to be at least 500" by "need 500",
but Sun wants us to be very precise.  So instead of saying __sun__, we
could do something more explicit with a huge comment...

	#if !defined(__APPLE__) ...
        # define _XOPEN_SOURCE 600
        /*
         * On Solaris, when _XOPEN_EXTENDED is set, its header file
         * forces the programs to be XPG4v2, defeating the _XOPEN_SOURCE
         * setting we just made to say we are XPG6.  Also on Solaris,
         * XPG6 programs must be compiled with a c99 compiler, while
         * non XPG6 programs must be compiled with a pre-c99 compiler.
         */
        # if defined(__sun__) && !(__STDC_VERSION__ - 0 >= 199901L)
        # define _XOPEN_EXTENDED 1 /* AIX 5.3L wants this */
        # endif
	#endif

We might want to flatten this a bit more to special case Solaris, which
might make it easier to maintain, e.g.

	#if defined(__sun__)
        # ... whatever _XOPEN_SOURCE and _XOPEN_EXTENDED magic
        # ... Solaris wants
        #elif !defined(__APPLE__) && ...
        # ... existing code
        #endif

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-05-23 19:24 ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Junio C Hamano
  2009-05-23 19:24   ` [RFC/PATCH 2/2] OpenSolaris 200811 (SunOS 5.11) does not want OLD_ICONV Junio C Hamano
  2009-05-28 16:46   ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Brandon Casey
@ 2009-06-11 15:06   ` Tomas Carnecky
  2009-06-11 15:50     ` Brandon Casey
  2009-06-11 15:58     ` Junio C Hamano
  2 siblings, 2 replies; 15+ messages in thread
From: Tomas Carnecky @ 2009-06-11 15:06 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git


On May 23, 2009, at 9:24 PM, Junio C Hamano wrote:

> In git-compat-util.h, we do
>
>    #define _XOPEN_SOURCE 600
>    #define _XOPEN_SOURCE_EXTENDED 1
>
> unless we are on BSD or SCO.
>
> On OpenSolaris (200811), /usr/include/sys/feature_tests.h has this  
> nice
> table:
>
>    Feature Test Macro				     Specification
>    ------------------------------------------------  -------------
>    _XOPEN_SOURCE                                         XPG3
>    _XOPEN_SOURCE && _XOPEN_VERSION = 4                   XPG4
>    _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED = 1           XPG4v2
>    _XOPEN_SOURCE = 500                                   XPG5
>    _XOPEN_SOURCE = 600  (or POSIX_C_SOURCE=200112L)      XPG6
>
> Later in the same header, compilation with -c99 is made to fail if  
> _XPG6 is
> not set, like this:
>
>    #if defined(_STDC_C99) && (defined(__XOPEN_OR_POSIX) && ! 
> defined(_XPG6))
>    #error "Compiler or options invalid for pre-UNIX 03 X/Open  
> applications \
>            and pre-2001 POSIX applications"
>    #elif ...
>
> The problem is that they check things in an order that is  
> inconvenient for
> us.  When they see _XOPEN_SOURCE_EXTENDED, they declare that we are  
> XPG4v2,
> regardless of the value of _XOPEN_SOURCE.
>
> To work around this problem, do not define _XOPEN_SOURCE_EXTENDED on
> Sun's.
>
> Signed-off-by: Junio C Hamano <gitster@pobox.com>
> ---
> git-compat-util.h |    2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/git-compat-util.h b/git-compat-util.h
> index c7cf2d5..4236647 100644
> --- a/git-compat-util.h
> +++ b/git-compat-util.h
> @@ -41,8 +41,10 @@
>
> #if !defined(__APPLE__) && !defined(__FreeBSD__)  && ! 
> defined(__USLC__) && !defined(_M_UNIX)
> #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD  
> needs 600 for S_ISLNK() */
> +#ifndef __sun__
> #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
> #endif
> +#endif
> #define _ALL_SOURCE 1
> #define _GNU_SOURCE 1
> #define _BSD_SOURCE 1
> -- 
> 1.6.3.1.145.gb74d77
>

Until this commit a simple 'make prefix=...' worked just fine. Now I  
have to explicitly add '-std=c99' to the gcc commandline. Is there a  
reason why the makefile doesn't add this switch automatically?

tom

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-06-11 15:06   ` Tomas Carnecky
@ 2009-06-11 15:50     ` Brandon Casey
  2009-06-11 16:42       ` Tomas Carnecky
  2009-06-11 15:58     ` Junio C Hamano
  1 sibling, 1 reply; 15+ messages in thread
From: Brandon Casey @ 2009-06-11 15:50 UTC (permalink / raw)
  To: Tomas Carnecky; +Cc: Junio C Hamano, git

Tomas Carnecky wrote:
> 
> On May 23, 2009, at 9:24 PM, Junio C Hamano wrote:

>> diff --git a/git-compat-util.h b/git-compat-util.h
>> index c7cf2d5..4236647 100644
>> --- a/git-compat-util.h
>> +++ b/git-compat-util.h
>> @@ -41,8 +41,10 @@
>>
>> #if !defined(__APPLE__) && !defined(__FreeBSD__)  &&
>> !defined(__USLC__) && !defined(_M_UNIX)
>> #define _XOPEN_SOURCE 600 /* glibc2 and AIX 5.3L need 500, OpenBSD
>> needs 600 for S_ISLNK() */
>> +#ifndef __sun__
>> #define _XOPEN_SOURCE_EXTENDED 1 /* AIX 5.3L needs this */
>> #endif
>> +#endif
>> #define _ALL_SOURCE 1
>> #define _GNU_SOURCE 1
>> #define _BSD_SOURCE 1
>> -- 
>> 1.6.3.1.145.gb74d77
>>
> 
> Until this commit a simple 'make prefix=...' worked just fine. Now I
> have to explicitly add '-std=c99' to the gcc commandline. Is there a
> reason why the makefile doesn't add this switch automatically?

There are additionally patches on 'next' and more in the pipeline on 'pu'
which adjust these feature macros when compiling on Solaris.  See the
bc/solaris series 8fccb00 which was merged to 'pu'.

Also, if you happen to be using the Sun Studio suite 12 with c-compiler
version 5.9, I'd be interested to know whether you can compile diff-delta.c,
or whether you get an error (see commit 203ee91f).

-brandon

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-06-11 15:06   ` Tomas Carnecky
  2009-06-11 15:50     ` Brandon Casey
@ 2009-06-11 15:58     ` Junio C Hamano
  1 sibling, 0 replies; 15+ messages in thread
From: Junio C Hamano @ 2009-06-11 15:58 UTC (permalink / raw)
  To: Tomas Carnecky; +Cc: git

Tomas Carnecky <tom@dbservice.com> writes:

> Until this commit a simple 'make prefix=...' worked just fine. Now I
> have to explicitly add '-std=c99' to the gcc commandline. Is there a
> reason why the makefile doesn't add this switch automatically?

An extended "Solaris updates" series has been cooking in 'next' branch, I
think, and does things a bit differently.

4cb18a4 (git-compat-util.h: tweak the way _XOPEN_SOURCE is set on Solaris,
2009-06-05) sets _XOPEN_SOURCE to 500 if you are not compiling with c99.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-06-11 15:50     ` Brandon Casey
@ 2009-06-11 16:42       ` Tomas Carnecky
  2009-06-11 17:13         ` Brandon Casey
  0 siblings, 1 reply; 15+ messages in thread
From: Tomas Carnecky @ 2009-06-11 16:42 UTC (permalink / raw)
  To: Brandon Casey; +Cc: git mailing list


On Jun 11, 2009, at 5:50 PM, Brandon Casey wrote:
>
> There are additionally patches on 'next' and more in the pipeline on  
> 'pu'
> which adjust these feature macros when compiling on Solaris.  See the
> bc/solaris series 8fccb00 which was merged to 'pu'.

Alright, just wanted to make sure that issue is known.

> Also, if you happen to be using the Sun Studio suite 12 with c- 
> compiler
> version 5.9, I'd be interested to know whether you can compile diff- 
> delta.c,
> or whether you get an error (see commit 203ee91f).


I happen to have access to some of my university's solaris boxes with  
the following compiler: Sun C 5.9 SunOS_sparc Patch 124867-02  
2007/11/27, I hope that is good enough.

$ gmake CC=/opt/SUNWspro/bin/c99 CFLAGS="" OPENSSLDIR=/usr/sfw V=1  
diff-delta.o
GIT_VERSION = 1.6.3.2.354.g5787c
     * new build flags or prefix
/opt/SUNWspro/bin/c99 -o diff-delta.o -c   -D__EXTENSIONS__ -D__sun__ - 
I/usr/sfw/include -DSHA1_HEADER='<openssl/sha.h>'  -DNO_STRCASESTR - 
DNO_MKDTEMP -DNO_MKSTEMPS -DNO_MEMMEM diff-delta.c
$ echo $?
0

(btw, I have to clear CFLAGS when compiling with the sun compiler, as  
it doesn't understand -Wall)

tom

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-06-11 16:42       ` Tomas Carnecky
@ 2009-06-11 17:13         ` Brandon Casey
  2009-06-11 17:36           ` Tomas Carnecky
  0 siblings, 1 reply; 15+ messages in thread
From: Brandon Casey @ 2009-06-11 17:13 UTC (permalink / raw)
  To: Tomas Carnecky; +Cc: git mailing list

Tomas Carnecky wrote:
> 
> On Jun 11, 2009, at 5:50 PM, Brandon Casey wrote:
>>
>> There are additionally patches on 'next' and more in the pipeline on 'pu'
>> which adjust these feature macros when compiling on Solaris.  See the
>> bc/solaris series 8fccb00 which was merged to 'pu'.
> 
> Alright, just wanted to make sure that issue is known.
> 
>> Also, if you happen to be using the Sun Studio suite 12 with c-compiler
>> version 5.9, I'd be interested to know whether you can compile
>> diff-delta.c,
>> or whether you get an error (see commit 203ee91f).
> 
> 
> I happen to have access to some of my university's solaris boxes with
> the following compiler: Sun C 5.9 SunOS_sparc Patch 124867-02
> 2007/11/27, I hope that is good enough.
> 
> $ gmake CC=/opt/SUNWspro/bin/c99 CFLAGS="" OPENSSLDIR=/usr/sfw V=1
> diff-delta.o
> GIT_VERSION = 1.6.3.2.354.g5787c
>     * new build flags or prefix
> /opt/SUNWspro/bin/c99 -o diff-delta.o -c   -D__EXTENSIONS__ -D__sun__
> -I/usr/sfw/include -DSHA1_HEADER='<openssl/sha.h>'  -DNO_STRCASESTR
> -DNO_MKDTEMP -DNO_MKSTEMPS -DNO_MEMMEM diff-delta.c
> $ echo $?
> 0

Ok, great.  Looks like Sun fixed the flaw that was present in the 5.8
compiler, and no other changes need to be made to git.  To be absolutely
sure, and if you have a moment, can you try to compile the code snippet at
the end of this email?

If you name the saved the code "test.c", then just compile with

   /opt/SUNWspro/bin/c99 -c test.c

The Sun C 5.8 compiler complains like this for me:

   "test.c", line 12: identifier redeclared: test_func
           current : function(pointer to const struct a_struct {int b, array[-1] of pointer to char c}) returning pointer to void
           previous: function(pointer to const struct a_struct {int b, array[-1] of pointer to char c}) returning pointer to void : "test.c", line 4
   c99: acomp failed for test.c

If the 5.9 compiler successfully compiles it, then this new version of Sun's
compiler correctly handles c99 flex arrays.

> (btw, I have to clear CFLAGS when compiling with the sun compiler, as it
> doesn't understand -Wall)

Yes, that's correct.

-brandon


--->8--- test.c --->8---
struct a_struct;

extern void *test_func(const struct a_struct *f);

struct a_struct {
        int b;
        char* c[];
};

void *test_func(const struct a_struct *f)
{
        return 0;
}

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-06-11 17:13         ` Brandon Casey
@ 2009-06-11 17:36           ` Tomas Carnecky
  2009-06-11 17:42             ` Brandon Casey
  0 siblings, 1 reply; 15+ messages in thread
From: Tomas Carnecky @ 2009-06-11 17:36 UTC (permalink / raw)
  To: Brandon Casey; +Cc: git mailing list


On Jun 11, 2009, at 7:13 PM, Brandon Casey wrote:
> Ok, great.  Looks like Sun fixed the flaw that was present in the 5.8
> compiler, and no other changes need to be made to git.  To be  
> absolutely
> sure, and if you have a moment, can you try to compile the code  
> snippet at
> the end of this email?
>
> If you name the saved the code "test.c", then just compile with
>
>   /opt/SUNWspro/bin/c99 -c test.c
>
> The Sun C 5.8 compiler complains like this for me:
>
>   "test.c", line 12: identifier redeclared: test_func
>           current : function(pointer to const struct a_struct {int  
> b, array[-1] of pointer to char c}) returning pointer to void
>           previous: function(pointer to const struct a_struct {int  
> b, array[-1] of pointer to char c}) returning pointer to void :  
> "test.c", line 4
>   c99: acomp failed for test.c
>
> If the 5.9 compiler successfully compiles it, then this new version  
> of Sun's
> compiler correctly handles c99 flex arrays.

It compiles without errors.

tom

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6
  2009-06-11 17:36           ` Tomas Carnecky
@ 2009-06-11 17:42             ` Brandon Casey
  0 siblings, 0 replies; 15+ messages in thread
From: Brandon Casey @ 2009-06-11 17:42 UTC (permalink / raw)
  To: Tomas Carnecky; +Cc: git mailing list

Tomas Carnecky wrote:
> 
> On Jun 11, 2009, at 7:13 PM, Brandon Casey wrote:
>> Ok, great.  Looks like Sun fixed the flaw that was present in the 5.8
>> compiler, and no other changes need to be made to git.  To be absolutely
>> sure, and if you have a moment, can you try to compile the code
>> snippet at
>> the end of this email?
>>
>> If you name the saved the code "test.c", then just compile with
>>
>>   /opt/SUNWspro/bin/c99 -c test.c
>>
>> The Sun C 5.8 compiler complains like this for me:
>>
>>   "test.c", line 12: identifier redeclared: test_func
>>           current : function(pointer to const struct a_struct {int b,
>> array[-1] of pointer to char c}) returning pointer to void
>>           previous: function(pointer to const struct a_struct {int b,
>> array[-1] of pointer to char c}) returning pointer to void : "test.c",
>> line 4
>>   c99: acomp failed for test.c
>>
>> If the 5.9 compiler successfully compiles it, then this new version of
>> Sun's
>> compiler correctly handles c99 flex arrays.
> 
> It compiles without errors.

Great.  Thanks.

-brandon

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2009-06-11 17:43 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-23 19:24 [RFC/PATCH 0/2] OpenSolaris 2008.11 portability fixes Junio C Hamano
2009-05-23 19:24 ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Junio C Hamano
2009-05-23 19:24   ` [RFC/PATCH 2/2] OpenSolaris 200811 (SunOS 5.11) does not want OLD_ICONV Junio C Hamano
2009-05-28 16:46   ` [RFC/PATCH 1/2] Teach Solaris that _XOPEN_SOURCE=600 really menas XPG6 Brandon Casey
2009-05-28 19:19     ` Jeff King
2009-05-28 19:40       ` Brandon Casey
2009-05-28 19:50         ` Jeff King
2009-05-28 20:37     ` Junio C Hamano
2009-06-11 15:06   ` Tomas Carnecky
2009-06-11 15:50     ` Brandon Casey
2009-06-11 16:42       ` Tomas Carnecky
2009-06-11 17:13         ` Brandon Casey
2009-06-11 17:36           ` Tomas Carnecky
2009-06-11 17:42             ` Brandon Casey
2009-06-11 15:58     ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).