head	1.3;
access;
symbols
	RELEASE_7_4_0:1.1
	RELEASE_8_2_0:1.1
	RELEASE_6_EOL:1.1
	RELEASE_8_1_0:1.1
	RELEASE_7_3_0:1.1
	RELEASE_8_0_0:1.1
	RELEASE_7_2_0:1.1
	RELEASE_7_1_0:1.1
	RELEASE_6_4_0:1.1
	RELEASE_5_EOL:1.1
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1
	RELEASE_6_1_0:1.1
	RELEASE_5_5_0:1.1
	RELEASE_6_0_0:1.1
	RELEASE_5_4_0:1.1
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1
	RELEASE_4_9_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2011.07.26.01.00.53;	author zi;	state dead;
branches;
next	1.2;

1.2
date	2011.07.14.14.12.47;	author arved;	state Exp;
branches;
next	1.1;

1.1
date	2003.08.31.13.13.37;	author edwin;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Update to 0.7.12
Pass maintainership to submitter
Remove DEPRECATED/EXPIRATION_DATE

PR:		ports/158140
Submitted by:	Uffe Jakobsen <uffe@@uffe.org>
Approved by:	tabthorpe (mentor)
@
text
@--- Lib/myconf.orig	2000-08-19 03:08:08.000000000 +0200
+++ Lib/myconf	2011-07-05 11:45:16.000000000 +0200
@@@@ -28,20 +28,20 @@@@
 
 END
 
-gcc myctest.c -o myctest
+$CC myctest.c -o myctest
 rm myctest.c
 
-if [ `myctest |cut -d' ' -f 1` != 4 ]
+if [ `./myctest |cut -d' ' -f 1` != 4 ]
     then echo "Error : sizeof(long)!=4"
 fi
-if [ `myctest |cut -d' ' -f 2` != 2 ]
+if [ `./myctest |cut -d' ' -f 2` != 2 ]
     then echo "Error : sizeof(short)!=2"
 fi
-if [ `myctest |cut -d' ' -f 3` != 4 ]
+if [ `./myctest |cut -d' ' -f 3` != 4 ]
     then echo "Error  :sizeof(int)!=4"
 fi
 
-if [ `myctest |cut -d' ' -f 4` = LITTLE ]
+if [ `./myctest |cut -d' ' -f 4` = LITTLE ]
     then 
     echo "#ifndef LITT_ENDIAN" >defendian.h
     echo "#define LITT_ENDIAN 1" >>defendian.h 
@


1.2
log
@Respect CC

PR:		158664
Submitted by:	Guido Falsi
@
text
@@


1.1
log
@[patch] archivers/unadf and "#define LITT_ENDIAN must exist"

	Script Lib/myconf has problem with detecting Big or Little Endian
	machine and he always set "Big Endian machine". archivers/unadf will
	compile but when you want to unpack some files you will get this
	message:
	"Compilation error : #define LITT_ENDIAN must exist"

PR:		ports/53622
Submitted by:	Jacek Serwatynski <tutus@@trynet.eu.org> <tutus@@trynet.eu.org>
@
text
@d1 8
a8 4
--- Lib/myconf	Sat Aug 19 03:08:08 2000
+++ Lib/myconf.new	Mon Jun 23 01:32:48 2003
@@@@ -31,17 +31,17 @@@@
 gcc myctest.c -o myctest
a28 1

@

