diff -ru Makefile.orig Makefile --- Makefile.orig Wed Feb 18 10:51:27 1998 +++ Makefile Wed Feb 18 10:50:46 1998 @@ -18,7 +18,7 @@ # -DDEBUGGER compiles in the debugger # -DKBUK if you have a UK style 102 key keyboard -# -DBIG_ENDIAN if your computer is big-endian (Sparc, 68000 etc) -# -DLITTLE_ENDIAN if your computer is little-endian (80x86 etc) +# -DCPU_BIG_ENDIAN if your computer is big-endian (Sparc, 68000 etc) +# -DCPU_LITTLE_ENDIAN if your computer is little-endian (80x86 etc) # -DALIGNED_ACCESS if your computer requires words to be on even boundaries # -DBIGCASE If your compiler/computer can handle 256 case switches # @@ -53,7 +53,7 @@ CC = gcc #OPTIONS = -DBOOT720 -DBIG_ENDIAN -DALIGNED_ACCESS -DBIGCASE -DINLINE_FUNCTIONS -OPTIONS = -DBOOT720 -DLITTLE_ENDIAN -DBIGCASE -DINLINE_FUNCTIONS \ +OPTIONS = -DBOOT720 -DCPU_LITTLE_ENDIAN -DBIGCASE -DINLINE_FUNCTIONS \ -DBOOTFILE=\"${LOCALPREFIX}/lib/pcemu/DriveA\" #XROOT = /usr/local/X11R5 XROOT = /usr/X11R6 diff -ru cpu.h.orig cpu.h --- cpu.h.orig Wed Jun 22 16:24:50 1994 +++ cpu.h Wed Feb 18 10:50:46 1998 @@ -113,13 +113,13 @@ format and back again. Obviously there is nothing to do for little-endian machines... */ -#if defined(LITTLE_ENDIAN) +#if defined(CPU_LITTLE_ENDIAN) # define ChangeE(x) (WORD)(x) #else # define ChangeE(x) (WORD)(((x) << 8) | ((BYTE)((x) >> 8))) #endif -#if defined(LITTLE_ENDIAN) && !defined(ALIGNED_ACCESS) +#if defined(CPU_LITTLE_ENDIAN) && !defined(ALIGNED_ACCESS) # define ReadWord(x) (*(x)) # define WriteWord(x,y) (*(x) = (y)) # define CopyWord(x,y) (*x = *y) elliptic-6.5.3'>dependabot/npm_and_yarn/devel/electron4/files/elliptic-6.5.3 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/cad/qcad
Commit message (Expand)AuthorAgeFilesLines
* - update png to 1.5.10dinoex2012-06-011-1/+1
* Add localisazion support to the qcad port.mr2011-10-313-1/+39
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
* Add two patches from Joerg Wunsch:mr2010-11-102-0/+454
* - update to 1.4.1dinoex2010-03-281-1/+1
* - update to jpeg-8dinoex2010-02-051-1/+1
* - bump all port that indirectly depends on libjpeg and have not yet been bump...dinoex2009-07-311-1/+1
* Don't fail if share/qcad can't be removed since it might be used by other portsitetcu2009-05-071-1/+1
* The attached patches achieve the following improvements:mr2009-05-021-4/+3
* Fix the paths to qt assistant and qcad manual that are being encodedmr2009-01-211-1/+6
* Bump portrevision due to upgrade of devel/gettext.edwin2008-06-061-1/+1
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-3/+1
* Change to ftp:// too.mr2008-03-271-1/+1
* Remove always-false/true conditions based on OSVERSION 500000edwin2007-10-041-6/+0
* Fix compilation with gcc.42.mr2007-06-182-0/+18
* - Welcome X.org 7.2 \o/.flz2007-05-201-0/+1
* - Remove QTDIR from CONFIGURE_ENV, it's in there already thanks to frameworkpav2007-02-13